wireshark/asn1/pkixcrmf/Makefile.nmake
Guy Harris f4a0e4c783 Supply Makefile.nmake files.
svn path=/trunk/; revision=13072
2005-01-16 10:38:21 +00:00

24 lines
597 B
Makefile

## Use: $(MAKE) /$(MAKEFLAGS) -f makefile.nmake
#
# $Id$
include ../../config.nmake
DISSECTOR_FILES=packet-crmf.c packet-crmf.h
all: generate_dissector
generate_dissector: $(DISSECTOR_FILES)
$(DISSECTOR_FILES): ../../tools/asn2eth.py CRMF.asn packet-crmf-template.c packet-crmf-template.h crmf.cnf
!IFDEF PYTHON
$(PYTHON) ../../tools/asn2eth.py -X -b -e -p crmf -c crmf.cnf -s packet-crmf-template CRMF.asn
!ENDIF
clean:
rm -f parsetab.py $(DISSECTOR_FILES)
copy_files: generate_dissector
xcopy packet-crmf.c ..\..\epan\dissectors /d /y
xcopy packet-crmf.h ..\..\epan\dissectors /d /y