aboutsummaryrefslogtreecommitdiffstats
path: root/Makefile.common
blob: 8268e30d0f985f11efabb744bc55f4d6309aa366 (plain)
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
# Makefile.common
#     Contains the stuff from Makefile.am and Makefile.nmake that is
#     a) common to both files and
#     b) portable between both files
#
# 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., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.

# "BUILT_SOURCES" are built before any "make all" or "make check" targets.
BUILT_HEADER_FILES =	\
	version.h

BUILT_C_FILES =

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 =

# All the generated files.
GENERATED_FILES = $(GENERATED_C_FILES) $(GENERATED_HEADER_FILES)

# sources common for wireshark, tshark, and rawshark
SHARK_COMMON_SRC =	\
	cfile.c			\
	frame_tvbuff.c		\
	sync_pipe_write.c	\
	extcap.c		\
	extcap_parser.c

# corresponding headers
SHARK_COMMON_INCLUDES =	\
	cfile.h			\
	color.h			\
	extcap.h		\
	extcap_parser.h		\
	file.h			\
	fileset.h		\
	frame_tvbuff.h		\
	register.h		\
	ws_symbol_export.h

# wireshark specifics
WIRESHARK_COMMON_SRC =	\
	$(SHARK_COMMON_SRC)	\
	capture_info.c	\
	capture_opts.c	\
	color_filters.c	\
	file.c		\
	fileset.c	\
	summary.c

# corresponding headers
WIRESHARK_COMMON_INCLUDES =	\
	capture_info.h	\
	capture_opts.h	\
	color_filters.h	\
	globals.h	\
	log.h		\
	summary.h	\
	sync_pipe.h

# tshark specifics
tshark_SOURCES =	\
	$(SHARK_COMMON_SRC)	\
	capture_opts.c		\
	tshark.c

# tfshark specifics
tfshark_SOURCES =	\
	$(SHARK_COMMON_SRC)	\
	tfshark.c

# rawshark specifics
rawshark_SOURCES =	\
	$(SHARK_COMMON_SRC)	\
	rawshark.c

# text2pcap specifics
text2pcap_SOURCES = \
	pcapio.c		\
	text2pcap.c		\
	text2pcap-scanner.l

text2pcap_INCLUDES = \
	pcapio.h \
	text2pcap.h

# mergecap specifics
mergecap_SOURCES = \
	mergecap.c

# editcap specifics
editcap_SOURCES = \
	editcap.c

# reordercap specifics
reordercap_SOURCES = \
	reordercap.c

# capinfos specifics
capinfos_SOURCES = \
	capinfos.c

# captype specifics
captype_SOURCES = \
	captype.c

# dftest specifics
dftest_SOURCES =	\
	dftest.c

# echld specifics
echld_test_SOURCES =	\
	echld_test.c	\
	capture_opts.c	\
	capture_stop_conditions.c	\
	cfile.c		\
	conditions.c	\
	pcapio.c	\
	ringbuffer.c	\
	sync_pipe_write.c

# randpkt specifics
randpkt_SOURCES = \
	randpkt.c

# dumpcap specifics
dumpcap_SOURCES =	\
	capture_opts.c	\
	capture_stop_conditions.c	\
	conditions.c	\
	dumpcap.c	\
	pcapio.c	\
	ringbuffer.c	\
	sync_pipe_write.c

# corresponding headers
dumpcap_INCLUDES = \
	capture_stop_conditions.h	\
	conditions.h	\
	pcapio.h	\
	ringbuffer.h

# this target needed for distribution only
noinst_HEADERS =	\
	$(SHARK_COMMON_INCLUDES) \
	$(WIRESHARK_COMMON_INCLUDES) \
	$(dumpcap_INCLUDES)