Create the compress module for compression functions.
[metze/wireshark/wip.git] / epan / Makefile.am
1 # Makefile.am
2 # Automake file for the libwireshark library
3 # (EPAN is a historical name; it stands for Ethereal Protocol ANalyzer
4 # Library)
5 #
6 # Wireshark - Network traffic analyzer
7 # By Gerald Combs <gerald@wireshark.org>
8 # Copyright 1998 Gerald Combs
9 #
10 # This program is free software; you can redistribute it and/or
11 # modify it under the terms of the GNU General Public License
12 # as published by the Free Software Foundation; either version 2
13 # of the License, or (at your option) any later version.
14 #
15 # This program is distributed in the hope that it will be useful,
16 # but WITHOUT ANY WARRANTY; without even the implied warranty of
17 # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
18 # GNU General Public License for more details.
19 #
20 # You should have received a copy of the GNU General Public License
21 # along with this program; if not, write to the Free Software
22 # Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
23
24 include ../Makefile.am.inc
25
26 if HAVE_LIBLUA
27 wslua_lib = wslua/libwslua.la
28 wslua_dir = wslua
29 wslua_dist_dir =
30 else            # HAVE_LIBLUA
31 wslua_lib =
32 wslua_dir =
33 wslua_dist_dir = wslua
34 endif           # HAVE_LIBLUA
35
36 SUBDIRS = compress crypt ftypes dfilter dissectors nghttp2 wmem $(wslua_dir)
37
38 DIST_SUBDIRS = $(SUBDIRS) $(wslua_dist_dir)
39
40 ACLOCAL_AMFLAGS = `../aclocal-flags`
41
42 noinst_LTLIBRARIES = libwireshark_generated.la libwireshark_asmopt.la
43 lib_LTLIBRARIES = libwireshark.la
44 # http://www.gnu.org/software/libtool/manual/html_node/Updating-version-info.html
45 libwireshark_la_LDFLAGS = -version-info 0:0:0 @LDFLAGS_SHAREDLIB@
46
47 include Makefile.common
48
49 AM_CPPFLAGS = -I$(srcdir)/.. -I$(srcdir)/$(LEMON) -I$(builddir)/wslua \
50         @LUA_INCLUDES@ $(LIBGNUTLS_CFLAGS) $(LIBGCRYPT_CFLAGS) \
51         $(LIBSMI_CFLAGS) $(LIBGEOIP_CFLAGS) $(PY_CFLAGS)
52
53 AM_NON_GENERATED_CFLAGS =-DWS_BUILD_DLL
54
55 if HAVE_WARNINGS_AS_ERRORS
56 AM_NON_GENERATED_CFLAGS += -Werror
57 endif
58
59 #Since code generated by lex may trigger gcc warnings, we are now generating two
60 #libraries. A single library is generated with the lex code without the barrier
61 #"stop on warning". An other library is generated from the remaining source
62 #files with the "stop on warning" barrier.
63 libwireshark_la_SOURCES = \
64         $(LIBWIRESHARK_SRC)     \
65         $(LIBWIRESHARK_INCLUDES)
66 libwireshark_la_CFLAGS = $(AM_NON_GENERATED_CFLAGS) $(py_dissectors_dir)
67
68 libwireshark_generated_la_SOURCES = \
69         $(LIBWIRESHARK_GENERATED_C_FILES) \
70         $(LIBWIRESHARK_GENERATED_HEADER_FILES)
71
72 nodist_libwireshark_generated_la_SOURCES = \
73         $(NODIST_LIBWIRESHARK_GENERATED_C_FILES) \
74         $(NODIST_LIBWIRESHARK_GENERATED_HEADER_FILES)
75
76 # code optionally implemented in assembler
77 # only C source available for platforms other than Win32
78 libwireshark_asmopt_la_SOURCES = \
79         asm_utils.c             \
80         asm_utils.h             \
81         asm_utils_win32_x86.asm
82
83 EXTRA_DIST = \
84         diam_dict.l             \
85         dtd_grammar.lemon       \
86         dtd_parse.l             \
87         dtd_parse.h             \
88         dtd_preparse.l          \
89         enterprise-numbers      \
90         Makefile.common         \
91         Makefile.nmake          \
92         radius_dict.l           \
93         tvbtest.c               \
94         reassemble_test.c       \
95         uat_load.l              \
96         exntest.c               \
97         oids_test.c             \
98         doxygen.cfg.in          \
99         CMakeLists.txt
100
101 CLEANFILES = \
102         doxygen-epan.tag                \
103         libwireshark.a                  \
104         libwireshark.la                 \
105         libwireshark_generated.a        \
106         libwireshark_generated.la       \
107         libwireshark_asmopt.a           \
108         libwireshark_asmopt.la          \
109         *~
110
111 DISTCLEANFILES = \
112         $(NODIST_LIBWIRESHARK_GENERATED_C_FILES) \
113         $(NODIST_LIBWIRESHARK_GENERATED_HEADER_FILES) \
114         dtd_grammar.out
115
116 MAINTAINERCLEANFILES = \
117         $(LIBWIRESHARK_GENERATED_C_FILES) \
118         $(LIBWIRESHARK_GENERATED_HEADER_FILES) \
119         Makefile.in
120
121 #
122 # Add the object files for missing routines, if any.
123 #
124 libwireshark_la_LIBADD = \
125         libwireshark_generated.la \
126         libwireshark_asmopt.la crypt/libairpdcap.la \
127         ftypes/libftypes.la dfilter/libdfilter.la dissectors/libdissectors.la \
128         dissectors/libdirtydissectors.la dissectors/libfiledissectors.la \
129         nghttp2/libnghttp2.la wmem/libwmem.la $(wslua_lib) @SOCKET_LIBS@ @NSL_LIBS@ \
130         @C_ARES_LIBS@ @ADNS_LIBS@ @LIBGCRYPT_LIBS@ @LIBGNUTLS_LIBS@ \
131         @KRB5_LIBS@ @SSL_LIBS@ @LIBSMI_LDFLAGS@ @GEOIP_LIBS@ \
132         ${top_builddir}/wiretap/libwiretap.la @GLIB_LIBS@ \
133         ${top_builddir}/wsutil/libwsutil.la -lm
134
135 libwireshark_la_DEPENDENCIES = \
136         libwireshark_generated.la compress/liblzxpress.la\
137         libwireshark_asmopt.la crypt/libairpdcap.la \
138         ftypes/libftypes.la dfilter/libdfilter.la dissectors/libdissectors.la \
139         dissectors/libdirtydissectors.la nghttp2/libnghttp2.la wmem/libwmem.la $(wslua_lib) \
140         ${top_builddir}/wsutil/libwsutil.la \
141         ${top_builddir}/wiretap/libwiretap.la
142
143 EXTRA_PROGRAMS = reassemble_test tvbtest oids_test
144 reassemble_test_LDADD = \
145         libwireshark.la \
146         $(GLIB_LIBS) \
147         -lz
148
149 tvbtest_LDADD = \
150         libwireshark.la \
151         $(GLIB_LIBS) \
152         -lz
153
154 oids_test_LDADD = \
155         libwireshark.la \
156         $(GLIB_LIBS) \
157         -lz
158
159 exntest: exntest.o except.o
160         $(LINK) $^ $(GLIB_LIBS)
161
162 RUNLEX=$(top_srcdir)/tools/runlex.sh
163
164 diam_dict_lex.h: diam_dict.c
165
166 dtd_parse_lex.h: dtd_parse.c
167
168 dtd_parse.lo: dtd_grammar.h
169
170 dtd_preparse_lex.h: dtd_preparse.c
171
172 radius_dict_lex.h: radius_dict.c
173
174 uat_load_lex.h: uat_load.c
175
176 LEMON=../tools/lemon
177
178 dtd_grammar.h: dtd_grammar.c
179 dtd_grammar.c : $(LEMON)/lemon$(EXEEXT) $(srcdir)/$(LEMON)/lempar.c $(srcdir)/dtd_grammar.lemon
180         $(AM_V_LEMON)$(LEMON)/lemon$(EXEEXT) t=$(srcdir)/$(LEMON)/lempar.c $(srcdir)/dtd_grammar.lemon
181
182 tvbtest.o exntest.o oids_test.o: exceptions.h
183
184 update-sminmpec:
185         $(PERL) $(srcdir)/../tools/make-sminmpec.pl
186
187 ps.c: print.ps $(top_srcdir)/tools/rdps.py
188         $(PYTHON) $(top_srcdir)/tools/rdps.py $(srcdir)/print.ps ps.c
189
190 if HAVE_PLUGINS
191
192 if ENABLE_STATIC
193 -include ../plugins/Custom.make
194 plugin_src = \
195         ../plugins/asn1/packet-asn1.c \
196         ../plugins/docsis/packet-bintrngreq.c \
197         ../plugins/docsis/packet-bpkmattr.c \
198         ../plugins/docsis/packet-bpkmreq.c \
199         ../plugins/docsis/packet-bpkmrsp.c \
200         ../plugins/docsis/packet-docsis.c \
201         ../plugins/docsis/packet-dsaack.c \
202         ../plugins/docsis/packet-dsareq.c \
203         ../plugins/docsis/packet-dsarsp.c \
204         ../plugins/docsis/packet-dscack.c \
205         ../plugins/docsis/packet-dscreq.c \
206         ../plugins/docsis/packet-dscrsp.c \
207         ../plugins/docsis/packet-dsdreq.c \
208         ../plugins/docsis/packet-dsdrsp.c \
209         ../plugins/docsis/packet-intrngreq.c \
210         ../plugins/docsis/packet-macmgmt.c \
211         ../plugins/docsis/packet-map.c \
212         ../plugins/docsis/packet-regack.c \
213         ../plugins/docsis/packet-regreq.c \
214         ../plugins/docsis/packet-regrsp.c \
215         ../plugins/docsis/packet-rngreq.c \
216         ../plugins/docsis/packet-rngrsp.c \
217         ../plugins/docsis/packet-tlv.c \
218         ../plugins/docsis/packet-type29ucd.c \
219         ../plugins/docsis/packet-uccreq.c \
220         ../plugins/docsis/packet-uccrsp.c \
221         ../plugins/docsis/packet-ucd.c \
222         ../plugins/gryphon/packet-gryphon.c \
223         ../plugins/irda/packet-irda.c \
224         ../plugins/m2m/packet-m2m.c \
225         ../plugins/m2m/wimax_tlv.c \
226         ../plugins/wimax/crc.c \
227         ../plugins/wimax/crc_data.c \
228         ../plugins/wimax/mac_hd_generic_decoder.c \
229         ../plugins/wimax/mac_hd_type1_decoder.c \
230         ../plugins/wimax/mac_hd_type2_decoder.c \
231         ../plugins/wimax/mac_mgmt_msg_decoder.c \
232         ../plugins/wimax/msg_aas_beam.c \
233         ../plugins/wimax/msg_aas_fbck.c \
234         ../plugins/wimax/msg_arq.c \
235         ../plugins/wimax/msg_clk_cmp.c \
236         ../plugins/wimax/msg_dcd.c \
237         ../plugins/wimax/msg_dlmap.c \
238         ../plugins/wimax/msg_dreg.c \
239         ../plugins/wimax/msg_dsa.c \
240         ../plugins/wimax/msg_dsc.c \
241         ../plugins/wimax/msg_dsd.c \
242         ../plugins/wimax/msg_dsx_rvd.c \
243         ../plugins/wimax/msg_fpc.c \
244         ../plugins/wimax/msg_pkm.c \
245         ../plugins/wimax/msg_pmc.c \
246         ../plugins/wimax/msg_prc_lt_ctrl.c \
247         ../plugins/wimax/msg_reg_req.c \
248         ../plugins/wimax/msg_reg_rsp.c \
249         ../plugins/wimax/msg_rep.c \
250         ../plugins/wimax/msg_res_cmd.c \
251         ../plugins/wimax/msg_rng_req.c \
252         ../plugins/wimax/msg_rng_rsp.c \
253         ../plugins/wimax/msg_sbc.c \
254         ../plugins/wimax/msg_ucd.c \
255         ../plugins/wimax/msg_ulmap.c \
256         ../plugins/wimax/packet-wmx.c \
257         ../plugins/wimax/wimax_cdma_code_decoder.c \
258         ../plugins/wimax/wimax_compact_dlmap_ie_decoder.c \
259         ../plugins/wimax/wimax_compact_ulmap_ie_decoder.c \
260         ../plugins/wimax/wimax_fch_decoder.c \
261         ../plugins/wimax/wimax_ffb_decoder.c \
262         ../plugins/wimax/wimax_hack_decoder.c \
263         ../plugins/wimax/wimax_harq_map_decoder.c \
264         ../plugins/wimax/wimax_pdu_decoder.c \
265         ../plugins/wimax/wimax_phy_attributes_decoder.c \
266         ../plugins/wimax/wimax_tlv.c \
267         ../plugins/wimax/wimax_utils.c
268
269
270 else            # ENABLE_STATIC
271
272 plugin_src =
273
274 endif           # ENABLE_STATIC
275
276 else            # HAVE_PLUGINS
277 plugin_src =
278
279 endif           # HAVE_PLUGINS
280
281 doxygen:
282 if HAVE_DOXYGEN
283         $(AM_V_GEN)$(DOXYGEN) doxygen.cfg
284 endif           # HAVE_DOXYGEN
285
286 wsar_html: doxygen.cfg ../doxygen_global.cfg
287 if HAVE_DOXYGEN
288         (umask 022 ; $(DOXYGEN) doxygen.cfg)
289 endif
290
291 # ABI compliance checker can be obtained from
292 # http://ispras.linux-foundation.org/index.php/ABI_compliance_checker
293 # Checked using version 1.21.12
294 dumpabi-libwireshark: all abi-descriptor.xml
295         rm -rf abi-check-headers abi_dumps .libs/*.abi.tar.gz
296         mkdir abi-check-headers
297         cp ../color.h ../config.h ../register.h abi-check-headers/
298         mkdir abi-check-headers/epan
299         cp *.h abi-check-headers/epan
300         mkdir abi-check-headers/crypt
301         cp crypt/*.h abi-check-headers/crypt
302         mkdir abi-check-headers/compress
303         cp compress/*.h abi-check-headers/compress
304         mkdir abi-check-headers/dfilter
305         cp dfilter/*.h ../tools/lemon/cppmagic.h abi-check-headers/dfilter
306         mkdir abi-check-headers/dissectors
307         cp dissectors/*.h abi-check-headers/dissectors
308         rm \
309                 abi-check-headers/dissectors/x11-extension-implementation.h \
310                 abi-check-headers/dissectors/x11-glx-render-enum.h \
311                 abi-check-headers/dissectors/x11-register-info.h \
312                 abi-check-headers/dissectors/packet-idmp.h
313         mkdir abi-check-headers/ftypes
314         cp ftypes/*.h abi-check-headers/ftypes
315         mkdir abi-check-headers/wmem
316         cp wmem/*.h abi-check-headers/wmem
317         abi-compliance-checker -l libwireshark -v1 `readlink .libs/libwireshark.so | sed 's/.*\.so\.//'` \
318                 -relpath $(abs_srcdir) -dump-abi abi-descriptor.xml || \
319                 cat logs/libwireshark/[0-9]*/log.txt
320         cp -f abi_dumps/libwireshark/libwireshark_* .libs/
321         cd .libs && ln -sf libwireshark_*.abi.tar.gz libwireshark.abi.tar.gz
322
323 checkapi:
324         $(AM_V_GEN)$(PERL) $(top_srcdir)/tools/checkAPIs.pl -g termoutput -build \
325         -sourcedir=$(srcdir) \
326         $(LIBWIRESHARK_SRC)