Add a Makefile.

svn path=/trunk/; revision=13370
This commit is contained in:
Guy Harris 2005-02-10 03:10:08 +00:00
parent 6d3d4bb708
commit dc2cb627bd
1 changed files with 16 additions and 0 deletions

16
asn1/inap/Makefile Normal file
View File

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