view plugins/mono/api/Makefile.am @ 11881:4b84b080a5f2

[gaim-migrate @ 14172] fix this up again, I guess some of us have more fussy gettext's than others committer: Tailor Script <tailor@pidgin.im>
author Stu Tomlinson <stu@nosnilmot.com>
date Sat, 29 Oct 2005 01:28:19 +0000
parents d8f002812186
children c0e0fcd75926
line wrap: on
line source

MONOSOURCES = \
	GaimPlugin.cs \
	Debug.cs \
	BuddyList.cs \
	Buddy.cs \
	Signal.cs \
	Event.cs

TARGET=GaimAPI.dll

all: $(TARGET)

$(TARGET): $(MONOSOURCES)
	mcs -t:library -out:$(TARGET) $(MONOSOURCES)

.PHONY: install clean

install: $(TARGET)
	$(INSTALL) -m 644 $(TARGET) $(libdir)/gaim
	
clean:
	rm -rf $(TARGET)