Mercurial > pidgin
annotate src/protocols/novell/Makefile.am @ 8735:92cbf9713795
[gaim-migrate @ 9490]
Patch by Jonathan Champ to corect the vairous speling mistakes we hav e in
the coments and documentaion. Thansk Jonathan!
committer: Tailor Script <tailor@pidgin.im>
author | Christian Hammond <chipx86@chipx86.com> |
---|---|
date | Wed, 21 Apr 2004 01:34:26 +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) |