wireshark/asn1/pkixcrmf/Makefile.nmake

24 lines
597 B
Makefile
Raw Normal View History

## 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