1 # To be included into the asn1 Makefiles
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.
24 DISSECTOR = $(top_srcdir)/epan/dissectors/packet-$(PROTOCOL_NAME).c
25 # This header file need not exist/get generated. It is only used when cleaning.
26 DISSECTOR_HEADER=$(top_srcdir)/epan/dissectors/packet-$(PROTOCOL_NAME).h
28 all: generate_export $(DISSECTOR)
30 generate_export: $(EXPORT_FILES)
32 PROTO_OPT ?= -p $(PROTOCOL_NAME)
34 $(DISSECTOR): $(top_srcdir)/tools/asn2wrs.py $(SRC_FILES) $(EXTRA_CNF)
35 $(PYTHON) $(top_srcdir)/tools/asn2wrs.py \
38 -c $(srcdir)/$(PROTOCOL_NAME).cnf \
39 -s $(srcdir)/packet-$(PROTOCOL_NAME)-template \
41 -O $(top_srcdir)/epan/dissectors \
42 $(EXT_ASN_FILE_LIST) $(ASN_FILE_LIST) $(EXT_ASN_FILE_LIST_LATE)
44 $(EXPORT_FILES): $(top_srcdir)/tools/asn2wrs.py $(SRC_FILES) $(EXPORT_DEPENDS)
45 $(PYTHON) $(top_srcdir)/tools/asn2wrs.py \
48 -c $(srcdir)/$(PROTOCOL_NAME).cnf \
50 $(EXT_ASN_FILE_LIST) $(ASN_FILE_LIST) $(EXT_ASN_FILE_LIST_LATE)
52 # Don't clean these up until/unless we start building them...
59 packet-*-{dis-tab,ettarr,ett,exp,fn,hfarr,hf,table*,val}.[hc]
61 MAINTAINERCLEANFILES = \