Mercurial > pidgin.yaz
annotate plugins/mono/Makefile.am @ 14189:789d80a6b9d9
[gaim-migrate @ 16853]
Have substatuses for custom statuses.
This is probably the last dialog/feature before the end of SoC. I plan to add stuff for roomlists later (next week), and possibly start on replacing pluginpref with request.
committer: Tailor Script <tailor@pidgin.im>
author | Sadrul Habib Chowdhury <imadil@gmail.com> |
---|---|
date | Sat, 19 Aug 2006 00:07:40 +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) |