comparison libgaim/protocols/jabber/Makefile.am @ 14192:60b1bc8dbf37

[gaim-migrate @ 16863] Renamed 'core' to 'libgaim' committer: Tailor Script <tailor@pidgin.im>
author Evan Schoenberg <evan.s@dreskin.net>
date Sat, 19 Aug 2006 01:50:10 +0000
parents
children a2b56d168a88
comparison
equal deleted inserted replaced
14191:009db0b357b5 14192:60b1bc8dbf37
1 EXTRA_DIST = \
2 Makefile.mingw \
3 win32/posix.uname.c \
4 win32/utsname.h
5
6 pkgdir = $(libdir)/gaim
7
8 JABBERSOURCES = auth.c \
9 auth.h \
10 buddy.c \
11 buddy.h \
12 chat.c \
13 chat.h \
14 disco.c \
15 disco.h \
16 iq.c \
17 iq.h \
18 jabber.c \
19 jabber.h \
20 jutil.c \
21 jutil.h \
22 message.c \
23 message.h \
24 oob.c \
25 oob.h \
26 parser.c \
27 parser.h \
28 presence.c \
29 presence.h \
30 roster.c \
31 roster.h \
32 si.c \
33 si.h \
34 xdata.c \
35 xdata.h
36
37 AM_CFLAGS = $(st)
38
39 libjabber_la_LDFLAGS = -module -avoid-version $(GLIB_LIBS) $(SASL_LIBS)
40
41 if STATIC_JABBER
42
43 st = -DGAIM_STATIC_PRPL
44 noinst_LIBRARIES = libjabber.a
45 pkg_LTLIBRARIES =
46
47 libjabber_a_SOURCES = $(JABBERSOURCES)
48 libjabber_a_CFLAGS = $(AM_CFLAGS)
49
50 else
51
52 st =
53 pkg_LTLIBRARIES = libjabber.la
54 noinst_LIBRARIES =
55
56 libjabber_la_SOURCES = $(JABBERSOURCES)
57
58 endif
59
60 AM_CPPFLAGS = \
61 -I$(top_srcdir)/libgaim \
62 $(DEBUG_CFLAGS) \
63 $(GLIB_CFLAGS) \
64 $(LIBXML_CFLAGS)