Mercurial > pidgin
annotate src/protocols/novell/Makefile.am @ 9125:668ffb8fec00
[gaim-migrate @ 9902]
(12:53:05) nosnilmot: LSchiere: not majorly important, but the pref changes
listed in the ChangeLog are out of sync
committer: Tailor Script <tailor@pidgin.im>
| author | Luke Schierer <lschiere@pidgin.im> |
|---|---|
| date | Sun, 30 May 2004 16:54:40 +0000 |
| parents | 76935eb1bd40 |
| children | 54fb1f466953 |
| rev | line source |
|---|---|
| 8675 | 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 nmuser.h \ | |
| 22 nmuser.c \ | |
| 23 nmuserrecord.h \ | |
| 24 nmuserrecord.c \ | |
| 25 novell.c | |
| 26 | |
| 27 AM_CFLAGS = $(st) | |
| 28 | |
| 29 libnovell_la_LDFLAGS = -module -avoid-version | |
| 30 | |
| 31 if STATIC_NOVELL | |
| 32 | |
|
8683
76935eb1bd40
[gaim-migrate @ 9436]
Christian Hammond <chipx86@chipx86.com>
parents:
8675
diff
changeset
|
33 st = -DGAIM_STATIC_PRPL |
| 8675 | 34 noinst_LIBRARIES = libnovell.a |
| 35 pkg_LTLIBRARIES = | |
| 36 | |
| 37 libnovell_a_SOURCES = $(NOVELLSOURCES) | |
| 38 libnovell_a_CFLAGS = $(AM_CFLAGS) | |
| 39 | |
| 40 else | |
| 41 | |
| 42 st = | |
| 43 pkg_LTLIBRARIES = libnovell.la | |
| 44 noinst_LIBRARIES = | |
| 45 | |
| 46 libnovell_la_SOURCES = $(NOVELLSOURCES) | |
| 47 | |
| 48 endif | |
| 49 | |
| 50 AM_CPPFLAGS = \ | |
| 51 -I$(top_srcdir)/src \ | |
| 52 $(DEBUG_CFLAGS) \ | |
| 53 $(GLIB_CFLAGS) |
