Update Camel to TS 29.078 9.2.0 (2010-06)
[obnox/wireshark/wip.git] / asn1 / Makefile.inc.nmake
1 # To be included into the asn1 Makefiles for Windows builds
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 !IFNDEF PROTO_OPT
29 PROTO_OPT = -p $(PROTOCOL_NAME)
30 !ENDIF
31
32 $(DISSECTOR_FILES): ../../tools/asn2wrs.py $(SRC_FILES) $(EXTRA_CNF)
33 !IFDEF PYTHON
34         $(PYTHON) "../../tools/asn2wrs.py" \
35                 $(A2W_FLAGS) \
36                 $(PROTO_OPT) \
37                 -c ./$(PROTOCOL_NAME).cnf \
38                 -s ./packet-$(PROTOCOL_NAME)-template \
39                 -D . \
40                 $(EXT_ASN_FILE_LIST) $(ASN_FILE_LIST) $(EXT_ASN_FILE_LIST_LATE)
41 !ELSE
42         @echo Error: You need Python to use asn2wrs.py
43         @exit 1
44 !ENDIF
45
46 !IFDEF EXPORT_FILES
47 $(EXPORT_FILES): ../../tools/asn2wrs.py $(SRC_FILES)
48 !IFDEF PYTHON
49         $(PYTHON) "../../tools/asn2wrs.py" \
50                 -E $(A2W_FLAGS) \
51                 $(PROTO_OPT) \
52                 -c ./$(PROTOCOL_NAME).cnf \
53                 -D . \
54                 $(EXT_ASN_FILE_LIST) $(ASN_FILE_LIST) $(EXT_ASN_FILE_LIST_LATE)
55 !ELSE
56         @echo Error: You need Python to use asn2wrs.py
57         @exit 1
58 !ENDIF
59 !ENDIF
60
61 clean:
62         rm -f parsetab.py \
63                 parsetab.pyc \
64                 $(DISSECTOR_FILES) \
65                 *-exp.cnf \
66                 packet-*-{dis-tab,ettarr,ett,fn,hfarr,hf,table*,val}.[hc]
67
68
69 distclean: clean
70
71 maintainer-clean: distclean
72
73 # Fix EOL in generated dissectors. Cygwin's python generates files with
74 # mixed EOL styles, which can't be commited to the SVN repository.
75 # Stuff included from template and "cnf" files has "\r\n" on windows, while
76 # the generated stuff has "\n".
77
78 fix_eol: generate_dissector
79         u2d $(DISSECTOR_FILES)
80
81 copy_files: generate_dissector
82    @<<copy_files.bat
83 @FOR %%A IN ($(DISSECTOR_FILES)) DO xcopy %%A ..\..\epan\dissectors /d /y
84 <<
85
86 compare_files: generate_dissector
87    @<<compare_files.bat
88 @setlocal
89 @set CYGWIN=%CYGWIN% nodosfilewarning
90 @FOR %%A IN ($(DISSECTOR_FILES)) DO @diff -U 0 -I '[[:blank:]]\*[[:blank:]]\^$Id:[[:blank:]]' %%A ..\..\epan\dissectors
91 @exit /b 0
92 <<