Make the Flex scanners and YACC parser in libraries reentrant.
[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.common
25 include $(top_srcdir)/Makefile.am.inc
26
27 if HAVE_LIBLUA
28 wslua_lib = wslua/libwslua.la
29 wslua_dir = wslua
30 wslua_dist_dir =
31 else            # HAVE_LIBLUA
32 wslua_lib =
33 wslua_dir =
34 wslua_dist_dir = wslua
35 endif           # HAVE_LIBLUA
36
37 SUBDIRS = compress crypt ftypes dfilter dissectors nghttp2 wmem $(wslua_dir)
38
39 DIST_SUBDIRS = $(SUBDIRS) $(wslua_dist_dir)
40
41 AM_CPPFLAGS = $(INCLUDEDIRS) -I$(builddir)/wslua $(WS_CPPFLAGS) \
42         $(GLIB_CFLAGS) $(LUA_CFLAGS) $(LIBGNUTLS_CFLAGS) \
43         $(LIBGCRYPT_CFLAGS) $(LIBSMI_CFLAGS) $(LIBGEOIP_CFLAGS) \
44         $(KRB5_CFLAGS)
45
46 noinst_LTLIBRARIES = libwireshark_generated.la libwireshark_asmopt.la
47 lib_LTLIBRARIES = libwireshark.la
48 # http://www.gnu.org/software/libtool/manual/html_node/Updating-version-info.html
49 libwireshark_la_LDFLAGS = -version-info 0:0:0 @LDFLAGS_SHAREDLIB@
50
51 #Since code generated by lex may trigger gcc warnings, we are now generating two
52 #libraries. A single library is generated with the lex code without the barrier
53 #"stop on warning". An other library is generated from the remaining source
54 #files with the "stop on warning" barrier.
55 libwireshark_la_SOURCES = \
56         $(LIBWIRESHARK_SRC)     \
57         $(LIBWIRESHARK_INCLUDES)
58
59 libwireshark_la_CPPFLAGS = $(AM_CPPFLAGS) -DWS_BUILD_DLL
60
61 libwireshark_generated_la_SOURCES = \
62         $(LIBWIRESHARK_GENERATED_C_FILES) \
63         $(LIBWIRESHARK_GENERATED_HEADER_FILES)
64
65 libwireshark_generated_la_CFLAGS = $(GENERATED_CFLAGS)
66
67 nodist_libwireshark_generated_la_SOURCES = \
68         $(NODIST_LIBWIRESHARK_GENERATED_C_FILES) \
69         $(NODIST_LIBWIRESHARK_GENERATED_HEADER_FILES)
70
71 # code optionally implemented in assembler
72 # only C source available for platforms other than Win32
73 libwireshark_asmopt_la_SOURCES = \
74         asm_utils.c             \
75         asm_utils.h             \
76         asm_utils_win32_x86.asm
77
78 EXTRA_DIST = \
79         .editorconfig           \
80         diam_dict.l             \
81         dtd_grammar.lemon       \
82         dtd_parse.l             \
83         dtd_parse.h             \
84         dtd_preparse.l          \
85         enterprise-numbers      \
86         Makefile.common         \
87         Makefile.nmake          \
88         radius_dict.l           \
89         tvbtest.c               \
90         reassemble_test.c       \
91         uat_load.l              \
92         exntest.c               \
93         oids_test.c             \
94         doxygen.cfg.in          \
95         CMakeLists.txt          \
96         print.ps
97
98 CLEANFILES = \
99         doxygen-epan.tag                \
100         libwireshark.a                  \
101         libwireshark.la                 \
102         libwireshark_generated.a        \
103         libwireshark_generated.la       \
104         libwireshark_asmopt.a           \
105         libwireshark_asmopt.la          \
106         *~
107
108 DISTCLEANFILES = \
109         $(NODIST_LIBWIRESHARK_GENERATED_C_FILES) \
110         $(NODIST_LIBWIRESHARK_GENERATED_HEADER_FILES) \
111         dtd_grammar.out
112
113 MAINTAINERCLEANFILES = \
114         $(LIBWIRESHARK_GENERATED_C_FILES) \
115         $(LIBWIRESHARK_GENERATED_HEADER_FILES) \
116         Makefile.in
117
118 BUILT_SOURCES = \
119         $(LIBWIRESHARK_GENERATED_HEADER_FILES) \
120         $(NODIST_LIBWIRESHARK_GENERATED_HEADER_FILES)
121
122 #
123 # Add the object files for missing routines, if any.
124 #
125 libwireshark_la_LIBADD = \
126         libwireshark_generated.la               \
127         libwireshark_asmopt.la                  \
128         crypt/libairpdcap.la                    \
129         ftypes/libftypes.la                     \
130         dfilter/libdfilter.la                   \
131         dissectors/libdissectors.la             \
132         dissectors/libdirtydissectors.la        \
133         dissectors/libfiledissectors.la         \
134         nghttp2/libnghttp2.la                   \
135         wmem/libwmem.la                         \
136         $(wslua_lib)                            \
137         ${top_builddir}/wiretap/libwiretap.la   \
138         ${top_builddir}/wsutil/libwsutil.la     \
139         @C_ARES_LIBS@           \
140         @LIBGCRYPT_LIBS@        \
141         @LIBGNUTLS_LIBS@        \
142         @KRB5_LIBS@             \
143         @SSL_LIBS@              \
144         @LIBSMI_LDFLAGS@        \
145         @GEOIP_LIBS@            \
146         @GLIB_LIBS@             \
147         -lm
148
149 libwireshark_la_DEPENDENCIES = \
150         libwireshark_generated.la               \
151         compress/liblzxpress.la                 \
152         libwireshark_asmopt.la                  \
153         crypt/libairpdcap.la                    \
154         ftypes/libftypes.la                     \
155         dfilter/libdfilter.la                   \
156         dissectors/libdissectors.la             \
157         dissectors/libdirtydissectors.la        \
158         nghttp2/libnghttp2.la                   \
159         wmem/libwmem.la                         \
160         $(wslua_lib)                            \
161         ${top_builddir}/wsutil/libwsutil.la     \
162         ${top_builddir}/wiretap/libwiretap.la
163
164 EXTRA_PROGRAMS = reassemble_test tvbtest oids_test
165 reassemble_test_LDADD = \
166         libwireshark.la \
167         $(GLIB_LIBS) \
168         -lz
169
170 tvbtest_LDADD = \
171         libwireshark.la \
172         $(GLIB_LIBS) \
173         -lz
174
175 oids_test_LDADD = \
176         libwireshark.la \
177         $(GLIB_LIBS) \
178         -lz
179
180 exntest: exntest.o except.o
181         $(LINK) $^ $(GLIB_LIBS)
182
183 test-programs: $(EXTRA_PROGRAMS) exntest
184         cd wmem && $(MAKE) $@
185
186 diam_dict_lex.h: diam_dict.c
187
188 dtd_parse_lex.h: dtd_parse.c
189
190 dtd_preparse_lex.h: dtd_preparse.c
191
192 radius_dict_lex.h: radius_dict.c
193
194 uat_load_lex.h: uat_load.c
195
196 dtd_grammar.h: dtd_grammar.c
197 dtd_grammar.c : $(LEMON) $(lemon_srcdir)/lempar.c $(srcdir)/dtd_grammar.lemon
198         $(AM_V_LEMON)$(LEMON) T=$(lemon_srcdir)/lempar.c $(srcdir)/dtd_grammar.lemon
199
200 tvbtest.o exntest.o oids_test.o: exceptions.h
201
202 update-sminmpec:
203         $(PERL) $(srcdir)/../tools/make-sminmpec.pl
204
205 ps.c: print.ps $(top_srcdir)/tools/rdps.py
206         $(AM_V_python)$(PYTHON) $(top_srcdir)/tools/rdps.py $(srcdir)/print.ps ps.c
207
208 if HAVE_PLUGINS
209
210 if ENABLE_STATIC
211 -include ../plugins/Custom.make
212 plugin_src = \
213         ../plugins/asn1/packet-asn1.c \
214         ../plugins/docsis/packet-bintrngreq.c \
215         ../plugins/docsis/packet-bpkmattr.c \
216         ../plugins/docsis/packet-bpkmreq.c \
217         ../plugins/docsis/packet-bpkmrsp.c \
218         ../plugins/docsis/packet-docsis.c \
219         ../plugins/docsis/packet-dsaack.c \
220         ../plugins/docsis/packet-dsareq.c \
221         ../plugins/docsis/packet-dsarsp.c \
222         ../plugins/docsis/packet-dscack.c \
223         ../plugins/docsis/packet-dscreq.c \
224         ../plugins/docsis/packet-dscrsp.c \
225         ../plugins/docsis/packet-dsdreq.c \
226         ../plugins/docsis/packet-dsdrsp.c \
227         ../plugins/docsis/packet-intrngreq.c \
228         ../plugins/docsis/packet-macmgmt.c \
229         ../plugins/docsis/packet-map.c \
230         ../plugins/docsis/packet-regack.c \
231         ../plugins/docsis/packet-regreq.c \
232         ../plugins/docsis/packet-regrsp.c \
233         ../plugins/docsis/packet-rngreq.c \
234         ../plugins/docsis/packet-rngrsp.c \
235         ../plugins/docsis/packet-tlv.c \
236         ../plugins/docsis/packet-type29ucd.c \
237         ../plugins/docsis/packet-uccreq.c \
238         ../plugins/docsis/packet-uccrsp.c \
239         ../plugins/docsis/packet-ucd.c \
240         ../plugins/gryphon/packet-gryphon.c \
241         ../plugins/irda/packet-irda.c \
242         ../plugins/m2m/packet-m2m.c \
243         ../plugins/m2m/wimax_tlv.c \
244         ../plugins/wimax/crc.c \
245         ../plugins/wimax/crc_data.c \
246         ../plugins/wimax/mac_hd_generic_decoder.c \
247         ../plugins/wimax/mac_hd_type1_decoder.c \
248         ../plugins/wimax/mac_hd_type2_decoder.c \
249         ../plugins/wimax/mac_mgmt_msg_decoder.c \
250         ../plugins/wimax/msg_aas_beam.c \
251         ../plugins/wimax/msg_aas_fbck.c \
252         ../plugins/wimax/msg_arq.c \
253         ../plugins/wimax/msg_clk_cmp.c \
254         ../plugins/wimax/msg_dcd.c \
255         ../plugins/wimax/msg_dlmap.c \
256         ../plugins/wimax/msg_dreg.c \
257         ../plugins/wimax/msg_dsa.c \
258         ../plugins/wimax/msg_dsc.c \
259         ../plugins/wimax/msg_dsd.c \
260         ../plugins/wimax/msg_dsx_rvd.c \
261         ../plugins/wimax/msg_fpc.c \
262         ../plugins/wimax/msg_pkm.c \
263         ../plugins/wimax/msg_pmc.c \
264         ../plugins/wimax/msg_prc_lt_ctrl.c \
265         ../plugins/wimax/msg_reg_req.c \
266         ../plugins/wimax/msg_reg_rsp.c \
267         ../plugins/wimax/msg_rep.c \
268         ../plugins/wimax/msg_res_cmd.c \
269         ../plugins/wimax/msg_rng_req.c \
270         ../plugins/wimax/msg_rng_rsp.c \
271         ../plugins/wimax/msg_sbc.c \
272         ../plugins/wimax/msg_ucd.c \
273         ../plugins/wimax/msg_ulmap.c \
274         ../plugins/wimax/packet-wmx.c \
275         ../plugins/wimax/wimax_cdma_code_decoder.c \
276         ../plugins/wimax/wimax_compact_dlmap_ie_decoder.c \
277         ../plugins/wimax/wimax_compact_ulmap_ie_decoder.c \
278         ../plugins/wimax/wimax_fch_decoder.c \
279         ../plugins/wimax/wimax_ffb_decoder.c \
280         ../plugins/wimax/wimax_hack_decoder.c \
281         ../plugins/wimax/wimax_harq_map_decoder.c \
282         ../plugins/wimax/wimax_pdu_decoder.c \
283         ../plugins/wimax/wimax_phy_attributes_decoder.c \
284         ../plugins/wimax/wimax_tlv.c \
285         ../plugins/wimax/wimax_utils.c
286
287
288 else            # ENABLE_STATIC
289
290 plugin_src =
291
292 endif           # ENABLE_STATIC
293
294 else            # HAVE_PLUGINS
295 plugin_src =
296
297 endif           # HAVE_PLUGINS
298
299 doxygen:
300 if HAVE_DOXYGEN
301         $(AM_V_GEN)$(DOXYGEN) doxygen.cfg
302 endif           # HAVE_DOXYGEN
303
304 wsar_html: doxygen.cfg ../doxygen_global.cfg
305 if HAVE_DOXYGEN
306         (umask 022 ; $(DOXYGEN) doxygen.cfg)
307 endif
308
309 # ABI compliance checker can be obtained from
310 # http://ispras.linux-foundation.org/index.php/ABI_compliance_checker
311 # Checked using version 1.21.12
312 dumpabi-libwireshark: all abi-descriptor.xml
313         rm -rf abi-check-headers abi_dumps .libs/*.abi.tar.gz
314         mkdir abi-check-headers
315         cp ../config.h ../register.h abi-check-headers/
316         mkdir abi-check-headers/epan
317         cp *.h abi-check-headers/epan
318         mkdir abi-check-headers/crypt
319         cp crypt/*.h abi-check-headers/crypt
320         mkdir abi-check-headers/compress
321         cp compress/*.h abi-check-headers/compress
322         mkdir abi-check-headers/dfilter
323         cp dfilter/*.h ../tools/lemon/cppmagic.h abi-check-headers/dfilter
324         mkdir abi-check-headers/dissectors
325         cp dissectors/*.h abi-check-headers/dissectors
326         rm \
327                 abi-check-headers/dissectors/x11-extension-implementation.h \
328                 abi-check-headers/dissectors/x11-glx-render-enum.h \
329                 abi-check-headers/dissectors/x11-register-info.h \
330                 abi-check-headers/dissectors/packet-idmp.h
331         mkdir abi-check-headers/ftypes
332         cp ftypes/*.h abi-check-headers/ftypes
333         mkdir abi-check-headers/wmem
334         cp wmem/*.h abi-check-headers/wmem
335         abi-compliance-checker -log-path abi_logs/log.txt -l libwireshark -v1 `readlink .libs/libwireshark.so | sed 's/.*\.so\.//'` \
336                 -relpath $(abs_srcdir) -dump-abi abi-descriptor.xml || \
337                 cat abi_logs/log.txt logs/libwireshark/[0-9]*/log.txt
338         cp -f abi_dumps/libwireshark/libwireshark_* .libs/
339         cd .libs && ln -sf libwireshark_*.abi.tar.gz libwireshark.abi.tar.gz
340
341 maintainer-clean-local: clean-dumpabi-libwireshark
342
343 .PHONY: clean-dumpabi-libwireshark
344
345 clean-dumpabi-libwireshark:
346         rm -rf abi-check-headers abi_dumps .libs/*.abi.tar.gz abi_logs abi-descriptor.xml
347
348 checkapi:
349         $(AM_V_GEN)$(PERL) $(top_srcdir)/tools/checkAPIs.pl -g termoutput -build \
350         -sourcedir=$(srcdir) \
351         $(LIBWIRESHARK_SRC)