Mercurial > pidgin
annotate plugins/mono/api/Makefile.am @ 11960:082a2a9aa998
[gaim-migrate @ 14251]
commit what i was working on, as it shouldn't effect anything.
I'll try to get this closer to finished tonight.
Btw, what am I supposed to do with the return value of
gaim_signal_connect()? None of the disconnect functions seem to take it.
committer: Tailor Script <tailor@pidgin.im>
| author | Tim Ringenbach <marv@pidgin.im> |
|---|---|
| date | Thu, 03 Nov 2005 15:10:01 +0000 |
| parents | c0e0fcd75926 |
| children | 67fbd2ff4c4e |
| rev | line source |
|---|---|
| 11882 | 1 monodir=$(libdir)/gaim |
| 2 mono_sources = \ | |
| 11660 | 3 GaimPlugin.cs \ |
| 4 Debug.cs \ | |
| 5 BuddyList.cs \ | |
| 6 Buddy.cs \ | |
| 7 Signal.cs \ | |
| 8 Event.cs | |
| 9 | |
| 11882 | 10 EXTRA_DIST = $(mono_sources) |
| 11660 | 11 |
| 11882 | 12 mono_SCRIPTS = GaimAPI.dll |
| 11660 | 13 |
| 11882 | 14 mono_build_sources = $(addprefix $(srcdir)/, $(mono_sources)) |
| 11660 | 15 |
| 11882 | 16 all: $(mono_SCRIPTS) |
| 11660 | 17 |
| 11882 | 18 $(mono_SCRIPTS): $(mono_build_sources) |
| 19 mcs -t:library -out:$(mono_SCRIPTS) $(mono_build_sources) | |
| 20 | |
| 21 clean-local: | |
| 22 rm -rf $(mono_SCRIPTS) |
