comparison src/protocols/novell/Makefile.am @ 8675:9ee2542d1104

[gaim-migrate @ 9428] A GroupWise plugin from Novell. committer: Tailor Script <tailor@pidgin.im>
author Sean Egan <seanegan@gmail.com>
date Sat, 17 Apr 2004 13:55:28 +0000
parents
children 76935eb1bd40
comparison
equal deleted inserted replaced
8674:8c7da2e36136 8675:9ee2542d1104
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
33 st = -DSTATIC
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)