aboutsummaryrefslogtreecommitdiffstats
path: root/asn1/dap/Makefile
diff options
context:
space:
mode:
authorRonnie Sahlberg <ronnie_sahlberg@ozemail.com.au>2005-11-16 22:53:33 +0000
committerRonnie Sahlberg <ronnie_sahlberg@ozemail.com.au>2005-11-16 22:53:33 +0000
commit3487cd6d59181fa5946877f9617d41f0a056e8fc (patch)
tree07079a045c4520789185638100d5b355b7d62be7 /asn1/dap/Makefile
parent32b71d9b7e9148a393d74613df511b64f3855db6 (diff)
from Graeme Lunt
4 new asn based protocols X501 DISP DAP DSP svn path=/trunk/; revision=16518
Diffstat (limited to 'asn1/dap/Makefile')
-rwxr-xr-xasn1/dap/Makefile23
1 files changed, 23 insertions, 0 deletions
diff --git a/asn1/dap/Makefile b/asn1/dap/Makefile
new file mode 100755
index 0000000000..d86f9c8f40
--- /dev/null
+++ b/asn1/dap/Makefile
@@ -0,0 +1,23 @@
+# $Id: Makefile 13071 2005-01-16 10:19:21Z guy $
+
+DISSECTOR_FILES=packet-dap.c packet-dap.h
+
+all: generate_dissector
+
+generate_dissector: $(DISSECTOR_FILES)
+
+ASN_EXPORTS= ../x509if/x509if-exp.cnf \
+ ../x509af/x509af-exp.cnf \
+ ../dsp/dsp-exp.cnf \
+ ../ros/ros-exp.cnf \
+ ../acse/acse-exp.cnf
+
+$(DISSECTOR_FILES): ../../tools/asn2eth.py dap.asn packet-dap-template.c packet-dap-template.h dap.cnf $(ASN_EXPORTS)
+ python ../../tools/asn2eth.py -X -b -e -p dap -c dap.cnf -s packet-dap-template dap.asn
+
+clean:
+ rm -f parsetab.py $(DISSECTOR_FILES)
+
+copy_files: generate_dissector
+ cp $(DISSECTOR_FILES) ../../epan/dissectors
+