aboutsummaryrefslogtreecommitdiffstats
path: root/asn1/camel
diff options
context:
space:
mode:
authorTomas Kukosa <tomas.kukosa@siemens.com>2006-05-21 14:36:05 +0000
committerTomas Kukosa <tomas.kukosa@siemens.com>2006-05-21 14:36:05 +0000
commit62da958bd969402c5a716137dd97db39508c27a4 (patch)
tree4058cba1f20112da293e1494dbb3cb99e8ba39b0 /asn1/camel
parent055419557350e22a804e7ae394382c4efb79e916 (diff)
- asn2eth renamed to asn2wrs
- remove obsolete -X option from makefiles - not generate enumerated map table for BER dissector will be regenerated later svn path=/trunk/; revision=18199
Diffstat (limited to 'asn1/camel')
-rw-r--r--asn1/camel/Makefile6
-rw-r--r--asn1/camel/Makefile.nmake6
2 files changed, 6 insertions, 6 deletions
diff --git a/asn1/camel/Makefile b/asn1/camel/Makefile
index 084f33c696..44401f121d 100644
--- a/asn1/camel/Makefile
+++ b/asn1/camel/Makefile
@@ -1,4 +1,4 @@
-# $Id: Makefile 13071 2005-01-16 10:19:21Z guy $
+# $Id$
DISSECTOR_FILES=packet-camel.c packet-camel.h
@@ -6,8 +6,8 @@ all: generate_dissector
generate_dissector: $(DISSECTOR_FILES)
-$(DISSECTOR_FILES): ../../tools/asn2eth.py camel.asn packet-camel-template.c packet-camel-template.h camel.cnf
- python ../../tools/asn2eth.py -X -b -e -p camel -c camel.cnf -s packet-camel-template camel.asn
+$(DISSECTOR_FILES): ../../tools/asn2wrs.py camel.asn packet-camel-template.c packet-camel-template.h camel.cnf
+ python ../../tools/asn2wrs.py -b -e -p camel -c camel.cnf -s packet-camel-template camel.asn
clean:
rm -f parsetab.py $(DISSECTOR_FILES)
diff --git a/asn1/camel/Makefile.nmake b/asn1/camel/Makefile.nmake
index 7bf0a4f898..db007918ca 100644
--- a/asn1/camel/Makefile.nmake
+++ b/asn1/camel/Makefile.nmake
@@ -13,11 +13,11 @@ all: generate_dissector
generate_dissector: $(DISSECTOR_FILES)
-$(DISSECTOR_FILES): ../../tools/asn2eth.py camel.asn packet-$(PROTOCOL_NAME)-template.c packet-$(PROTOCOL_NAME)-template.h camel.cnf
+$(DISSECTOR_FILES): ../../tools/asn2wrs.py camel.asn packet-$(PROTOCOL_NAME)-template.c packet-$(PROTOCOL_NAME)-template.h camel.cnf
!IFDEF PYTHON
- $(PYTHON) ../../tools/asn2eth.py -X -b -e -p $(PROTOCOL_NAME) -c camel.cnf -s packet-$(PROTOCOL_NAME)-template camel.asn
+ $(PYTHON) ../../tools/asn2wrs.py -b -e -p $(PROTOCOL_NAME) -c camel.cnf -s packet-$(PROTOCOL_NAME)-template camel.asn
!ELSE
- @echo Error: You need Python to use asn2eth.py
+ @echo Error: You need Python to use asn2wrs.py
@exit 1
!ENDIF