view plugins/mono/api/Makefile.am @ 11761:d8f002812186

[gaim-migrate @ 14052] This should fix make disting with the mono plugin enabled. I believe "SOURCES" is some sort of reserved variable. committer: Tailor Script <tailor@pidgin.im>
author Mark Doliner <mark@kingant.net>
date Sun, 23 Oct 2005 20:43:02 +0000
parents 8ebc2219fae3
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)