view plugins/mono/api/Makefile.am @ 11860:ec7c3da0e718

[gaim-migrate @ 14151] I think this is the right way to delete a buddy icon from a buddy committer: Tailor Script <tailor@pidgin.im>
author Stu Tomlinson <stu@nosnilmot.com>
date Thu, 27 Oct 2005 20:19:24 +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)