view plugins/mono/Makefile.am @ 12031:bef758a67e48

[gaim-migrate @ 14324] These rapid IRC pings are a Really Bad Idea. I'm not sure how they got in, and I don't really want to know. In any case, I'm removing them. If we want to add a keepalive which fires only when there is a truly idle connection, and after some suitable delay, then that's fine ... but this was not that. committer: Tailor Script <tailor@pidgin.im>
author Ethan Blanton <elb@pidgin.im>
date Wed, 09 Nov 2005 19:02:48 +0000
parents c9312177821a
children
line wrap: on
line source

SUBDIRS = api loader

mono_sources = GetBuddyBack.cs \
			   MPlugin.cs

EXTRA_DIST = $(mono_sources)

monodir = $(libdir)/gaim
mono_SCRIPTS = MPlugin.dll GetBuddyBack.dll
mono_build_sources = $(addprefix $(srcdir)/, $(mono_sources))

all: $(mono_SCRIPTS)

SUFFIXES = .cs .dll
.cs.dll: api/GaimAPI.dll $(mono_build_sources)
	mcs -t:library -lib:./api -out:$@ -r:GaimAPI.dll $<

clean-local:
	rm -f $(mono_SCRIPTS)