annotate plugins/mono/Makefile.am @ 13515:f5d4300aeed8
[gaim-migrate @ 15891]
Fix sf bug #1443092, Events logging not working properly?
"signed on" and "signed off" for people in your buddy list
are now correctly logged to the system log.
Richard, someone had already left a note in this function
to make a change after the string freeze (I think it was
you). We should still make a change after the string freeze,
but the change is different now than it was before this commit.
committer: Tailor Script <tailor@pidgin.im>
| author |
Mark Doliner <mark@kingant.net> |
| date |
Wed, 15 Mar 2006 04:41:44 +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)
|