Mercurial > pidgin
annotate src/protocols/jabber/Makefile.am @ 3180:63bd467e3e33
[gaim-migrate @ 3196]
womble.
committer: Tailor Script <tailor@pidgin.im>
author | Rob Flynn <gaim@robflynn.com> |
---|---|
date | Fri, 26 Apr 2002 04:28:34 +0000 |
parents | 4e7cefc55971 |
children | 5df423e0bca8 |
rev | line source |
---|---|
2086 | 1 EXTRA_DIST = xmltok_impl.c xmltok_ns.c |
2 | |
3 pkgdir = $(libdir)/gaim | |
4 | |
5 CFLAGS += -I\$(top_srcdir)/src $(st) $(DEBUG_CFLAGS) | |
2894
44140dae2865
[gaim-migrate @ 2907]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2341
diff
changeset
|
6 libjabber_la_LDFLAGS = -module -avoid-version |
2086 | 7 |
8 if STATIC_JABBER | |
9 | |
10 st = -DSTATIC | |
11 pkg_LTLIBRARIES = | |
12 noinst_LIBRARIES = libjabber.a | |
13 | |
14 libjabber_a_SOURCES = \ | |
15 asciitab.h \ | |
16 expat.c \ | |
17 genhash.c \ | |
18 hashtable.c \ | |
19 hashtable.h \ | |
3127 | 20 karma.c \ |
2086 | 21 iasciitab.h \ |
22 latin1tab.h \ | |
3127 | 23 lib.h \ |
2086 | 24 libxode.h \ |
25 nametab.h \ | |
26 pool.c \ | |
27 sha.c \ | |
28 snprintf.c \ | |
29 socket.c \ | |
30 str.c \ | |
31 utf8tab.h \ | |
3127 | 32 xhash.c \ |
2086 | 33 xmldef.h \ |
34 xmlnode.c \ | |
35 xmlparse.c \ | |
36 xmlparse.h \ | |
37 xmlrole.c \ | |
38 xmlrole.h \ | |
39 xmltok.c \ | |
40 xmltok.h \ | |
41 xmltok_impl.h \ | |
42 xstream.c \ | |
43 \ | |
44 jabber.h \ | |
45 jconn.c \ | |
46 jid.c \ | |
47 jpacket.c \ | |
48 jutil.c \ | |
49 log.c \ | |
50 log.h \ | |
51 pproxy.c \ | |
52 rate.c \ | |
53 \ | |
54 jabber.c | |
55 | |
56 else | |
57 | |
58 st = | |
59 pkg_LTLIBRARIES = libjabber.la | |
60 noinst_LIBRARIES = | |
61 | |
62 libjabber_la_SOURCES = \ | |
63 asciitab.h \ | |
64 expat.c \ | |
65 genhash.c \ | |
66 hashtable.c \ | |
67 hashtable.h \ | |
68 iasciitab.h \ | |
3127 | 69 karma.c \ |
2086 | 70 latin1tab.h \ |
3127 | 71 lib.h \ |
2086 | 72 libxode.h \ |
73 nametab.h \ | |
74 pool.c \ | |
75 sha.c \ | |
76 snprintf.c \ | |
77 socket.c \ | |
78 str.c \ | |
79 utf8tab.h \ | |
3127 | 80 xhash.c \ |
2086 | 81 xmldef.h \ |
82 xmlnode.c \ | |
83 xmlparse.c \ | |
84 xmlparse.h \ | |
85 xmlrole.c \ | |
86 xmlrole.h \ | |
87 xmltok.c \ | |
88 xmltok.h \ | |
89 xmltok_impl.h \ | |
90 xstream.c \ | |
91 \ | |
92 jabber.h \ | |
93 jconn.c \ | |
94 jid.c \ | |
95 jpacket.c \ | |
96 jutil.c \ | |
97 log.c \ | |
98 log.h \ | |
99 pproxy.c \ | |
100 rate.c \ | |
101 \ | |
102 jabber.c | |
103 | |
104 endif |