summaryrefslogtreecommitdiff
path: root/asn1/h245
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 /asn1/h245
parent9757ee05c8db8c032ebb390b20d68933c12298ae (diff)
downloadwireshark-7fe7cba1430e1dd78376667b29de30e6cb4133f9.tar.gz
Add Makefiles.
svn path=/trunk/; revision=13070
Diffstat (limited to 'asn1/h245')
-rw-r--r--asn1/h245/Makefile16
1 files changed, 16 insertions, 0 deletions
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