aboutsummaryrefslogtreecommitdiffstats
path: root/asn1/h225/Makefile.nmake
diff options
context:
space:
mode:
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