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