Mercurial > pidgin
annotate src/protocols/novell/Makefile.am @ 11759:73f58cd25951
[gaim-migrate @ 14050]
Everytime I think I can make a simple commit without compiling first, I'm
proved wrong.
committer: Tailor Script <tailor@pidgin.im>
author | Sean Egan <seanegan@gmail.com> |
---|---|
date | Sun, 23 Oct 2005 20:28:13 +0000 |
parents | 2cc05a9e944d |
children |
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 \ | |
9268 | 21 nmrtf.h \ |
22 nmrtf.c \ | |
8675 | 23 nmuser.h \ |
24 nmuser.c \ | |
25 nmuserrecord.h \ | |
26 nmuserrecord.c \ | |
27 novell.c | |
28 | |
29 AM_CFLAGS = $(st) | |
30 | |
10889 | 31 libnovell_la_LDFLAGS = -module -avoid-version $(GLIB_LIBS) |
8675 | 32 |
33 if STATIC_NOVELL | |
34 | |
8683
76935eb1bd40
[gaim-migrate @ 9436]
Christian Hammond <chipx86@chipx86.com>
parents:
8675
diff
changeset
|
35 st = -DGAIM_STATIC_PRPL |
8675 | 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) |