annotate plugins/mono/Makefile.am @ 11980:67fbd2ff4c4e
[gaim-migrate @ 14273]
Mono cleanup patch from Eoin Coffey
First, I changed mono_loader_ to ml_, since I was
getting sick of typing mono_loader_ :-D
Moved the mono runtime init and deinit code out of
mono.c into ml_init and ml_uninit in mono-helper.c
Added api/Status.cs and loader/status-glue.c so the
.net api now knows very little (as in the 'id') of
statuses.
committer: Tailor Script <tailor@pidgin.im>
| author |
Gary Kramlich <grim@reaperworld.com> |
| date |
Sat, 05 Nov 2005 02:09:30 +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)
|