aboutsummaryrefslogtreecommitdiffstats
path: root/asn1/h225/Makefile.nmake
diff options
context:
space:
mode:
authorGuy Harris <guy@alum.mit.edu>2005-01-16 09:06:25 +0000
committerGuy Harris <guy@alum.mit.edu>2005-01-16 09:06:25 +0000
commit72eb406f8de4781d04dbacbe79bab4010a59bc6a (patch)
tree914d630f03d4fb251e1bdcc4d8aaa9a1544e56db /asn1/h225/Makefile.nmake
parentf709d0385583c78507815b14a2022608b6d32800 (diff)
Phase 2 of renaming "makefile.nmake" to "Makefile.nmake", to match other
Makefile.nmake files. svn path=/trunk/; revision=13066
Diffstat (limited to 'asn1/h225/Makefile.nmake')
-rw-r--r--asn1/h225/Makefile.nmake23
1 files changed, 23 insertions, 0 deletions
diff --git a/asn1/h225/Makefile.nmake b/asn1/h225/Makefile.nmake
new file mode 100644
index 0000000000..da3b5adccc
--- /dev/null
+++ b/asn1/h225/Makefile.nmake
@@ -0,0 +1,23 @@
+## Use: $(MAKE) /$(MAKEFLAGS) -f makefile.nmake
+#
+# $Id$
+
+include ../../config.nmake
+
+DISSECTOR_FILES=packet-h225.c packet-h225.h
+
+all: generate_dissector
+
+generate_dissector: $(DISSECTOR_FILES)
+
+$(DISSECTOR_FILES) : h225.asn h225.cnf packet-h225-template.c packet-h225-template.h
+!IFDEF PYTHON
+ $(PYTHON) ../../tools/asn2eth.py -X -e -p h225 -c h225.cnf -s packet-h225-template h225.asn
+!ENDIF
+
+clean:
+ rm -f parsetab.py $(DISSECTOR_FILES)
+
+copy_files: generate_dissector
+ xcopy packet-h225.c ..\..\epan\dissectors /d /y
+ xcopy packet-h225.h ..\..\epan\dissectors /d /y \ No newline at end of file