view libpurple/plugins/mono/Makefile.am @ 15553:d5242ff0708b

merge of 'ded290b2f629a25e757ee9bb1601dc2dabc38f4c' and 'ede7b2f9eb2b8e7794d8a12851106564d230158d'
author Sean Egan <seanegan@gmail.com>
date Sun, 04 Feb 2007 21:14:34 +0000
parents e9c12873fae0
children 93bfbda79bf6
line wrap: on
line source

SUBDIRS = api loader

mono_sources = GetBuddyBack.cs \
			   MPlugin.cs

EXTRA_DIST = $(mono_sources)

monodir = $(libdir)/libpurple
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)