aboutsummaryrefslogtreecommitdiffstats
path: root/asn1
diff options
context:
space:
mode:
authorlroland <lroland@f5534014-38df-0310-8fa8-9805f1628bb7>2005-01-14 17:52:03 +0000
committerlroland <lroland@f5534014-38df-0310-8fa8-9805f1628bb7>2005-01-14 17:52:03 +0000
commit667495e841b19f5e7cd5dfea1fc4a7bd36876ceb (patch)
tree1fa6d390fce8b0477aaa77e0c78d1d7c296f0203 /asn1
parent5d3c3ba2492c5754b56eaa9d33cab69b73f78fd8 (diff)
Add nmake makefile for /asn1/h225
git-svn-id: http://anonsvn.wireshark.org/wireshark/trunk@13036 f5534014-38df-0310-8fa8-9805f1628bb7
Diffstat (limited to 'asn1')
-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..579d6f2060
--- /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
+ cp -f -p $(DISSECTOR_FILES) ../../epan/dissectors
+ \ No newline at end of file