comparison plugins/mono/Makefile.am @ 11882:c0e0fcd75926

[gaim-migrate @ 14173] "make distcheck" fixes for the mono plugin loader (aka. Makefile rewrites) committer: Tailor Script <tailor@pidgin.im>
author Stu Tomlinson <stu@nosnilmot.com>
date Sat, 29 Oct 2005 02:01:55 +0000
parents 00f93f25d418
children c9312177821a
comparison
equal deleted inserted replaced
11881:4b84b080a5f2 11882:c0e0fcd75926
1 SUBDIRS = api loader 1 SUBDIRS = api loader
2 2
3 TARGETS = MPlugin.dll GetBuddyBack.dll 3 mono_sources = GetBuddyBack.cs \
4 MPlugin.cs
4 5
5 all: $(TARGETS) 6 EXTRA_DIST = $(mono_sources)
6
7 install-exec-am: $(TARGETS)
8 $(INSTALL) -m 644 $(TARGETS) $(libdir)/gaim
9 7
10 clean-generic: 8 monodir = $(libdir)/gaim
11 rm -rf $(TARGETS) 9 mono_SCRIPTS = MPlugin.dll GetBuddyBack.dll
10 mono_build_sources = $(addprefix $(srcdir)/, $(mono_sources))
11
12 all: $(mono_SCRIPTS)
12 13
13 SUFFIXES = .cs .dll 14 SUFFIXES = .cs .dll
14 .cs.dll: api/GaimAPI.dll 15 .cs.dll: api/GaimAPI.dll $(mono_build_sources)
15 mcs -t:library -lib:./api -out:$*.dll -r:GaimAPI.dll $*.cs 16 mcs -t:library -lib:./api -out:$@ -r:GaimAPI.dll $(addprefix $(srcdir)/, $<)
17
18 clean-local:
19 rm -f $(mono_SCRIPTS)