view plugins/mono/api/Makefile.am @ 11852:bd5cc27e8071

[gaim-migrate @ 14143] Bosnian translation. committer: Tailor Script <tailor@pidgin.im>
author Sean Egan <seanegan@gmail.com>
date Thu, 27 Oct 2005 18:23:43 +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)