Mercurial > pidgin.yaz
annotate src/protocols/simple/Makefile.am @ 11980:67fbd2ff4c4e
[gaim-migrate @ 14273]
Mono cleanup patch from Eoin Coffey
First, I changed mono_loader_ to ml_, since I was
getting sick of typing mono_loader_ :-D
Moved the mono runtime init and deinit code out of
mono.c into ml_init and ml_uninit in mono-helper.c
Added api/Status.cs and loader/status-glue.c so the
.net api now knows very little (as in the 'id') of
statuses.
committer: Tailor Script <tailor@pidgin.im>
| author | Gary Kramlich <grim@reaperworld.com> |
|---|---|
| date | Sat, 05 Nov 2005 02:09:30 +0000 |
| parents | b4cf724b64f8 |
| children | cfc808463763 |
| rev | line source |
|---|---|
| 11181 | 1 pkgdir = $(libdir)/gaim |
| 2 | |
| 3 SIMPLESOURCES = \ | |
| 4 simple.c \ | |
| 5 simple.h \ | |
| 6 sipmsg.c \ | |
| 7 sipmsg.h \ | |
| 8 digcalc.c \ | |
| 11383 | 9 digcalc.h |
| 11181 | 10 |
| 11376 | 11 AM_CFLAGS = $(st) |
| 11181 | 12 |
| 13 libsimple_la_LDFLAGS = -module -avoid-version $(GLIB_LIBS) | |
| 14 | |
| 15 if STATIC_MSN | |
| 16 | |
| 17 st = -DGAIM_STATIC_PRPL | |
| 18 noinst_LIBRARIES = libsimple.a | |
| 19 libsimple_a_SOURCES = $(SIMPLESOURCES) | |
| 20 libsimple_a_CFLAGS = $(AM_CFLAGS) | |
| 21 | |
| 22 else | |
| 23 | |
| 24 st = | |
| 25 pkg_LTLIBRARIES = libsimple.la | |
| 26 libsimple_la_SOURCES = $(SIMPLESOURCES) | |
| 27 | |
| 28 endif | |
| 29 | |
| 30 AM_CPPFLAGS = \ | |
| 31 -I$(top_srcdir)/src \ | |
| 32 $(GLIB_CFLAGS) \ | |
| 33 $(DEBUG_CFLAGS) |
