summaryrefslogtreecommitdiff
path: root/asn1/ess
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/ess
parent055419557350e22a804e7ae394382c4efb79e916 (diff)
downloadwireshark-62da958bd969402c5a716137dd97db39508c27a4.tar.gz
- 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/ess')
-rw-r--r--asn1/ess/Makefile4
-rw-r--r--asn1/ess/Makefile.nmake6
2 files changed, 5 insertions, 5 deletions
diff --git a/asn1/ess/Makefile b/asn1/ess/Makefile
index dc0106a462..050f51d6ad 100644
--- a/asn1/ess/Makefile
+++ b/asn1/ess/Makefile
@@ -6,8 +6,8 @@ all: generate_dissector
generate_dissector: $(DISSECTOR_FILES)
-$(DISSECTOR_FILES): ../../tools/asn2eth.py ExtendedSecurityServices.asn packet-ess-template.c packet-ess-template.h ess.cnf
- python ../../tools/asn2eth.py -X -b -k -e -p ess -c ess.cnf -s packet-ess-template ExtendedSecurityServices.asn
+$(DISSECTOR_FILES): ../../tools/asn2wrs.py ExtendedSecurityServices.asn packet-ess-template.c packet-ess-template.h ess.cnf
+ python ../../tools/asn2wrs.py -b -k -e -p ess -c ess.cnf -s packet-ess-template ExtendedSecurityServices.asn
clean:
rm -f parsetab.py $(DISSECTOR_FILES) \
diff --git a/asn1/ess/Makefile.nmake b/asn1/ess/Makefile.nmake
index 2f9955627a..935e691836 100644
--- a/asn1/ess/Makefile.nmake
+++ b/asn1/ess/Makefile.nmake
@@ -13,11 +13,11 @@ all: generate_dissector
generate_dissector: $(DISSECTOR_FILES)
-$(DISSECTOR_FILES): ../../tools/asn2eth.py ExtendedSecurityServices.asn packet-$(PROTOCOL_NAME)-template.c packet-$(PROTOCOL_NAME)-template.h $(PROTOCOL_NAME).cnf
+$(DISSECTOR_FILES): ../../tools/asn2wrs.py ExtendedSecurityServices.asn packet-$(PROTOCOL_NAME)-template.c packet-$(PROTOCOL_NAME)-template.h $(PROTOCOL_NAME).cnf
!IFDEF PYTHON
- $(PYTHON) ../../tools/asn2eth.py -X -b -k -e -p $(PROTOCOL_NAME) -c $(PROTOCOL_NAME).cnf -s packet-$(PROTOCOL_NAME)-template ExtendedSecurityServices.asn
+ $(PYTHON) ../../tools/asn2wrs.py -b -k -e -p $(PROTOCOL_NAME) -c $(PROTOCOL_NAME).cnf -s packet-$(PROTOCOL_NAME)-template ExtendedSecurityServices.asn
!ELSE
- @echo Error: You need Python to use asn2eth.py
+ @echo Error: You need Python to use asn2wrs.py
@exit 1
!ENDIF