aboutsummaryrefslogtreecommitdiffstats
path: root/epan
diff options
context:
space:
mode:
authoretxrab <etxrab@f5534014-38df-0310-8fa8-9805f1628bb7>2011-10-25 19:10:34 +0000
committeretxrab <etxrab@f5534014-38df-0310-8fa8-9805f1628bb7>2011-10-25 19:10:34 +0000
commitffbc8ad65ffa7340f02f03e80806ea5199f2ed7e (patch)
tree49d997749d83f3cc4b3f5afc20aa2b92db572ea1 /epan
parentb281289d662e20ee13d4b75c15dddb14a7ab9e53 (diff)
Make Custom.nmake usable.
(Should it be Custom_make.common or something like that) git-svn-id: http://anonsvn.wireshark.org/wireshark/trunk@39574 f5534014-38df-0310-8fa8-9805f1628bb7
Diffstat (limited to 'epan')
-rw-r--r--epan/dissectors/Custom.nmake4
-rw-r--r--epan/dissectors/Makefile.common8
2 files changed, 7 insertions, 5 deletions
diff --git a/epan/dissectors/Custom.nmake b/epan/dissectors/Custom.nmake
index 6fcd1eeec1..162df0efb3 100644
--- a/epan/dissectors/Custom.nmake
+++ b/epan/dissectors/Custom.nmake
@@ -3,6 +3,6 @@
## Here you can add custom dissectors
#
-CUSTOM_DISSECTOR_SRC = \
+CUSTOM_DISSECTOR_SRC =
-CUSTOM_HEADER_FILES = \
+CUSTOM_HEADER_FILES =
diff --git a/epan/dissectors/Makefile.common b/epan/dissectors/Makefile.common
index 4c9746948e..2b9490fb03 100644
--- a/epan/dissectors/Makefile.common
+++ b/epan/dissectors/Makefile.common
@@ -23,6 +23,8 @@
# along with this program; if not, write to the Free Software
# Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
+include Custom.nmake
+
# "BUILT_SOURCES" are built before any "make all" or "make check" targets.
BUILT_C_FILES = \
register.c
@@ -1048,7 +1050,8 @@ DISSECTOR_SRC = \
packet-zebra.c \
packet-zep.c \
packet-ziop.c \
- packet-zrtp.c
+ packet-zrtp.c \
+ $(CUSTOM_DISSECTOR_SRC)
#
# Headers for dissectors.
@@ -1433,5 +1436,4 @@ ALL_DISSECTORS_SRC = \
$(PIDL_DISSECTOR_SRC) \
$(DIRTY_PIDL_DISSECTOR_SRC) \
$(ASN1_DISSECTOR_SRC) \
- $(DIRTY_ASN1_DISSECTOR_SRC) \
- $(CUSTOM_DISSECTOR_SRC)
+ $(DIRTY_ASN1_DISSECTOR_SRC)