annotate plugins/mono/Makefile.am @ 12411:8c339d9f1bb4
[gaim-migrate @ 14718]
Use the glib byte order macros, so we can prune out configure.ac a bit. Also, add a warning in case someone tries to compile this on a machine with an unknown byte ordering. I really don't think that'll happen, but it doesn't hurt to be thorough.
committer: Tailor Script <tailor@pidgin.im>
author |
Richard Laager <rlaager@wiktel.com> |
date |
Thu, 08 Dec 2005 20:59:49 +0000 |
parents |
c9312177821a |
children |
|
rev |
line source |
11660
|
1 SUBDIRS = api loader
|
|
2
|
11882
|
3 mono_sources = GetBuddyBack.cs \
|
|
4 MPlugin.cs
|
|
5
|
|
6 EXTRA_DIST = $(mono_sources)
|
11660
|
7
|
11882
|
8 monodir = $(libdir)/gaim
|
|
9 mono_SCRIPTS = MPlugin.dll GetBuddyBack.dll
|
|
10 mono_build_sources = $(addprefix $(srcdir)/, $(mono_sources))
|
11660
|
11
|
11882
|
12 all: $(mono_SCRIPTS)
|
11660
|
13
|
|
14 SUFFIXES = .cs .dll
|
11882
|
15 .cs.dll: api/GaimAPI.dll $(mono_build_sources)
|
11903
|
16 mcs -t:library -lib:./api -out:$@ -r:GaimAPI.dll $<
|
11882
|
17
|
|
18 clean-local:
|
|
19 rm -f $(mono_SCRIPTS)
|