fix a typo in the source files target, took me more than an hour to find it :-(((
[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
25 UNIX2DOS=$(PERL) ../../tools/unix2dos.pl
26
27
28
29 all: generate_dissector
30
31 generate_dissector: $(DISSECTOR_FILES)
32
33 $(DISSECTOR_FILES): ../../tools/asn2wrs.py $(SRC_FILES) $(EXTRA_CNF)
34 !IFDEF PYTHON
35         $(PYTHON) "../../tools/asn2wrs.py" \
36                 $(A2W_FLAGS) \
37                 -p $(PROTOCOL_NAME) \
38                 -c $(PROTOCOL_NAME).cnf \
39                 -s packet-$(PROTOCOL_NAME)-template \
40                 $(ASN_FILE_LIST) $(EXT_ASN_FILE_LIST)
41 !ELSE
42         @echo Error: You need Python to use asn2wrs.py
43         @exit 1
44 !ENDIF
45
46 clean:
47         rm -f parsetab.py \
48                 parsetab.pyc \
49                 $(DISSECTOR_FILES) \
50                 *-exp.cnf \
51                 packet-*-{dis-tab,ettarr,ett,fn,hfarr,hf,table*,val}.[hc]
52
53
54 distclean: clean
55
56 maintainer-clean: distclean
57
58 # Fix EOL in generated dissectors. Cygwin's python generates files with
59 # mixed EOL styles, which can't be commited to the SVN repository.
60 # Stuff included from template and "cnf" files has "\r\n" on windows, while
61 # the generated stuff has "\n".
62
63 fix_eol: generate_dissector
64         move packet-$(PROTOCOL_NAME).c packet-$(PROTOCOL_NAME).c.tmp
65         $(UNIX2DOS) < packet-$(PROTOCOL_NAME).c.tmp > packet-$(PROTOCOL_NAME).c
66         del /f packet-$(PROTOCOL_NAME).c.tmp 
67 !IF $(NEED_PACKET_PROTO_H)
68         move packet-$(PROTOCOL_NAME).h packet-$(PROTOCOL_NAME).h.tmp
69         $(UNIX2DOS) < packet-$(PROTOCOL_NAME).h.tmp > packet-$(PROTOCOL_NAME).h
70         del /f packet-$(PROTOCOL_NAME).h.tmp
71 !ENDIF
72
73 copy_files: generate_dissector
74         xcopy packet-$(PROTOCOL_NAME).c ..\..\epan\dissectors /d /y
75 !IF $(NEED_PACKET_PROTO_H)
76         xcopy packet-$(PROTOCOL_NAME).h ..\..\epan\dissectors /d /y
77 !ENDIF
78