aboutsummaryrefslogtreecommitdiffstats
path: root/Makefile.common
diff options
context:
space:
mode:
authorGuy Harris <guy@alum.mit.edu>2014-07-04 00:24:02 -0700
committerGuy Harris <guy@alum.mit.edu>2014-07-04 07:25:26 +0000
commit9e6487f24751d1c1a047ee82e158077ac67c9c68 (patch)
tree3cc4a8524062948f4951914dc9af489e0d7c4572 /Makefile.common
parentc5643a3d257909ed3e8752cd729b9192ae719683 (diff)
Move utility routines for capturing into a libcaputils static library.
Some of those routines are used only in dumpcap; others are used in TShark and Wireshark as well. Change-Id: I9d92483f2fcff57a7d8b6bf6bdf2870505d19fb7 Reviewed-on: https://code.wireshark.org/review/2841 Reviewed-by: Guy Harris <guy@alum.mit.edu>
Diffstat (limited to 'Makefile.common')
-rw-r--r--Makefile.common15
1 files changed, 3 insertions, 12 deletions
diff --git a/Makefile.common b/Makefile.common
index 72f7ee5988..678b30a10e 100644
--- a/Makefile.common
+++ b/Makefile.common
@@ -41,8 +41,6 @@ GENERATED_FILES = $(GENERATED_C_FILES) $(GENERATED_HEADER_FILES)
# sources common for wireshark, tshark, and rawshark
SHARK_COMMON_SRC = \
- $(PLATFORM_PCAP_SRC) \
- capture-pcap-util.c \
cfile.c \
frame_tvbuff.c \
sync_pipe_write.c \
@@ -50,8 +48,6 @@ SHARK_COMMON_SRC = \
# corresponding headers
SHARK_COMMON_INCLUDES = \
- capture-pcap-util.h \
- capture-pcap-util-int.h \
cfile.h \
color.h \
file.h \
@@ -71,8 +67,7 @@ WIRESHARK_COMMON_SRC = \
file.c \
fileset.c \
iface_monitor.c \
- summary.c \
- ws80211_utils.c
+ summary.c
# corresponding headers
WIRESHARK_COMMON_INCLUDES = \
@@ -85,8 +80,7 @@ WIRESHARK_COMMON_INCLUDES = \
iface_monitor.h \
log.h \
summary.h \
- sync_pipe.h \
- ws80211_utils.h
+ sync_pipe.h
# tshark specifics
tshark_SOURCES = \
@@ -150,17 +144,14 @@ randpkt_SOURCES = \
# dumpcap specifics
dumpcap_SOURCES = \
- $(PLATFORM_PCAP_SRC) \
capture_opts.c \
- capture-pcap-util.c \
capture_stop_conditions.c \
conditions.c \
dumpcap.c \
pcapio.c \
ringbuffer.c \
sync_pipe_write.c \
- version_info.c \
- ws80211_utils.c
+ version_info.c
# corresponding headers
dumpcap_INCLUDES = \