aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorGuy Harris <guy@alum.mit.edu>2005-01-16 10:17:53 +0000
committerGuy Harris <guy@alum.mit.edu>2005-01-16 10:17:53 +0000
commit7fe7cba1430e1dd78376667b29de30e6cb4133f9 (patch)
tree919376635e21d0233a8ab91e0619ff80a2ce81b1
parent9757ee05c8db8c032ebb390b20d68933c12298ae (diff)
Add Makefiles.
svn path=/trunk/; revision=13070
-rw-r--r--asn1/h235/Makefile16
-rw-r--r--asn1/h245/Makefile16
-rw-r--r--asn1/h450/Makefile16
-rw-r--r--asn1/ns-cert-exts/Makefile16
4 files changed, 64 insertions, 0 deletions
diff --git a/asn1/h235/Makefile b/asn1/h235/Makefile
new file mode 100644
index 0000000000..d5d5d14c2b
--- /dev/null
+++ b/asn1/h235/Makefile
@@ -0,0 +1,16 @@
+# $Id$
+
+DISSECTOR_FILES=packet-h235.c packet-h235.h
+
+all: generate_dissector
+
+generate_dissector: $(DISSECTOR_FILES)
+
+$(DISSECTOR_FILES): ../../tools/asn2eth.py packet-h235-template.c packet-h235-template.h h235.cnf
+ python ../../tools/asn2eth.py -X -p h235 -c h235.cnf -s packet-h235-template H235-SECURITY-MESSAGES.asn
+
+clean:
+ rm -f parsetab.py $(DISSECTOR_FILES)
+
+copy_files: generate_dissector
+ cp $(DISSECTOR_FILES) ../../epan/dissectors
diff --git a/asn1/h245/Makefile b/asn1/h245/Makefile
new file mode 100644
index 0000000000..83d13d5bf2
--- /dev/null
+++ b/asn1/h245/Makefile
@@ -0,0 +1,16 @@
+# $Id$
+
+DISSECTOR_FILES=packet-h245.c packet-h245.h
+
+all: generate_dissector
+
+generate_dissector: $(DISSECTOR_FILES)
+
+$(DISSECTOR_FILES): ../../tools/asn2eth.py packet-h245-template.c packet-h245-template.h h245.cnf
+ python ../../tools/asn2eth.py -X -e -p h245 -c h245.cnf -s packet-h245-template h245.asn
+
+clean:
+ rm -f parsetab.py $(DISSECTOR_FILES)
+
+copy_files: generate_dissector
+ cp $(DISSECTOR_FILES) ../../epan/dissectors
diff --git a/asn1/h450/Makefile b/asn1/h450/Makefile
new file mode 100644
index 0000000000..21050d2638
--- /dev/null
+++ b/asn1/h450/Makefile
@@ -0,0 +1,16 @@
+# $Id$
+
+DISSECTOR_FILES=packet-h450.c packet-h450.h
+
+all: generate_dissector
+
+generate_dissector: $(DISSECTOR_FILES)
+
+$(DISSECTOR_FILES): ../../tools/asn2eth.py h4501.asn packet-h450-template.c packet-h450-template.h h450.cnf
+ python ../../tools/asn2eth.py -X -b -e -p h450 -c h450.cnf -s packet-h450-template h4501.asn
+
+clean:
+ rm -f parsetab.py $(DISSECTOR_FILES)
+
+copy_files: generate_dissector
+ cp $(DISSECTOR_FILES) ../../epan/dissectors
diff --git a/asn1/ns-cert-exts/Makefile b/asn1/ns-cert-exts/Makefile
new file mode 100644
index 0000000000..025f271de5
--- /dev/null
+++ b/asn1/ns-cert-exts/Makefile
@@ -0,0 +1,16 @@
+# $Id$
+
+DISSECTOR_FILES=packet-ns_cert_exts.c packet-ns_cert_exts.h
+
+all: generate_dissector
+
+generate_dissector: $(DISSECTOR_FILES)
+
+$(DISSECTOR_FILES): ../../tools/asn2eth.py NETSCAPE-CERT-EXTS.asn packet-ns_cert_exts-template.c packet-ns_cert_exts-template.h ns_cert_exts.cnf
+ python ../../tools/asn2eth.py -X -b -e -p ns_cert_exts -c ns_cert_exts.cnf -s packet-ns_cert_exts-template NETSCAPE-CERT-EXTS.asn
+
+clean:
+ rm -f parsetab.py $(DISSECTOR_FILES)
+
+copy_files: generate_dissector
+ cp $(DISSECTOR_FILES) ../../epan/dissectors