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