Mercurial > pidgin
annotate plugins/mono/api/Makefile.am @ 11884:b1099e09eb33
[gaim-migrate @ 14175]
I *think* this will make sure we distribute the right pieces for dbus
support, but I don't currently have a sensible way of testing. Also, I
suspect we may want some of the code generation to happen at dist time
instead of build time. Something to think about.
committer: Tailor Script <tailor@pidgin.im>
| author | Stu Tomlinson <stu@nosnilmot.com> |
|---|---|
| date | Sat, 29 Oct 2005 02:06:36 +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) |
