aboutsummaryrefslogtreecommitdiffstats
path: root/Makefile.common
diff options
context:
space:
mode:
authorMichael Mann <mmann78@netscape.net>2014-01-08 04:35:28 +0000
committerMichael Mann <mmann78@netscape.net>2014-01-08 04:35:28 +0000
commitbf284da2eef917f8bf55be3aad15bb296072bb77 (patch)
treefbf66f67fb32e3d49466867e62a1c07a03300283 /Makefile.common
parenta6ed8a1de97a70668a8feaeade2a11cc4c93185f (diff)
TFShark (Terminal Fileshark) v.001. Bug 9607 (https://bugs.wireshark.org/bugzilla/show_bug.cgi?id=9607)
This is a VERY PRELIMINARY version of tfshark. It's an attempt to jumpstart FileShark and its architecture. Right now it's mostly just a very stripped down version of tshark with all of the necessary build modifications (including now building filetap library since tfshark depends on it) This code has helped me identify what I believe to be all of the necessary layers for a complete fileshark architecture. And those layers will slowly be added in time (patches always welcome!). svn path=/trunk/; revision=54646
Diffstat (limited to 'Makefile.common')
-rw-r--r--Makefile.common10
1 files changed, 9 insertions, 1 deletions
diff --git a/Makefile.common b/Makefile.common
index fe6e2f456d..b6706c04d7 100644
--- a/Makefile.common
+++ b/Makefile.common
@@ -45,7 +45,6 @@ GENERATED_FILES = $(GENERATED_C_FILES) $(GENERATED_HEADER_FILES)
SHARK_COMMON_SRC = \
$(PLATFORM_SRC) \
capture-pcap-util.c \
- cfile.c \
cfutils.c \
clopts_common.c \
frame_tvbuff.c \
@@ -91,6 +90,7 @@ WIRESHARK_COMMON_SRC = \
capture.c \
capture_info.c \
capture_opts.c \
+ cfile.c \
color_filters.c \
file.c \
fileset.c \
@@ -122,12 +122,20 @@ WIRESHARK_COMMON_INCLUDES = \
tshark_SOURCES = \
$(SHARK_COMMON_SRC) \
$(SHARK_COMMON_CAPTURE_SRC) \
+ cfile.c \
capture_opts.c \
tshark.c
+# tfshark specifics
+tfshark_SOURCES = \
+ $(SHARK_COMMON_SRC) \
+ cfile.c \
+ tfshark.c
+
# rawshark specifics
rawshark_SOURCES = \
$(SHARK_COMMON_SRC) \
+ cfile.c \
rawshark.c
# text2pcap specifics