aboutsummaryrefslogtreecommitdiffstats
path: root/epan/dissectors/Makefile.common
diff options
context:
space:
mode:
authorAnders Broman <anders.broman@ericsson.com>2008-11-15 15:44:56 +0000
committerAnders Broman <anders.broman@ericsson.com>2008-11-15 15:44:56 +0000
commit0b297c0215580793ce9d53cdbfa075465b5b8243 (patch)
tree20e6c9435c83136093aa5a40b051c754efc9f543 /epan/dissectors/Makefile.common
parent67986a1a5ffb9f3edb8243aceacd4be33ff9292c (diff)
Make it easy to add custom dissectors.
svn path=/trunk/; revision=26783
Diffstat (limited to 'epan/dissectors/Makefile.common')
-rw-r--r--epan/dissectors/Makefile.common6
1 files changed, 4 insertions, 2 deletions
diff --git a/epan/dissectors/Makefile.common b/epan/dissectors/Makefile.common
index ea70cdf590..81ab73a244 100644
--- a/epan/dissectors/Makefile.common
+++ b/epan/dissectors/Makefile.common
@@ -1163,7 +1163,8 @@ DISSECTOR_INCLUDES = \
packet-ypserv.h \
packet-ypxfr.h \
rpc_defrag.h \
- $(GENERATED_HEADER_FILES)
+ $(GENERATED_HEADER_FILES) \
+ $(CUSTOM_HEADER_FILES)
# IPMI sub-parsers for each network function code
IPMI_SUBPARSERS = \
@@ -1195,4 +1196,5 @@ ALL_DISSECTORS_SRC = \
$(PIDL_DISSECTOR_SRC) \
$(DIRTY_PIDL_DISSECTOR_SRC) \
$(ASN1_DISSECTOR_SRC) \
- $(DIRTY_ASN1_DISSECTOR_SRC)
+ $(DIRTY_ASN1_DISSECTOR_SRC) \
+ $(CUSTOM_DISSECTOR_SRC)