view plugins/mono/api/Makefile.am @ 11684:c1906dc6257c

[gaim-migrate @ 13970] "This patch fixes the tab-color change prob (hopefully this is the last one in the series). Bleeter also thinks I have nailed it this time." -- Sadrul Habib Chowdhury This also seems to fix a case of it I was having this morning. committer: Tailor Script <tailor@pidgin.im>
author Luke Schierer <lschiere@pidgin.im>
date Mon, 17 Oct 2005 16:42:10 +0000
parents 8ebc2219fae3
children d8f002812186
line wrap: on
line source

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

TARGET=GaimAPI.dll

all: $(TARGET)

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

.PHONY: install clean

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