From a394e4984de146d726e97eac4b70b1c0f2703e5d Mon Sep 17 00:00:00 2001 From: Lars Roland Date: Fri, 14 Jan 2005 17:52:03 +0000 Subject: Add nmake makefile for /asn1/h225 svn path=/trunk/; revision=13036 --- asn1/h225/makefile.nmake | 23 +++++++++++++++++++++++ 1 file changed, 23 insertions(+) create mode 100644 asn1/h225/makefile.nmake diff --git a/asn1/h225/makefile.nmake b/asn1/h225/makefile.nmake new file mode 100644 index 0000000000..579d6f2060 --- /dev/null +++ b/asn1/h225/makefile.nmake @@ -0,0 +1,23 @@ +## Use: $(MAKE) /$(MAKEFLAGS) -f makefile.nmake +# +# $Id$ + +include ../../config.nmake + +DISSECTOR_FILES=packet-h225.c packet-h225.h + +all: generate_dissector + +generate_dissector: $(DISSECTOR_FILES) + +$(DISSECTOR_FILES) : h225.asn h225.cnf packet-h225-template.c packet-h225-template.h +!IFDEF PYTHON + $(PYTHON) ../../tools/asn2eth.py -X -e -p h225 -c h225.cnf -s packet-h225-template h225.asn +!ENDIF + +clean: + rm -f parsetab.py $(DISSECTOR_FILES) + +copy_files: generate_dissector + cp -f -p $(DISSECTOR_FILES) ../../epan/dissectors + \ No newline at end of file -- cgit v1.2.3