diff options
author | Guy Harris <guy@alum.mit.edu> | 2005-01-16 10:38:21 +0000 |
---|---|---|
committer | Guy Harris <guy@alum.mit.edu> | 2005-01-16 10:38:21 +0000 |
commit | f4a0e4c7837fc02b8284f623948b53011cd96073 (patch) | |
tree | b7a96127222c7243774e4f28a177e7ce443a4a12 /asn1/ocsp | |
parent | eaf9490e04ad1d93f5c53d2f2beee8ffa7debd97 (diff) | |
download | wireshark-f4a0e4c7837fc02b8284f623948b53011cd96073.tar.gz wireshark-f4a0e4c7837fc02b8284f623948b53011cd96073.tar.bz2 wireshark-f4a0e4c7837fc02b8284f623948b53011cd96073.zip |
Supply Makefile.nmake files.
svn path=/trunk/; revision=13072
Diffstat (limited to 'asn1/ocsp')
-rw-r--r-- | asn1/ocsp/Makefile.nmake | 23 |
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 |