diff options
author | Guy Harris <guy@alum.mit.edu> | 2006-05-01 17:42:01 +0000 |
---|---|---|
committer | Guy Harris <guy@alum.mit.edu> | 2006-05-01 17:42:01 +0000 |
commit | 53e371e8a7d8f777520a91484b583bea622b96d1 (patch) | |
tree | 5eb83bbed8793bd5beaa3b4a8114af9f6226d506 /asn1/ldap | |
parent | f27830e9f57c31d0f04eb265a958746b2c7a597b (diff) | |
download | wireshark-53e371e8a7d8f777520a91484b583bea622b96d1.tar.gz wireshark-53e371e8a7d8f777520a91484b583bea622b96d1.tar.bz2 wireshark-53e371e8a7d8f777520a91484b583bea622b96d1.zip |
Add a Makefile to generate the dissectors from UN*X.
svn path=/trunk/; revision=18060
Diffstat (limited to 'asn1/ldap')
-rw-r--r-- | asn1/ldap/Makefile | 16 |
1 files changed, 16 insertions, 0 deletions
diff --git a/asn1/ldap/Makefile b/asn1/ldap/Makefile new file mode 100644 index 0000000000..5ca5a3667c --- /dev/null +++ b/asn1/ldap/Makefile @@ -0,0 +1,16 @@ +# $Id$ + +DISSECTOR_FILES=packet-ldap.c packet-ldap.h + +all: generate_dissector + +generate_dissector: $(DISSECTOR_FILES) + +$(DISSECTOR_FILES): ../../tools/asn2eth.py Lightweight-Directory-Access-Protocol-V3.asn packet-ldap-template.c packet-ldap-template.h ldap.cnf $(ASN_EXPORTS) + python ../../tools/asn2eth.py -X -b -e -p ldap -c ldap.cnf -s packet-ldap-template Lightweight-Directory-Access-Protocol-V3.asn + +clean: + rm -f parsetab.py $(DISSECTOR_FILES) + +copy_files: generate_dissector + cp $(DISSECTOR_FILES) ../../epan/dissectors |