Revert "In get_unicode_or_ascii_string(), check if the length is odd/even, not the...
[metze/wireshark/wip.git] / asn1 / Makefile.inc
1 # To be included into the asn1 Makefiles
2 #
3 # $Id$
4 #
5 #
6 # Wireshark - Network traffic analyzer
7 # By Gerald Combs <gerald@wireshark.org>
8 # Copyright 1998 Gerald Combs
9 #
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.
14 #
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.
19 #
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.
23
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
27
28 all: generate_export $(DISSECTOR)
29
30 generate_export: $(EXPORT_FILES)
31
32 PROTO_OPT ?= -p $(PROTOCOL_NAME)
33
34 $(DISSECTOR): $(top_srcdir)/tools/asn2wrs.py $(SRC_FILES) $(EXTRA_CNF)
35         $(PYTHON) $(top_srcdir)/tools/asn2wrs.py \
36                 $(A2W_FLAGS) \
37                 $(PROTO_OPT) \
38                 -c $(srcdir)/$(PROTOCOL_NAME).cnf \
39                 -s $(srcdir)/packet-$(PROTOCOL_NAME)-template \
40                 -D $(srcdir) \
41                 -O $(top_srcdir)/epan/dissectors \
42                 $(EXT_ASN_FILE_LIST) $(ASN_FILE_LIST) $(EXT_ASN_FILE_LIST_LATE)
43
44 $(EXPORT_FILES): $(top_srcdir)/tools/asn2wrs.py $(SRC_FILES) $(EXPORT_DEPENDS)
45         $(PYTHON) $(top_srcdir)/tools/asn2wrs.py \
46                 -E $(A2W_FLAGS) \
47                 $(PROTO_OPT) \
48                 -c $(srcdir)/$(PROTOCOL_NAME).cnf \
49                 -D $(srcdir) \
50                 $(EXT_ASN_FILE_LIST) $(ASN_FILE_LIST) $(EXT_ASN_FILE_LIST_LATE)
51
52 # Don't clean these up until/unless we start building them...
53 #$(DISSECTOR)
54 #$(DISSECTOR_HEADER)
55 CLEANFILES = \
56         parsetab.py \
57         parsetab.pyc \
58         *-exp.cnf \
59         packet-*-{dis-tab,ettarr,ett,exp,fn,hfarr,hf,table*,val}.[hc]
60
61 MAINTAINERCLEANFILES = \
62         Makefile.in