From 7fe7cba1430e1dd78376667b29de30e6cb4133f9 Mon Sep 17 00:00:00 2001 From: Guy Harris Date: Sun, 16 Jan 2005 10:17:53 +0000 Subject: [PATCH] Add Makefiles. svn path=/trunk/; revision=13070 --- asn1/h235/Makefile | 16 ++++++++++++++++ asn1/h245/Makefile | 16 ++++++++++++++++ asn1/h450/Makefile | 16 ++++++++++++++++ asn1/ns-cert-exts/Makefile | 16 ++++++++++++++++ 4 files changed, 64 insertions(+) create mode 100644 asn1/h235/Makefile create mode 100644 asn1/h245/Makefile create mode 100644 asn1/h450/Makefile create mode 100644 asn1/ns-cert-exts/Makefile 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