aboutsummaryrefslogtreecommitdiffstats
path: root/asn1/dop
diff options
context:
space:
mode:
authorkukosa <kukosa@f5534014-38df-0310-8fa8-9805f1628bb7>2006-05-21 14:36:05 +0000
committerkukosa <kukosa@f5534014-38df-0310-8fa8-9805f1628bb7>2006-05-21 14:36:05 +0000
commite8f634884eb426295bf2a1cc0c63db7b4c88c48b (patch)
tree4058cba1f20112da293e1494dbb3cb99e8ba39b0 /asn1/dop
parent22c0deb18035bbf1ad4e874bad5371914d511c7c (diff)
- asn2eth renamed to asn2wrs
- remove obsolete -X option from makefiles - not generate enumerated map table for BER dissector will be regenerated later git-svn-id: http://anonsvn.wireshark.org/wireshark/trunk@18199 f5534014-38df-0310-8fa8-9805f1628bb7
Diffstat (limited to 'asn1/dop')
-rw-r--r--asn1/dop/Makefile4
-rw-r--r--asn1/dop/Makefile.nmake6
2 files changed, 5 insertions, 5 deletions
diff --git a/asn1/dop/Makefile b/asn1/dop/Makefile
index cf3838522e..2e6d8677da 100644
--- a/asn1/dop/Makefile
+++ b/asn1/dop/Makefile
@@ -8,8 +8,8 @@ generate_dissector: $(DISSECTOR_FILES)
ASN_EXPORTS=
-$(DISSECTOR_FILES): ../../tools/asn2eth.py dop.asn packet-dop-template.c packet-dop-template.h dop.cnf $(ASN_EXPORTS)
- python ../../tools/asn2eth.py -X -b -e -p dop -c dop.cnf -s packet-dop-template dop.asn
+$(DISSECTOR_FILES): ../../tools/asn2wrs.py dop.asn packet-dop-template.c packet-dop-template.h dop.cnf $(ASN_EXPORTS)
+ python ../../tools/asn2wrs.py -b -e -p dop -c dop.cnf -s packet-dop-template dop.asn
clean:
rm -f parsetab.py $(DISSECTOR_FILES) *~
diff --git a/asn1/dop/Makefile.nmake b/asn1/dop/Makefile.nmake
index 7e6241aef0..4a6baaf501 100644
--- a/asn1/dop/Makefile.nmake
+++ b/asn1/dop/Makefile.nmake
@@ -13,11 +13,11 @@ all: generate_dissector
generate_dissector: $(DISSECTOR_FILES)
-$(DISSECTOR_FILES): ../../tools/asn2eth.py dop.asn packet-$(PROTOCOL_NAME)-template.c packet-$(PROTOCOL_NAME)-template.h $(PROTOCOL_NAME).cnf
+$(DISSECTOR_FILES): ../../tools/asn2wrs.py dop.asn packet-$(PROTOCOL_NAME)-template.c packet-$(PROTOCOL_NAME)-template.h $(PROTOCOL_NAME).cnf
!IFDEF PYTHON
- $(PYTHON) ../../tools/asn2eth.py -X -b -e -p $(PROTOCOL_NAME) -c $(PROTOCOL_NAME).cnf -s packet-$(PROTOCOL_NAME)-template dop.asn
+ $(PYTHON) ../../tools/asn2wrs.py -b -e -p $(PROTOCOL_NAME) -c $(PROTOCOL_NAME).cnf -s packet-$(PROTOCOL_NAME)-template dop.asn
!ELSE
- @echo Error: You need Python to use asn2eth.py
+ @echo Error: You need Python to use asn2wrs.py
@exit 1
!ENDIF