comparison src/protocols/zephyr/Makefile.am @ 2086:424a40f12a6c

[gaim-migrate @ 2096] moving protocols from plugins/ to src/protocols. making it so that you can select which protocols are compiled statically. committer: Tailor Script <tailor@pidgin.im>
author Eric Warmenhoven <eric@warmenhoven.org>
date Tue, 31 Jul 2001 01:00:39 +0000
parents
children 5486d558ecee
comparison
equal deleted inserted replaced
2085:7ebb4322f89b 2086:424a40f12a6c
1 pkgdir = $(libdir)/gaim
2
3 CFLAGS += -I\$(top_srcdir)/src -I\$(top_srcdir)/src/protocols -DCONFDIR=\"$(confdir)\" $(KRB4_CFLAGS) $(st) $(DEBUG_CFLAGS)
4
5 LIBS += $(KRB4_LDFLAGS) $(KRB4_LIBS)
6
7 if STATIC_ZEPHYR
8
9 st = -DSTATIC
10 pkg_LTLIBRARIES =
11 noinst_LIBRARIES = libzephyr.a
12
13 libzephyr_a_SOURCES = \
14 ZAsyncLocate.c \
15 ZCkAuth.c \
16 ZCkIfNot.c \
17 ZClosePort.c \
18 ZCmpUID.c \
19 ZCmpUIDP.c \
20 ZFlsLocs.c \
21 ZFlsSubs.c \
22 ZFmtAuth.c \
23 ZFmtList.c \
24 ZFmtNotice.c \
25 ZFmtRaw.c \
26 ZFmtRawLst.c \
27 ZFmtSmRLst.c \
28 ZFmtSmRaw.c \
29 ZFreeNot.c \
30 ZGetLocs.c \
31 ZGetSender.c \
32 ZGetSubs.c \
33 ZGetWGPort.c \
34 ZIfNotice.c \
35 ZInit.c \
36 ZLocations.c \
37 ZMakeAscii.c \
38 ZMkAuth.c \
39 ZNewLocU.c \
40 ZOpenPort.c \
41 ZParseNot.c \
42 ZPeekIfNot.c \
43 ZPeekNot.c \
44 ZPeekPkt.c \
45 ZPending.c \
46 ZReadAscii.c \
47 ZRecvNot.c \
48 ZRecvPkt.c \
49 ZRetSubs.c \
50 ZSendList.c \
51 ZSendNot.c \
52 ZSendPkt.c \
53 ZSendRLst.c \
54 ZSendRaw.c \
55 ZSetDest.c \
56 ZSetFD.c \
57 ZSetSrv.c \
58 ZSubs.c \
59 ZVariables.c \
60 ZWait4Not.c \
61 Zinternal.c \
62 com_err.h \
63 error_message.c \
64 error_table.h \
65 et_name.c \
66 init_et.c \
67 internal.h \
68 mit-copyright.h \
69 mit-sipb-copyright.h \
70 sysdep.h \
71 zephyr.h \
72 zephyr_err.c \
73 zephyr_err.h \
74 \
75 zephyr.c
76
77 else
78
79 st =
80 pkg_LTLIBRARIES = libzephyr.la
81 noinst_LIBRARIES =
82
83 libzephyr_la_SOURCES = \
84 ZAsyncLocate.c \
85 ZCkAuth.c \
86 ZCkIfNot.c \
87 ZClosePort.c \
88 ZCmpUID.c \
89 ZCmpUIDP.c \
90 ZFlsLocs.c \
91 ZFlsSubs.c \
92 ZFmtAuth.c \
93 ZFmtList.c \
94 ZFmtNotice.c \
95 ZFmtRaw.c \
96 ZFmtRawLst.c \
97 ZFmtSmRLst.c \
98 ZFmtSmRaw.c \
99 ZFreeNot.c \
100 ZGetLocs.c \
101 ZGetSender.c \
102 ZGetSubs.c \
103 ZGetWGPort.c \
104 ZIfNotice.c \
105 ZInit.c \
106 ZLocations.c \
107 ZMakeAscii.c \
108 ZMkAuth.c \
109 ZNewLocU.c \
110 ZOpenPort.c \
111 ZParseNot.c \
112 ZPeekIfNot.c \
113 ZPeekNot.c \
114 ZPeekPkt.c \
115 ZPending.c \
116 ZReadAscii.c \
117 ZRecvNot.c \
118 ZRecvPkt.c \
119 ZRetSubs.c \
120 ZSendList.c \
121 ZSendNot.c \
122 ZSendPkt.c \
123 ZSendRLst.c \
124 ZSendRaw.c \
125 ZSetDest.c \
126 ZSetFD.c \
127 ZSetSrv.c \
128 ZSubs.c \
129 ZVariables.c \
130 ZWait4Not.c \
131 Zinternal.c \
132 com_err.h \
133 error_message.c \
134 error_table.h \
135 et_name.c \
136 init_et.c \
137 internal.h \
138 mit-copyright.h \
139 mit-sipb-copyright.h \
140 sysdep.h \
141 zephyr.h \
142 zephyr_err.c \
143 zephyr_err.h \
144 \
145 zephyr.c
146
147 endif