Add a Makefile.

svn path=/trunk/; revision=15642
This commit is contained in:
Guy Harris 2005-08-31 20:02:06 +00:00
parent 50a0cfd477
commit dc7c324547
1 changed files with 16 additions and 0 deletions

16
asn1/gnm/Makefile Normal file
View File

@ -0,0 +1,16 @@
# $Id$
DISSECTOR_FILES=packet-gnm.c packet-gnm.h
all: generate_dissector
generate_dissector: $(DISSECTOR_FILES)
$(DISSECTOR_FILES): ../../tools/asn2eth.py GNM.asn packet-gnm-template.c packet-gnm-template.h gnm.cnf
python ../../tools/asn2eth.py -X -b -e -p gnm -c gnm.cnf -s packet-gnm-template GNM.asn
clean:
rm -f parsetab.py $(DISSECTOR_FILES)
copy_files: generate_dissector
cp $(DISSECTOR_FILES) ../../epan/dissectors