Removed some "statement not reached" warnings.
[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., 59 Temple Place - Suite 330, Boston, MA  02111-1307, USA.
23
24 generate_dissector: $(DISSECTOR_FILES)
25
26 generate_export: $(EXPORT_FILES)
27
28 PROTO_OPT ?= -p $(PROTOCOL_NAME)
29
30 $(DISSECTOR_FILES): $(top_srcdir)/tools/asn2wrs.py $(SRC_FILES) $(EXTRA_CNF)
31         python $(top_srcdir)/tools/asn2wrs.py \
32                 $(A2W_FLAGS) \
33                 $(PROTO_OPT) \
34                 -c $(srcdir)/$(PROTOCOL_NAME).cnf \
35                 -s $(srcdir)/packet-$(PROTOCOL_NAME)-template \
36                 -D $(srcdir) \
37                 $(EXT_ASN_FILE_LIST) $(ASN_FILE_LIST) $(EXT_ASN_FILE_LIST_LATE)
38
39 $(EXPORT_FILES): $(top_srcdir)/tools/asn2wrs.py $(SRC_FILES)
40         python $(top_srcdir)/tools/asn2wrs.py \
41                 -E $(A2W_FLAGS) \
42                 $(PROTO_OPT) \
43                 -c $(srcdir)/$(PROTOCOL_NAME).cnf \
44                 -D $(srcdir) \
45                 $(EXT_ASN_FILE_LIST) $(ASN_FILE_LIST) $(EXT_ASN_FILE_LIST_LATE)
46
47 copy_files: generate_dissector
48         cp $(DISSECTOR_FILES) $(top_srcdir)/epan/dissectors/
49
50 CLEANFILES = \
51         parsetab.py \
52         parsetab.pyc \
53         $(DISSECTOR_FILES) \
54         *-exp.cnf \
55         packet-*-{dis-tab,ettarr,ett,fn,hfarr,hf,table*,val,exp}.[hc]
56