annotate plugins/mono/Makefile.am @ 11920:52f27ffe68a5
[gaim-migrate @ 14211]
sf patch #1339035, from Sadrul Habib Chowdhury
"Remove the \n in Yahoo! status messages when showing them in the buddy
list inline."
Also some changes from me. I changed gaim_str_strip_cr(char *text) to
gaim_str_strip_char(char *text, char thechar). I don't know why, really,
but it seems like it could be more useful this way. Eh
committer: Tailor Script <tailor@pidgin.im>
author |
Mark Doliner <mark@kingant.net> |
date |
Mon, 31 Oct 2005 04:27:06 +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)
|