5 # Wireshark - Network traffic analyzer
6 # By Gerald Combs <gerald@wireshark.org>
7 # Copyright 2004 Gerald Combs
9 # This program is free software; you can redistribute it and/or
10 # modify it under the terms of the GNU General Public License
11 # as published by the Free Software Foundation; either version 2
12 # of the License, or (at your option) any later version.
14 # This program is distributed in the hope that it will be useful,
15 # but WITHOUT ANY WARRANTY; without even the implied warranty of
16 # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
17 # GNU General Public License for more details.
19 # You should have received a copy of the GNU General Public License
20 # along with this program; if not, write to the Free Software
21 # Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
23 noinst_LTLIBRARIES = libdirtydissectors.la libfiledissectors.la libdissectors.la
25 AM_CPPFLAGS = -I$(srcdir)/../.. -I$(srcdir)/.. \
26 $(LIBGNUTLS_CFLAGS) $(LIBGCRYPT_CFLAGS)
28 include Makefile.common
30 libdirtydissectors_la_SOURCES = \
31 $(DIRTY_DISSECTOR_SRC) \
32 $(DIRTY_ASN1_DISSECTOR_SRC) \
33 $(DIRTY_PIDL_DISSECTOR_SRC)
35 if HAVE_WARNINGS_AS_ERRORS
36 AM_CLEAN_CFLAGS = -Werror
39 libfiledissectors_la_SOURCES = \
42 libdissectors_la_SOURCES = \
44 $(ASN1_DISSECTOR_SRC) \
45 $(PIDL_DISSECTOR_SRC) \
46 $(DISSECTOR_SUPPORT_SRC)
47 libdissectors_la_CFLAGS = $(AM_CLEAN_CFLAGS)
49 # include dceprc and pidl in the source tarball. But nothing to build...
50 DIST_SUBDIRS = dcerpc pidl
61 packet-ncp2222.c : $(top_srcdir)/tools/ncp2222.py
64 # Target to rebuild the X11 dissector header files.
65 # See README.X11 before using this--it requires the xcb and mesa source.
66 x11-dissector: $(top_srcdir)/tools/process-x11-fields.pl x11-fields $(top_srcdir)/tools/process-x11-xcb.pl
67 $(PERL) $(top_srcdir)/tools/process-x11-fields.pl < x11-fields
68 $(PERL) $(top_srcdir)/tools/process-x11-xcb.pl
71 # Build register.c, which contains a function register_all_protocols()
72 # that calls the register routines for all protocols and a function
73 # register_all_protocol_handoffs() that calls the handoff registration
74 # routines for all protocols.
76 # We do this by scanning through sources. If that turns out to be too slow,
77 # maybe we could just require every .o file to have an register routine
78 # of a given name (packet-aarp.o -> proto_register_aarp, etc.).
80 # Formatting conventions: The name of the proto_register_* routines an
81 # proto_reg_handoff_* routines must start in column zero, or must be
82 # preceded only by "void " starting in column zero, and must not be
85 # ALL_DISSECTORS_SRC is assumed to have all the files that need to be scanned.
87 # For some unknown reason, having a big "for" loop in the Makefile
88 # to scan all the files doesn't work with some "make"s; they seem to
89 # pass only the first few names in the list to the shell, for some
92 # Therefore, we have a script to generate the register.c file.
93 # The shell script runs slowly, as multiple greps and seds are run
94 # for each input file; this is especially slow on Windows. Therefore,
95 # if Python is present (as indicated by PYTHON being defined), we run
96 # a faster Python script to do that work instead.
98 # The first argument is the directory in which the source files live.
99 # The second argument is "dissectors", to indicate that we should build
100 # a register.c file for libwireshark.
101 # All subsequent arguments are the files to scan.
103 register.c: $(plugin_src) $(ALL_DISSECTORS_SRC) Makefile.common Custom.common $(top_srcdir)/tools/make-dissector-reg \
104 $(top_srcdir)/tools/make-dissector-reg.py
105 @if test -n "$(PYTHON)"; then \
106 echo Making register.c with python ; \
107 $(PYTHON) $(top_srcdir)/tools/make-dissector-reg.py $(srcdir) \
108 dissectors $(ALL_DISSECTORS_SRC) ; \
110 echo Making register.c with shell script ; \
111 $(top_srcdir)/tools/make-dissector-reg $(srcdir) \
112 dissectors $(plugin_src) $(ALL_DISSECTORS_SRC) ; \
115 # Currently register.c can be included in the distribution because
116 # we always build all protocol dissectors. We used to have to check
117 # whether or not to build the snmp dissector. If we again need to
118 # variably build something, making register.c non-portable, uncomment
119 # the dist-hook line below.
121 # Oh, yuk. We don't want to include "register.c" in the distribution, as
122 # its contents depend on the configuration, and therefore we want it
123 # to be built when the first "make" is done; however, Automake insists
124 # on putting *all* source into the distribution.
126 # We work around this by having a "dist-hook" rule that deletes
127 # "register.c", so that "dist" won't pick it up.
130 # @rm -f $(distdir)/register.c
132 # XXX - We may want to add register-cache.pkl to the distribution at
133 # some point. It should be portable across architectures.
137 libdirtydissectors.a \
138 libdirtydissectors.la \
141 $(GENERATED_HEADER_FILES) \
144 MAINTAINERCLEANFILES = \
149 $(PERL) ../../tools/checkAPIs.pl -g abort -g termoutput -build \
150 $(ALL_DISSECTORS_SRC) $(DISSECTOR_INCLUDES) $(DISSECTOR_SUPPORT_SRC)