Mercurial > pidgin
annotate src/protocols/icq/Makefile.am @ 2894:44140dae2865
[gaim-migrate @ 2907]
why didn't someone tell me about this sooner?
committer: Tailor Script <tailor@pidgin.im>
author | Eric Warmenhoven <eric@warmenhoven.org> |
---|---|
date | Sun, 16 Dec 2001 21:35:00 +0000 |
parents | 5486d558ecee |
children | e9a89676d120 |
rev | line source |
---|---|
2086 | 1 EXTRA_DIST = AUTHORS \ |
2 COPYING \ | |
3 ChangeLog \ | |
4 INSTALL \ | |
5 README \ | |
6 VERSION | |
7 | |
8 pkgdir = $(libdir)/gaim | |
9 | |
10 CFLAGS += -I\$(top_srcdir)/src $(st) $(DEBUG_CFLAGS) | |
2894
44140dae2865
[gaim-migrate @ 2907]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2341
diff
changeset
|
11 libicq_la_LDFLAGS = -module -avoid-version |
2086 | 12 |
13 if STATIC_ICQ | |
14 | |
15 st = -DSTATIC | |
16 pkg_LTLIBRARIES = | |
17 noinst_LIBRARIES = libicq.a | |
18 | |
19 libicq_a_SOURCES = chatsession.c \ | |
20 chatsession.h \ | |
21 contacts.c \ | |
22 contacts.h \ | |
23 cyrillic.c \ | |
24 eventhandle.c \ | |
25 eventhandle.h \ | |
26 filesession.c \ | |
27 filesession.h \ | |
28 icq.h \ | |
29 icqbyteorder.c \ | |
30 icqbyteorder.h \ | |
31 icqevent.c \ | |
32 icqevent.h \ | |
33 icqlib.c \ | |
34 icqlib.h \ | |
35 icqpacket.c \ | |
36 icqpacket.h \ | |
37 icqtypes.h \ | |
38 list.c \ | |
39 list.h \ | |
40 proxy.c \ | |
41 queue.c \ | |
42 queue.h \ | |
43 socketmanager.c \ | |
44 socketmanager.h \ | |
45 stdpackets.c \ | |
46 stdpackets.h \ | |
47 tcp.c \ | |
48 tcp.h \ | |
49 tcpchathandle.c \ | |
50 tcpfilehandle.c \ | |
51 tcphandle.c \ | |
52 tcplink.c \ | |
53 tcplink.h \ | |
54 timeout.c \ | |
55 timeout.h \ | |
56 udp.c \ | |
57 udp.h \ | |
58 udphandle.c \ | |
59 util.c \ | |
60 util.h \ | |
61 gaim_icq.c | |
62 | |
63 else | |
64 | |
65 st = | |
2087
cf68ddc50ba2
[gaim-migrate @ 2097]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2086
diff
changeset
|
66 pkg_LTLIBRARIES = libicq.la |
2086 | 67 noinst_LIBRARIES = |
68 | |
2087
cf68ddc50ba2
[gaim-migrate @ 2097]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2086
diff
changeset
|
69 libicq_la_SOURCES = chatsession.c \ |
2086 | 70 chatsession.h \ |
71 contacts.c \ | |
72 contacts.h \ | |
73 cyrillic.c \ | |
74 eventhandle.c \ | |
75 eventhandle.h \ | |
76 filesession.c \ | |
77 filesession.h \ | |
78 icq.h \ | |
79 icqbyteorder.c \ | |
80 icqbyteorder.h \ | |
81 icqevent.c \ | |
82 icqevent.h \ | |
83 icqlib.c \ | |
84 icqlib.h \ | |
85 icqpacket.c \ | |
86 icqpacket.h \ | |
87 icqtypes.h \ | |
88 list.c \ | |
89 list.h \ | |
90 proxy.c \ | |
91 queue.c \ | |
92 queue.h \ | |
93 socketmanager.c \ | |
94 socketmanager.h \ | |
95 stdpackets.c \ | |
96 stdpackets.h \ | |
97 tcp.c \ | |
98 tcp.h \ | |
99 tcpchathandle.c \ | |
100 tcpfilehandle.c \ | |
101 tcphandle.c \ | |
102 tcplink.c \ | |
103 tcplink.h \ | |
104 timeout.c \ | |
105 timeout.h \ | |
106 udp.c \ | |
107 udp.h \ | |
108 udphandle.c \ | |
109 util.c \ | |
110 util.h \ | |
111 gaim_icq.c | |
112 | |
113 endif |