1 # To be included into the asn1 Makefiles for Windows builds
6 # Wireshark - Network traffic analyzer
7 # By Gerald Combs <gerald@wireshark.org>
8 # Copyright 1998 Gerald Combs
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.
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.
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.
25 DISSECTOR=../../epan/dissectors/packet-$(PROTOCOL_NAME).c
26 # This header file need not exist/get generated. It is only used when cleaning.
27 DISSECTOR_HEADER=../../epan/dissectors/packet-$(PROTOCOL_NAME).h
29 all: generate_export $(DISSECTOR)
31 generate_export: $(EXPORT_FILES)
34 PROTO_OPT = -p $(PROTOCOL_NAME)
37 $(DISSECTOR): ../../tools/asn2wrs.py $(SRC_FILES) $(EXTRA_CNF)
39 $(PYTHON) "../../tools/asn2wrs.py" \
42 -c ./$(PROTOCOL_NAME).cnf \
43 -s ./packet-$(PROTOCOL_NAME)-template \
45 -O ../../epan/dissectors \
46 $(EXT_ASN_FILE_LIST) $(ASN_FILE_LIST) $(EXT_ASN_FILE_LIST_LATE)
48 @echo Error: You need Python to use asn2wrs.py
53 $(EXPORT_FILES): ../../tools/asn2wrs.py $(SRC_FILES) $(EXPORT_DEPENDS)
55 $(PYTHON) "../../tools/asn2wrs.py" \
58 -c ./$(PROTOCOL_NAME).cnf \
60 $(EXT_ASN_FILE_LIST) $(ASN_FILE_LIST) $(EXT_ASN_FILE_LIST_LATE)
62 @echo Error: You need Python to use asn2wrs.py
67 # Don't clean these up until/unless we start building them...
74 packet-*-{dis-tab,ettarr,ett,fn,hfarr,hf,table*,val}.[hc]
79 maintainer-clean: distclean
81 # Fix EOL in generated dissectors. Cygwin's python generates files with
82 # mixed EOL styles, which can't be commited to the SVN repository.
83 # Stuff included from template and "cnf" files has "\r\n" on windows, while
84 # the generated stuff has "\n".
87 u2d $(DISSECTOR) $(DISSECTOR_HEADER)