Register a few more file extensions as belonging to Wireshark.
[metze/wireshark/wip.git] / wiretap / Makefile.am
1 # Makefile.am
2 # Automake file for Wiretap
3 #
4 # Wireshark - Network traffic analyzer
5 # By Gerald Combs <gerald@wireshark.org>
6 # Copyright 1998 Gerald Combs
7 #
8 # This program is free software; you can redistribute it and/or
9 # modify it under the terms of the GNU General Public License
10 # as published by the Free Software Foundation; either version 2
11 # of the License, or (at your option) any later version.
12 #
13 # This program is distributed in the hope that it will be useful,
14 # but WITHOUT ANY WARRANTY; without even the implied warranty of
15 # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
16 # GNU General Public License for more details.
17 #
18 # You should have received a copy of the GNU General Public License
19 # along with this program; if not, write to the Free Software
20 # Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
21
22 include Makefile.common
23 include $(top_srcdir)/Makefile.am.inc
24
25 AM_CPPFLAGS = $(INCLUDEDIRS) $(WS_CPPFLAGS) -DWS_BUILD_DLL $(GLIB_CFLAGS)
26
27 noinst_LTLIBRARIES = libwiretap_generated.la
28 lib_LTLIBRARIES = libwiretap.la
29 # http://www.gnu.org/software/libtool/manual/html_node/Updating-version-info.html
30 libwiretap_la_LDFLAGS = -version-info 0:0:0 @LDFLAGS_SHAREDLIB@
31
32 CLEANFILES = \
33         libwiretap.a            \
34         libwiretap.la           \
35         libwiretap_generated.a  \
36         libwiretap_generated.la \
37         *~
38
39 DISTCLEANFILES = \
40         ws_version_info.c
41
42 MAINTAINERCLEANFILES = \
43         $(GENERATED_FILES)      \
44         Makefile.in
45
46 #Since code generated by lex may trigger gcc warnings, we are now generating two
47 #libraries.  A single library is generated with the lex code without the barrier
48 #"stop on warning". An other library is generated from the remaining source
49 #files with the "stop on warning" barrier.
50 libwiretap_la_SOURCES = \
51         $(NONGENERATED_C_FILES) \
52         $(NONGENERATED_HEADER_FILES)    \
53         ws_version_info.c
54
55 libwiretap_generated_la_SOURCES = \
56         $(GENERATED_C_FILES)
57
58 libwiretap_generated_la_CFLAGS = $(GENERATED_CFLAGS)
59
60 BUILT_SOURCES = $(GENERATED_HEADER_FILES) ws_version_info.c
61
62 EXTRA_DIST = \
63         .editorconfig           \
64         README.airmagnet        \
65         README.developer        \
66         Makefile.common         \
67         Makefile.nmake          \
68         CMakeLists.txt          \
69         $(GENERATOR_FILES)      \
70         $(GENERATED_FILES)
71
72 libwiretap_la_LIBADD = libwiretap_generated.la ${top_builddir}/wsutil/libwsutil.la $(GLIB_LIBS)
73
74 libwiretap_la_DEPENDENCIES = libwiretap_generated.la ${top_builddir}/wsutil/libwsutil.la
75
76 k12text_lex.h : k12text.c
77
78 ascend_scanner_lex.h : ascend_scanner.c
79
80 ascend.h: ascend.c
81
82 ascend.c: $(srcdir)/ascend.y ascend_scanner_lex.h
83         @if [ -z "$(YACC)" ]; then \
84                 echo "Neither bison nor byacc has been found"; \
85                 exit 1; \
86         fi
87         $(AM_V_YACC)$(YACC) -d -p ascend -o ascend.c $(srcdir)/ascend.y
88
89 ws_version_info.c: $(top_srcdir)/ws_version_info.c
90         $(AM_V_LN_S)$(LN_S) $<
91
92 # ABI compliance checker can be obtained from
93 # http://ispras.linux-foundation.org/index.php/ABI_compliance_checker
94 # Checked using version 1.21.12
95 dumpabi-libwiretap: all abi-descriptor.xml
96         rm -rf abi-check-headers abi_dumps .libs/*.abi.tar.gz
97         mkdir abi-check-headers
98         cp *.h ../ws_symbol_export.h abi-check-headers/
99         abi-compliance-checker -log-path abi_logs/log.txt -l libwiretap -v1 `readlink .libs/libwiretap.so | sed 's/.*\.so\.//'` \
100                 -relpath $(abs_srcdir) -dump-abi abi-descriptor.xml || \
101                 cat logs/libwiretap/[0-9]*/log.txt
102         cp -f abi_dumps/libwiretap/libwiretap_* .libs/
103         cd .libs && ln -sf libwiretap_*.abi.tar.gz libwiretap.abi.tar.gz
104
105 maintainer-clean-local: clean-dumpabi-libwiretap
106
107 .PHONY: clean-dumpabi-libwiretap
108
109 clean-dumpabi-libwiretap:
110         rm -rf abi-check-headers abi_dumps .libs/*.abi.tar.gz abi_logs abi-descriptor.xml
111
112 checkapi:
113 ## 'abort' checking disabled for now pending resolution of existing use of g_assert & g_error
114 ##      $(PERL) $(top_srcdir)/tools/checkAPIs.pl -g abort -g termoutput \
115         $(PERL) $(top_srcdir)/tools/checkAPIs.pl -g termoutput -build \
116         -sourcedir=$(srcdir) $(NONGENERATED_C_FILES)