diff options
author | Guy Harris <guy@alum.mit.edu> | 2005-01-16 10:19:21 +0000 |
---|---|---|
committer | Guy Harris <guy@alum.mit.edu> | 2005-01-16 10:19:21 +0000 |
commit | eaf9490e04ad1d93f5c53d2f2beee8ffa7debd97 (patch) | |
tree | 60b069d867770bd120745edba9ae9298d16f75f5 /asn1/x509ce | |
parent | 7fe7cba1430e1dd78376667b29de30e6cb4133f9 (diff) | |
download | wireshark-eaf9490e04ad1d93f5c53d2f2beee8ffa7debd97.tar.gz wireshark-eaf9490e04ad1d93f5c53d2f2beee8ffa7debd97.tar.bz2 wireshark-eaf9490e04ad1d93f5c53d2f2beee8ffa7debd97.zip |
Make the Makefile look like the h235 Makefiles, with the new rules.
Get rid of their "executable" property, and set svn:keywords to Id and
svn:eol-style to native if they're not already set.
svn path=/trunk/; revision=13071
Diffstat (limited to 'asn1/x509ce')
-rw-r--r--[-rwxr-xr-x] | asn1/x509ce/Makefile | 15 |
1 files changed, 13 insertions, 2 deletions
diff --git a/asn1/x509ce/Makefile b/asn1/x509ce/Makefile index 244d28416b..b7fa433dba 100755..100644 --- a/asn1/x509ce/Makefile +++ b/asn1/x509ce/Makefile @@ -1,5 +1,16 @@ +# $Id$ -../../epan/dissectors/packet-x509ce.c : ../../tools/asn2eth.py CertificateExtensions.asn packet-x509ce-template.c packet-x509ce-template.h x509ce.cnf ../x509if/x509if-exp.cnf ../x509sat/x509sat-exp.cnf ../x509af/x509af-exp.cnf +DISSECTOR_FILES=packet-x509ce.c packet-x509ce.h + +all: generate_dissector + +generate_dissector: $(DISSECTOR_FILES) + +$(DISSECTOR_FILES): ../../tools/asn2eth.py CertificateExtensions.asn packet-x509ce-template.c packet-x509ce-template.h x509ce.cnf ../x509if/x509if-exp.cnf ../x509sat/x509sat-exp.cnf ../x509af/x509af-exp.cnf python ../../tools/asn2eth.py -X -b -e -p x509ce -c x509ce.cnf -s packet-x509ce-template CertificateExtensions.asn - cp packet-x509ce.* ../../epan/dissectors +clean: + rm -f parsetab.py $(DISSECTOR_FILES) + +copy_files: generate_dissector + cp $(DISSECTOR_FILES) ../../epan/dissectors |