wireshark/asn1/x509af/Makefile.nmake

24 lines
731 B
Makefile
Raw Normal View History

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