aboutsummaryrefslogtreecommitdiffstats
path: root/asn1/ocsp
diff options
context:
space:
mode:
authorguy <guy@f5534014-38df-0310-8fa8-9805f1628bb7>2005-01-16 10:38:21 +0000
committerguy <guy@f5534014-38df-0310-8fa8-9805f1628bb7>2005-01-16 10:38:21 +0000
commit1413ee322d959c93e2b25b8d98e68ed0b7f15aec (patch)
treeb7a96127222c7243774e4f28a177e7ce443a4a12 /asn1/ocsp
parent9dbee980ee08eedcd6451394a1603f5bc73ed9f5 (diff)
Supply Makefile.nmake files.
git-svn-id: http://anonsvn.wireshark.org/wireshark/trunk@13072 f5534014-38df-0310-8fa8-9805f1628bb7
Diffstat (limited to 'asn1/ocsp')
-rw-r--r--asn1/ocsp/Makefile.nmake23
1 files changed, 23 insertions, 0 deletions
diff --git a/asn1/ocsp/Makefile.nmake b/asn1/ocsp/Makefile.nmake
new file mode 100644
index 0000000000..074085770f
--- /dev/null
+++ b/asn1/ocsp/Makefile.nmake
@@ -0,0 +1,23 @@
+## Use: $(MAKE) /$(MAKEFLAGS) -f makefile.nmake
+#
+# $Id$
+
+include ../../config.nmake
+
+DISSECTOR_FILES=packet-ocsp.c packet-ocsp.h
+
+all: generate_dissector
+
+generate_dissector: $(DISSECTOR_FILES)
+
+$(DISSECTOR_FILES): ../../tools/asn2eth.py OCSP.asn packet-ocsp-template.c packet-ocsp-template.h ocsp.cnf
+!IFDEF PYTHON
+ $(PYTHON) ../../tools/asn2eth.py -X -b -e -p ocsp -c ocsp.cnf -s packet-ocsp-template OCSP.asn
+!ENDIF
+
+clean:
+ rm -f parsetab.py $(DISSECTOR_FILES)
+
+copy_files: generate_dissector
+ xcopy packet-ocsp.c ..\..\epan\dissectors /d /y
+ xcopy packet-ocsp.h ..\..\epan\dissectors /d /y