aboutsummaryrefslogtreecommitdiffstats
path: root/asn1/logotypecertextn
diff options
context:
space:
mode:
authormorriss <morriss@f5534014-38df-0310-8fa8-9805f1628bb7>2011-10-10 02:31:11 +0000
committermorriss <morriss@f5534014-38df-0310-8fa8-9805f1628bb7>2011-10-10 02:31:11 +0000
commitd7cfbaecd0994295355ba81ce3f5e4d97f5acf64 (patch)
tree0c80b13c452cecb6bab14694c1bebf8e49a740a5 /asn1/logotypecertextn
parent209fe2116ddb3f143824074808ff95b28ed077f9 (diff)
Build the ASN.1 dissectors directly into epan/dissectors (rather than building
them and then copying them over). The "all" target to builds these dissectors now (instead of "generate_files" and/or "copy_files"). asn2wrs's "-O" option now means "the dissector goes in this directory" (rather than "all output goes in this directory"); it also means that the "-s" (single output file) option is now required. Fix things up so that it's possible to build all of the ASN.1 dissectors in one shot. Fix building of conformance files when doing out-of-source-tree builds. Unfortunately "make all" in the asn1 directory always builds something--I think because of circular depedencies. git-svn-id: http://anonsvn.wireshark.org/wireshark/trunk@39333 f5534014-38df-0310-8fa8-9805f1628bb7
Diffstat (limited to 'asn1/logotypecertextn')
-rw-r--r--asn1/logotypecertextn/Makefile.common10
1 files changed, 3 insertions, 7 deletions
diff --git a/asn1/logotypecertextn/Makefile.common b/asn1/logotypecertextn/Makefile.common
index f712e85eec..7bebb2ad91 100644
--- a/asn1/logotypecertextn/Makefile.common
+++ b/asn1/logotypecertextn/Makefile.common
@@ -22,10 +22,6 @@
PROTOCOL_NAME=logotypecertextn
-DISSECTOR_FILES=packet-$(PROTOCOL_NAME).c \
- packet-$(PROTOCOL_NAME).h
-
-
EXT_ASN_FILE_LIST =
ASN_FILE_LIST = \
@@ -47,8 +43,8 @@ SRC_FILES = \
A2W_FLAGS= -b
EXTRA_CNF= \
- ../x509af/x509af-exp.cnf
+ $(builddir)/../x509af/x509af-exp.cnf
-../x509af/x509af-exp.cnf:
- (cd ../x509af && $(MAKE_CNF_EXPORT))
+$(builddir)/../x509af/x509af-exp.cnf:
+ (cd $(builddir)/../x509af && $(MAKE_CNF_EXPORT))