annotate libgaim/plugins/mono/Makefile.am @ 14915:ad7fa8b56e3e
[gaim-migrate @ 17687]
closing feature request 1487779, bug 1465187, with patch 1540877. This is all related to the psychic plugin, so ignore as befitting.
committer: Tailor Script <tailor@pidgin.im>
author |
Christopher O'Brien <siege@pidgin.im> |
date |
Mon, 06 Nov 2006 23:01:44 +0000 |
parents |
60b1bc8dbf37 |
children |
|
rev |
line source |
14192
|
1 SUBDIRS = api loader
|
|
2
|
|
3 mono_sources = GetBuddyBack.cs \
|
|
4 MPlugin.cs
|
|
5
|
|
6 EXTRA_DIST = $(mono_sources)
|
|
7
|
|
8 monodir = $(libdir)/gaim
|
|
9 mono_SCRIPTS = MPlugin.dll GetBuddyBack.dll
|
|
10 mono_build_sources = $(addprefix $(srcdir)/, $(mono_sources))
|
|
11
|
|
12 all: $(mono_SCRIPTS)
|
|
13
|
|
14 SUFFIXES = .cs .dll
|
|
15 .cs.dll: api/GaimAPI.dll $(mono_build_sources)
|
|
16 mcs -t:library -lib:./api -out:$@ -r:GaimAPI.dll $<
|
|
17
|
|
18 clean-local:
|
|
19 rm -f $(mono_SCRIPTS)
|