aboutsummaryrefslogtreecommitdiffstats
path: root/asn1/h225
diff options
context:
space:
mode:
authorLars Roland <Lars.Roland@gmx.net>2005-01-14 17:52:03 +0000
committerLars Roland <Lars.Roland@gmx.net>2005-01-14 17:52:03 +0000
commita394e4984de146d726e97eac4b70b1c0f2703e5d (patch)
tree1fa6d390fce8b0477aaa77e0c78d1d7c296f0203 /asn1/h225
parentd73323c385306e9b92e435dc491417931fea9379 (diff)
Add nmake makefile for /asn1/h225
svn path=/trunk/; revision=13036
Diffstat (limited to 'asn1/h225')
-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