1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243
|
# Makefile.common
# Contains the stuff from Makefile.am and Makefile.nmake that is
# a) common to both files and
# b) portable between both files
#
# $Id: Makefile.common 19442 2006-10-06 17:39:39Z gerald $
#
# Wireshark - Network traffic analyzer
# By Gerald Combs <gerald@wireshark.org>
# Copyright 1998 Gerald Combs
#
# This program is free software; you can redistribute it and/or
# modify it under the terms of the GNU General Public License
# as published by the Free Software Foundation; either version 2
# of the License, or (at your option) any later version.
#
# This program is distributed in the hope that it will be useful,
# but WITHOUT ANY WARRANTY; without even the implied warranty of
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
# GNU General Public License for more details.
#
# You should have received a copy of the GNU General Public License
# along with this program; if not, write to the Free Software
# Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
# "BUILT_SOURCES" are built before any "make all" or "make check" targets.
BUILT_HEADER_FILES = \
svnversion.h
BUILT_C_FILES = \
ps.c
BUILT_SOURCES = $(BUILT_C_FILES) $(BUILT_HEADER_FILES)
# Header files generated from source files.
GENERATED_HEADER_FILES = \
$(BUILT_HEADER_FILES)
# C source files generated from source files.
GENERATED_C_FILES = \
$(BUILT_C_FILES) \
tshark-tap-register.c
# All the generated files.
GENERATED_FILES = $(GENERATED_C_FILES) $(GENERATED_HEADER_FILES)
# sources common for wireshark and tshark
WIRESHARK_COMMON_SRC = \
$(PLATFORM_SRC) \
capture_errs.c \
capture-pcap-util.c \
capture_stop_conditions.c \
capture_ui_utils.c \
cfile.c \
clopts_common.c \
conditions.c \
disabled_protos.c \
packet-range.c \
print.c \
ps.c \
pcapio.c \
ringbuffer.c \
timestats.c \
util.c \
version_info.c
# corresponding headers
WIRESHARK_COMMON_INCLUDES = \
svnversion.h \
capture_errs.h \
capture-pcap-util.h \
capture-pcap-util-int.h \
capture_stop_conditions.h \
capture_ui_utils.h \
cfile.h \
clopts_common.h \
cmdarg_err.h \
color.h \
conditions.h \
disabled_protos.h \
file.h \
fileset.h \
isprint.h \
packet-range.h \
pcapio.h \
print.h \
ps.h \
register.h \
ringbuffer.h \
tempfile.h \
timestats.h \
util.h \
version_info.h
# sources for TShark taps
TSHARK_TAP_SRC = \
tap-afpstat.c \
tap-ansi_astat.c \
tap-bootpstat.c \
tap-camelcounter.c \
tap-camelsrt.c \
tap-dcerpcstat.c \
tap-funnel.c \
tap-gsm_astat.c \
tap-h225counter.c \
tap-h225rassrt.c \
tap-httpstat.c \
tap-iostat.c \
tap-iousers.c \
tap-mgcpstat.c \
tap-protocolinfo.c \
tap-protohierstat.c \
tap-rpcstat.c \
tap-rpcprogs.c \
tap-sctpchunkstat.c \
tap-sipstat.c \
tap-smbsids.c \
tap-smbstat.c \
tap-stats_tree.c \
tap-wspstat.c
# helpers already available on some platforms (and on others not)
EXTRA_wireshark_SOURCES = \
getopt.c \
mkstemp.c \
strerror.c \
strcasecmp.c \
strncasecmp.c \
strptime.c
# corresponding headers
EXTRA_wireshark_INCLUDES = \
getopt.h \
mkstemp.h \
strerror.h \
strptime.h
# wireshark specifics
wireshark_SOURCES = \
$(WIRESHARK_COMMON_SRC) \
airpcap_loader.c \
alert_box.c \
capture.c \
capture_info.c \
capture_opts.c \
capture_sync.c \
color_filters.c \
file.c \
fileset.c \
filters.c \
g711.c \
merge.c \
proto_hier_stats.c \
sync_pipe_write.c \
summary.c \
tempfile.c
# corresponding headers
wireshark_INCLUDES = \
airpcap.h \
airpcap_loader.h \
alert_box.h \
capture.h \
capture_info.h \
capture_loop.h \
capture_opts.h \
capture_sync.h \
color_filters.h \
filters.h \
g711.h \
globals.h \
log.h \
main_window.h \
menu.h \
merge.h \
progress_dlg.h \
proto_hier_stats.h \
simple_dialog.h \
stat_menu.h \
statusbar.h \
summary.h \
sync_pipe.h \
tap_dfilter_dlg.h \
ui_util.h
# tshark specifics
tshark_SOURCES = \
$(WIRESHARK_COMMON_SRC) \
$(TSHARK_TAP_SRC) \
capture_opts.c \
capture_loop.c \
tempfile.c \
tshark-tap-register.c \
tshark.c
# text2pcap specifics
text2pcap_SOURCES = \
text2pcap.c \
text2pcap-scanner.l
# mergecap specifics
mergecap_SOURCES = \
mergecap.c \
merge.c \
svnversion.h
# editcap specifics
editcap_SOURCES = \
editcap.c \
epan/crypt-md5.c
# dftest specifics
dftest_SOURCES = \
dftest.c \
util.c
# randpkt specifics
randpkt_SOURCES = \
randpkt.c
# dumpcap specifics
dumpcap_SOURCES = \
$(PLATFORM_SRC) \
capture_opts.c \
capture_loop.c \
capture-pcap-util.c \
capture_stop_conditions.c \
clopts_common.c \
conditions.c \
dumpcap.c \
pcapio.c \
ringbuffer.c \
sync_pipe_write.c \
tempfile.c \
version_info.c \
epan/unicode-utils.c
# this target needed for distribution only
noinst_HEADERS = \
$(WIRESHARK_COMMON_INCLUDES) \
$(wireshark_INCLUDES) \
$(EXTRA_wireshark_INCLUDES)
|