view plugins/mono/api/Makefile.am @ 11798:01c3eec6ea3c

[gaim-migrate @ 14089] I like this better, feel free to disagree. (I don't much like Manually but it seemed better than None with this, alternatives welcome.) committer: Tailor Script <tailor@pidgin.im>
author Etan Reisner <pidgin@unreliablesource.net>
date Mon, 24 Oct 2005 16:08:52 +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)