aboutsummaryrefslogtreecommitdiffstats
path: root/asn1/pres/Makefile
diff options
context:
space:
mode:
Diffstat (limited to 'asn1/pres/Makefile')
-rw-r--r--asn1/pres/Makefile17
1 files changed, 17 insertions, 0 deletions
diff --git a/asn1/pres/Makefile b/asn1/pres/Makefile
new file mode 100644
index 0000000000..e9187541e2
--- /dev/null
+++ b/asn1/pres/Makefile
@@ -0,0 +1,17 @@
+# $Id: Makefile 15178 2005-08-02 05:21:19Z jmayer $
+
+DISSECTOR_FILES=packet-pres.c packet-pres.h
+
+all: generate_dissector
+
+generate_dissector: $(DISSECTOR_FILES)
+
+$(DISSECTOR_FILES): ../../tools/asn2eth.py ISO8823-PRESENTATION.asn packet-pres-template.c packet-pres-template.h pres.cnf
+ python ../../tools/asn2eth.py -X -b -e -p pres -c pres.cnf -s packet-pres-template ISO8823-PRESENTATION.asn
+
+clean:
+ rm -f parsetab.py $(DISSECTOR_FILES)
+
+copy_files: generate_dissector
+ cp $(DISSECTOR_FILES) ../../epan/dissectors
+