comparison src/protocols/jabber/Makefile.am @ 7014:67c4e9d39242

[gaim-migrate @ 7577] Here it is, the bulk of the new Jabber prpl. Left to do: - Implement registration - Implement password changing - Keep track of conversation threads (since I apparently have to) - Fix the bugs that always magically appear in code after I commit committer: Tailor Script <tailor@pidgin.im>
author Nathan Walp <nwalp@pidgin.im>
date Mon, 29 Sep 2003 15:23:19 +0000
parents 8f94cce8faa5
children af889fd531d0
comparison
equal deleted inserted replaced
7013:859cafb6433f 7014:67c4e9d39242
1 EXTRA_DIST = \ 1 EXTRA_DIST = win32/posix.uname.c \
2 xmltok_impl.c \ 2 win32/utsname.h
3 xmltok_ns.c \
4 Makefile.mingw \
5 win32/posix.uname.c \
6 win32/utsname.h
7 3
8 pkgdir = $(libdir)/gaim 4 pkgdir = $(libdir)/gaim
9 5
10 JABBERSOURCES = \ 6 JABBERSOURCES = auth.c \
11 asciitab.h \ 7 auth.h \
12 expat.c \ 8 buddy.c \
13 genhash.c \ 9 buddy.h \
14 hashtable.c \ 10 chat.c \
15 hashtable.h \ 11 chat.h \
16 karma.c \ 12 iq.c \
17 iasciitab.h \ 13 iq.h \
18 latin1tab.h \ 14 jabber.c \
19 lib.h \ 15 jabber.h \
20 libxode.h \ 16 jutil.c \
21 nametab.h \ 17 jutil.h \
22 pool.c \ 18 message.c \
23 sha.c \ 19 message.h \
24 snprintf.c \ 20 parser.c \
25 socket.c \ 21 parser.h \
26 str.c \ 22 presence.c \
27 utf8tab.h \ 23 presence.h \
28 xhash.c \ 24 roster.c \
29 xmldef.h \ 25 roster.h \
30 xmlnode.c \ 26 xmlnode.c \
31 xmlparse.c \ 27 xmlnode.h
32 xmlparse.h \
33 xmlrole.c \
34 xmlrole.h \
35 xmltok.c \
36 xmltok.h \
37 xmltok_impl.h \
38 xstream.c \
39 \
40 jabber.h \
41 jconn.c \
42 jid.c \
43 jpacket.c \
44 jutil.c \
45 log.c \
46 log.h \
47 pproxy.c \
48 rate.c \
49 \
50 jabber.c
51 28
52 AM_CFLAGS = $(st) 29 AM_CFLAGS = $(st)
53 30
54 libjabber_la_LDFLAGS = -module -avoid-version 31 libjabber_la_LDFLAGS = -module -avoid-version
55 32
56 if STATIC_JABBER 33 if STATIC_JABBER
57 34
58 st = -DSTATIC 35 st = -DSTATIC
59 noinst_LIBRARIES = libjabber.a 36 noinst_LIBRARIES = libjabber.a
37 pkg_LTLIBRARIES =
60 38
61 libjabber_a_SOURCES = $(JABBERSOURCES) 39 libjabber_a_SOURCES = $(JABBERSOURCES)
62 libjabber_a_CFLAGS = $(AM_CFLAGS) 40 libjabber_a_CFLAGS = $(AM_CFLAGS)
63 41
64 else 42 else
65 43
66 st = 44 st =
67 pkg_LTLIBRARIES = libjabber.la 45 pkg_LTLIBRARIES = libjabber.la
46 noinst_LIBRARIES =
68 47
69 libjabber_la_SOURCES = $(JABBERSOURCES) 48 libjabber_la_SOURCES = $(JABBERSOURCES)
70 49
71 endif 50 endif
72 51