aboutsummaryrefslogtreecommitdiffstats
path: root/asn1/disp/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/disp/Makefile
parent32b71d9b7e9148a393d74613df511b64f3855db6 (diff)
from Graeme Lunt
4 new asn based protocols X501 DISP DAP DSP svn path=/trunk/; revision=16518
Diffstat (limited to 'asn1/disp/Makefile')
-rwxr-xr-xasn1/disp/Makefile17
1 files changed, 17 insertions, 0 deletions
diff --git a/asn1/disp/Makefile b/asn1/disp/Makefile
new file mode 100755
index 0000000000..81ce62641f
--- /dev/null
+++ b/asn1/disp/Makefile
@@ -0,0 +1,17 @@
+# $Id: Makefile 13071 2005-01-16 10:19:21Z guy $
+
+DISSECTOR_FILES=packet-disp.c packet-disp.h
+
+all: generate_dissector
+
+generate_dissector: $(DISSECTOR_FILES)
+
+$(DISSECTOR_FILES): ../../tools/asn2eth.py disp.asn packet-disp-template.c packet-disp-template.h disp.cnf
+ python ../../tools/asn2eth.py -X -b -e -p disp -c disp.cnf -s packet-disp-template disp.asn
+
+clean:
+ rm -f parsetab.py $(DISSECTOR_FILES) *~
+
+copy_files: generate_dissector
+ cp $(DISSECTOR_FILES) ../../epan/dissectors
+