view plugins/mono/api/Makefile.am @ 11678:b37c439dfcc0

[gaim-migrate @ 13964] Modify the Bonjour PRPL to use gc->inpa, gaim_input_add, and to stop watching the mDNS socket when Bonjour is disconnected. This fixes the crash-at-signoff committer: Tailor Script <tailor@pidgin.im>
author Mark Doliner <mark@kingant.net>
date Mon, 17 Oct 2005 06:11:02 +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)