Add Makefile.common files for epan/dfilter and epan/ftypes.
[metze/wireshark/wip.git] / epan / dissectors / Makefile.am
1 # Makefile.am
2 #
3 # $Id$
4 #
5 # Wireshark - Network traffic analyzer
6 # By Gerald Combs <gerald@wireshark.org>
7 # Copyright 2004 Gerald Combs
8
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.
13
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.
18
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., 59 Temple Place - Suite 330, Boston, MA  02111-1307, USA.
22
23 noinst_LTLIBRARIES = libdissectors.la libcleandissectors.la libasndissectors.la libpidldissectors.la
24
25
26
27 INCLUDES = -I$(srcdir)/../.. -I$(srcdir)/.. \
28         $(LIBGNUTLS_CFLAGS) $(LIBGCRYPT_CFLAGS)
29
30 include Makefile.common
31
32
33 libasndissectors_la_SOURCES = \
34         $(ASN_DISSECTOR_SRC)
35
36 libpidldissectors_la_SOURCES = \
37         $(PIDL_DISSECTOR_SRC)
38
39 libdissectors_la_SOURCES = \
40         $(DISSECTOR_SRC) \
41         $(DISSECTOR_SUPPORT_SRC)
42
43 if HAVE_WARNINGS_AS_ERRORS
44 AM_CLEAN_CFLAGS = -Werror
45 endif
46
47 libcleandissectors_la_SOURCES = \
48         $(CLEAN_DISSECTOR_SRC)
49 libcleandissectors_la_CFLAGS = $(AM_CLEAN_CFLAGS)
50
51
52 EXTRA_DIST = \
53         Makefile.common         \
54         Makefile.nmake          \
55         ncp2222.py              \
56         packet-ncp2222.inc      \
57         process-x11-fields.pl   \
58         x11-fields
59
60 packet-ncp2222.c : $(srcdir)/ncp2222.py
61         $(PYTHON) $< -o $@
62
63 #
64 # Build various header files for the X11 dissector.
65 #
66 PROC_X11_FIELDS = $(srcdir)/process-x11-fields.pl
67 X11_FIELDS = $(srcdir)/x11-fields
68
69 x11-declarations.h x11-register-info.h: $(PROC_X11_FIELDS) $(X11_FIELDS)
70         $(PERL) $(PROC_X11_FIELDS) < $(X11_FIELDS)
71
72 #
73 # Build register.c, which contains a function register_all_protocols()
74 # that calls the register routines for all protocols and a function
75 # register_all_protocol_handoffs() that calls the handoff registration
76 # routines for all protocols.
77 #
78 # We do this by scanning through sources.  If that turns out to be too slow,
79 # maybe we could just require every .o file to have an register routine
80 # of a given name (packet-aarp.o -> proto_register_aarp, etc.).
81 #
82 # Formatting conventions:  The name of the proto_register_* routines an
83 # proto_reg_handoff_* routines must start in column zero, or must be
84 # preceded only by "void " starting in column zero, and must not be
85 # inside #if.
86 #
87 # DISSECTOR_SRC is assumed to have all the files that need to be scanned.
88 #
89 # For some unknown reason, having a big "for" loop in the Makefile
90 # to scan all the files doesn't work with some "make"s; they seem to
91 # pass only the first few names in the list to the shell, for some
92 # reason.
93 #
94 # Therefore, we have a script to generate the register.c file.
95 # The shell script runs slowly, as multiple greps and seds are run
96 # for each input file; this is especially slow on Windows.  Therefore,
97 # if Python is present (as indicated by PYTHON being defined), we run
98 # a faster Python script to do that work instead.
99 #
100 # The first argument is the directory in which the source files live.
101 # The second argument is "dissectors", to indicate that we should build
102 # a register.c file for libwireshark.
103 # All subsequent arguments are the files to scan.
104 #
105 register.c: $(plugin_src) $(ALL_DISSECTORS_SRC) $(top_srcdir)/tools/make-dissector-reg \
106     $(top_srcdir)/tools/make-dissector-reg.py
107         @if test -n "$(PYTHON)"; then \
108                 echo Making register.c with python ; \
109                 $(PYTHON) $(top_srcdir)/tools/make-dissector-reg.py $(srcdir) \
110                     dissectors $(ALL_DISSECTORS_SRC) ; \
111         else \
112                 echo Making register.c with shell script ; \
113                 $(top_srcdir)/tools/make-dissector-reg $(srcdir) \
114                    dissectors $(plugin_src) $(ALL_DISSECTORS_SRC) ; \
115         fi
116 #
117 # Currently register.c can be included in the distribution because
118 # we always build all protocol dissectors. We used to have to check
119 # whether or not to build the snmp dissector. If we again need to
120 # variably build something, making register.c non-portable, uncomment
121 # the dist-hook line below.
122 #
123 # Oh, yuk.  We don't want to include "register.c" in the distribution, as
124 # its contents depend on the configuration, and therefore we want it
125 # to be built when the first "make" is done; however, Automake insists
126 # on putting *all* source into the distribution.
127 #
128 # We work around this by having a "dist-hook" rule that deletes
129 # "register.c", so that "dist" won't pick it up.
130 #
131 #dist-hook:
132 #       @rm -f $(distdir)/register.c
133
134 # XXX - We may want to add register-cache.pkl to the distribution at
135 # some point.  It should be portable across architectures.
136 CLEANFILES = \
137         libcleandissectors.a \
138         libcleandissectors.la \
139         libdissectors.a         \
140         libdissectors.la        \
141         libasndissectors.la \
142         libasndissectors.a \
143         libpidldissectors.la \
144         libpidldissectors.a \
145         register.c-tmp          \
146         register-cache.pkl              \
147         $(GENERATED_HEADER_FILES)       \
148         *~
149
150 MAINTAINERCLEANFILES =  \
151         $(GENERATED_FILES)      \
152         Makefile.in
153
154 checkapi:
155         $(PERL) ../../tools/checkAPIs.pl -g abort -g termoutput \
156                 $(ALL_DISSECTORS_SRC) \
157                 packet-dcerpc-nt.c