aboutsummaryrefslogtreecommitdiffstats
path: root/asn1/h245/Makefile.nmake
diff options
context:
space:
mode:
authorGuy Harris <guy@alum.mit.edu>2005-01-16 10:38:21 +0000
committerGuy Harris <guy@alum.mit.edu>2005-01-16 10:38:21 +0000
commitf4a0e4c7837fc02b8284f623948b53011cd96073 (patch)
treeb7a96127222c7243774e4f28a177e7ce443a4a12 /asn1/h245/Makefile.nmake
parenteaf9490e04ad1d93f5c53d2f2beee8ffa7debd97 (diff)
Supply Makefile.nmake files.
svn path=/trunk/; revision=13072
Diffstat (limited to 'asn1/h245/Makefile.nmake')
-rw-r--r--asn1/h245/Makefile.nmake23
1 files changed, 23 insertions, 0 deletions
diff --git a/asn1/h245/Makefile.nmake b/asn1/h245/Makefile.nmake
new file mode 100644
index 0000000000..d7dfb3c4b3
--- /dev/null
+++ b/asn1/h245/Makefile.nmake
@@ -0,0 +1,23 @@
+## Use: $(MAKE) /$(MAKEFLAGS) -f makefile.nmake
+#
+# $Id$
+
+include ../../config.nmake
+
+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
+!IFDEF PYTHON
+ $(PYTHON) ../../tools/asn2eth.py -X -e -p h245 -c h245.cnf -s packet-h245-template h245.asn
+!ENDIF
+
+clean:
+ rm -f parsetab.py $(DISSECTOR_FILES)
+
+copy_files: generate_dissector
+ xcopy packet-h245.c ..\..\epan\dissectors /d /y
+ xcopy packet-h245.h ..\..\epan\dissectors /d /y