Mercurial > pidgin
annotate src/protocols/jabber/Makefile.am @ 6890:4eee806af511
[gaim-migrate @ 7436]
Checking for Dll Hell on gaim startup..
committer: Tailor Script <tailor@pidgin.im>
| author | Herman Bloggs <hermanator12002@yahoo.com> |
|---|---|
| date | Thu, 18 Sep 2003 22:12:36 +0000 |
| parents | 8f94cce8faa5 |
| children | 67c4e9d39242 |
| rev | line source |
|---|---|
|
6198
fcc28f5dd0c8
[gaim-migrate @ 6684]
Herman Bloggs <hermanator12002@yahoo.com>
parents:
4202
diff
changeset
|
1 EXTRA_DIST = \ |
|
fcc28f5dd0c8
[gaim-migrate @ 6684]
Herman Bloggs <hermanator12002@yahoo.com>
parents:
4202
diff
changeset
|
2 xmltok_impl.c \ |
|
fcc28f5dd0c8
[gaim-migrate @ 6684]
Herman Bloggs <hermanator12002@yahoo.com>
parents:
4202
diff
changeset
|
3 xmltok_ns.c \ |
|
fcc28f5dd0c8
[gaim-migrate @ 6684]
Herman Bloggs <hermanator12002@yahoo.com>
parents:
4202
diff
changeset
|
4 Makefile.mingw \ |
|
fcc28f5dd0c8
[gaim-migrate @ 6684]
Herman Bloggs <hermanator12002@yahoo.com>
parents:
4202
diff
changeset
|
5 win32/posix.uname.c \ |
|
fcc28f5dd0c8
[gaim-migrate @ 6684]
Herman Bloggs <hermanator12002@yahoo.com>
parents:
4202
diff
changeset
|
6 win32/utsname.h |
| 2086 | 7 |
| 8 pkgdir = $(libdir)/gaim | |
| 9 | |
|
4202
59751fe608c5
[gaim-migrate @ 4438]
Christian Hammond <chipx86@chipx86.com>
parents:
3411
diff
changeset
|
10 JABBERSOURCES = \ |
| 2086 | 11 asciitab.h \ |
| 12 expat.c \ | |
| 13 genhash.c \ | |
| 14 hashtable.c \ | |
| 15 hashtable.h \ | |
| 3127 | 16 karma.c \ |
| 2086 | 17 iasciitab.h \ |
| 18 latin1tab.h \ | |
| 3127 | 19 lib.h \ |
| 2086 | 20 libxode.h \ |
| 21 nametab.h \ | |
| 22 pool.c \ | |
| 23 sha.c \ | |
| 24 snprintf.c \ | |
| 25 socket.c \ | |
| 26 str.c \ | |
| 27 utf8tab.h \ | |
| 3127 | 28 xhash.c \ |
| 2086 | 29 xmldef.h \ |
| 30 xmlnode.c \ | |
| 31 xmlparse.c \ | |
| 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 | |
|
4202
59751fe608c5
[gaim-migrate @ 4438]
Christian Hammond <chipx86@chipx86.com>
parents:
3411
diff
changeset
|
52 AM_CFLAGS = $(st) |
|
59751fe608c5
[gaim-migrate @ 4438]
Christian Hammond <chipx86@chipx86.com>
parents:
3411
diff
changeset
|
53 |
|
59751fe608c5
[gaim-migrate @ 4438]
Christian Hammond <chipx86@chipx86.com>
parents:
3411
diff
changeset
|
54 libjabber_la_LDFLAGS = -module -avoid-version |
|
59751fe608c5
[gaim-migrate @ 4438]
Christian Hammond <chipx86@chipx86.com>
parents:
3411
diff
changeset
|
55 |
|
59751fe608c5
[gaim-migrate @ 4438]
Christian Hammond <chipx86@chipx86.com>
parents:
3411
diff
changeset
|
56 if STATIC_JABBER |
|
59751fe608c5
[gaim-migrate @ 4438]
Christian Hammond <chipx86@chipx86.com>
parents:
3411
diff
changeset
|
57 |
|
59751fe608c5
[gaim-migrate @ 4438]
Christian Hammond <chipx86@chipx86.com>
parents:
3411
diff
changeset
|
58 st = -DSTATIC |
|
59751fe608c5
[gaim-migrate @ 4438]
Christian Hammond <chipx86@chipx86.com>
parents:
3411
diff
changeset
|
59 noinst_LIBRARIES = libjabber.a |
|
59751fe608c5
[gaim-migrate @ 4438]
Christian Hammond <chipx86@chipx86.com>
parents:
3411
diff
changeset
|
60 |
|
59751fe608c5
[gaim-migrate @ 4438]
Christian Hammond <chipx86@chipx86.com>
parents:
3411
diff
changeset
|
61 libjabber_a_SOURCES = $(JABBERSOURCES) |
|
3411
5df423e0bca8
[gaim-migrate @ 3430]
Christian Hammond <chipx86@chipx86.com>
parents:
3127
diff
changeset
|
62 libjabber_a_CFLAGS = $(AM_CFLAGS) |
|
5df423e0bca8
[gaim-migrate @ 3430]
Christian Hammond <chipx86@chipx86.com>
parents:
3127
diff
changeset
|
63 |
| 2086 | 64 else |
| 65 | |
| 66 st = | |
| 67 pkg_LTLIBRARIES = libjabber.la | |
| 68 | |
|
4202
59751fe608c5
[gaim-migrate @ 4438]
Christian Hammond <chipx86@chipx86.com>
parents:
3411
diff
changeset
|
69 libjabber_la_SOURCES = $(JABBERSOURCES) |
| 2086 | 70 |
| 71 endif | |
|
4202
59751fe608c5
[gaim-migrate @ 4438]
Christian Hammond <chipx86@chipx86.com>
parents:
3411
diff
changeset
|
72 |
|
59751fe608c5
[gaim-migrate @ 4438]
Christian Hammond <chipx86@chipx86.com>
parents:
3411
diff
changeset
|
73 AM_CPPFLAGS = \ |
|
59751fe608c5
[gaim-migrate @ 4438]
Christian Hammond <chipx86@chipx86.com>
parents:
3411
diff
changeset
|
74 -I$(top_srcdir)/src \ |
|
6360
2e23ccbccdec
[gaim-migrate @ 6864]
Christian Hammond <chipx86@chipx86.com>
parents:
6198
diff
changeset
|
75 $(DEBUG_CFLAGS) \ |
|
6371
8f94cce8faa5
[gaim-migrate @ 6876]
Christian Hammond <chipx86@chipx86.com>
parents:
6360
diff
changeset
|
76 $(GLIB_CFLAGS) |
