| 1 EXTRA_DIST = \ |
|
| 2 Makefile.mingw |
|
| 3 |
|
| 4 pkgdir = $(libdir)/gaim |
|
| 5 |
|
| 6 NOVELLSOURCES = \ |
|
| 7 nmfield.h \ |
|
| 8 nmfield.c \ |
|
| 9 nmconn.h \ |
|
| 10 nmconn.c \ |
|
| 11 nmconference.h \ |
|
| 12 nmconference.c \ |
|
| 13 nmcontact.h \ |
|
| 14 nmcontact.c \ |
|
| 15 nmevent.h \ |
|
| 16 nmevent.c \ |
|
| 17 nmmessage.h \ |
|
| 18 nmmessage.c \ |
|
| 19 nmrequest.h \ |
|
| 20 nmrequest.c \ |
|
| 21 nmrtf.h \ |
|
| 22 nmrtf.c \ |
|
| 23 nmuser.h \ |
|
| 24 nmuser.c \ |
|
| 25 nmuserrecord.h \ |
|
| 26 nmuserrecord.c \ |
|
| 27 novell.c |
|
| 28 |
|
| 29 AM_CFLAGS = $(st) |
|
| 30 |
|
| 31 libnovell_la_LDFLAGS = -module -avoid-version $(GLIB_LIBS) |
|
| 32 |
|
| 33 if STATIC_NOVELL |
|
| 34 |
|
| 35 st = -DGAIM_STATIC_PRPL |
|
| 36 noinst_LIBRARIES = libnovell.a |
|
| 37 pkg_LTLIBRARIES = |
|
| 38 |
|
| 39 libnovell_a_SOURCES = $(NOVELLSOURCES) |
|
| 40 libnovell_a_CFLAGS = $(AM_CFLAGS) |
|
| 41 |
|
| 42 else |
|
| 43 |
|
| 44 st = |
|
| 45 pkg_LTLIBRARIES = libnovell.la |
|
| 46 noinst_LIBRARIES = |
|
| 47 |
|
| 48 libnovell_la_SOURCES = $(NOVELLSOURCES) |
|
| 49 |
|
| 50 endif |
|
| 51 |
|
| 52 AM_CPPFLAGS = \ |
|
| 53 -I$(top_srcdir)/src \ |
|
| 54 $(DEBUG_CFLAGS) \ |
|
| 55 $(GLIB_CFLAGS) |
|