Use Unicode for all native Win32 calls. Unicode Windows applications
[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 # Ethereal - Network traffic analyzer
9 # By Gerald Combs <gerald@ethereal.com>
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         tethereal-tap-register.c
43
44 # All the generated files.
45 GENERATED_FILES = $(GENERATED_C_FILES) $(GENERATED_HEADER_FILES)
46
47 # sources common for ethereal and tethereal
48 ETHEREAL_COMMON_SRC =   \
49         $(PLATFORM_SRC) \
50         capture_errs.c  \
51         capture-pcap-util.c     \
52         capture_stop_conditions.c       \
53         capture_ui_utils.c      \
54         cfile.c \
55         clopts_common.c \
56         conditions.c    \
57         disabled_protos.c       \
58         packet-range.c  \
59         print.c \
60         ps.c    \
61         pcapio.c        \
62         ringbuffer.c    \
63         timestats.c     \
64         util.c  \
65         version_info.c
66
67 # corresponding headers
68 ETHEREAL_COMMON_INCLUDES =      \
69         svnversion.h            \
70         capture_errs.h  \
71         capture-pcap-util.h     \
72         capture-pcap-util-int.h \
73         capture_stop_conditions.h       \
74         capture_ui_utils.h      \
75         cfile.h \
76         clopts_common.h \
77         cmdarg_err.h    \
78         color.h \
79         conditions.h    \
80         disabled_protos.h       \
81         file.h  \
82         fileset.h       \
83         isprint.h       \
84         packet-range.h  \
85         pcapio.h        \
86         print.h \
87         ps.h    \
88         register.h      \
89         ringbuffer.h    \
90         tempfile.h      \
91         timestats.h     \
92         util.h  \
93         version_info.h
94
95 # sources for Tethereal taps
96 TETHEREAL_TAP_SRC =     \
97         tap-afpstat.c   \
98         tap-ansi_astat.c        \
99         tap-bootpstat.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-protocolinfo.c      \
110         tap-protohierstat.c     \
111         tap-rpcstat.c   \
112         tap-rpcprogs.c  \
113         tap-sctpchunkstat.c     \
114         tap-sipstat.c \
115         tap-smbsids.c   \
116         tap-smbstat.c   \
117         tap-stats_tree.c        \
118         tap-wspstat.c
119
120 # helpers already available on some platforms (and on others not)
121 EXTRA_ethereal_SOURCES =        \
122         getopt.c        \
123         mkstemp.c       \
124         snprintf.c      \
125         strerror.c      \
126         strcasecmp.c    \
127         strncasecmp.c   \
128         strptime.c
129
130 # corresponding headers
131 EXTRA_ethereal_INCLUDES =       \
132         getopt.h        \
133         mkstemp.h       \
134         snprintf.h      \
135         snprintf-imp.h  \
136         strerror.h      \
137         strptime.h
138
139 # ethereal specifics
140 ethereal_SOURCES =      \
141         $(ETHEREAL_COMMON_SRC)  \
142         alert_box.c     \
143         capture.c       \
144         capture_info.c  \
145         capture_opts.c \
146         capture_sync.c  \
147         color_filters.c \
148         file.c  \
149         fileset.c       \
150         filters.c       \
151         g711.c \
152         merge.c \
153         proto_hier_stats.c      \
154         summary.c       \
155         tempfile.c
156
157 # corresponding headers
158 ethereal_INCLUDES =     \
159         alert_box.h     \
160         capture.h       \
161         capture_info.h  \
162         capture_loop.h  \
163         capture_opts.h  \
164         capture_sync.h  \
165         color_filters.h \
166         filters.h       \
167         g711.h  \
168         globals.h       \
169         log.h   \
170         main_window.h   \
171         menu.h  \
172         merge.h \
173         progress_dlg.h  \
174         proto_hier_stats.h      \
175         simple_dialog.h \
176         stat_menu.h     \
177         statusbar.h     \
178         summary.h       \
179         tap_dfilter_dlg.h       \
180         ui_util.h
181
182 # tethereal specifics
183 tethereal_SOURCES =     \
184         $(ETHEREAL_COMMON_SRC)  \
185         $(TETHEREAL_TAP_SRC)    \
186         capture_opts.c          \
187         capture_loop.c          \
188         tempfile.c              \
189         tethereal-tap-register.c        \
190         tethereal.c
191
192 # text2pcap specifics
193 text2pcap_SOURCES = \
194         text2pcap.c \
195         text2pcap-scanner.l
196
197 # mergecap specifics
198 mergecap_SOURCES = \
199         mergecap.c \
200         merge.c \
201         svnversion.h
202
203 # editcap specifics
204 editcap_SOURCES = \
205         editcap.c
206
207 # dftest specifics
208 dftest_SOURCES =        \
209         dftest.c        \
210         util.c
211
212 # randpkt specifics
213 randpkt_SOURCES = \
214         randpkt.c
215
216 # dumpcap specifics
217 dumpcap_SOURCES =       \
218         $(PLATFORM_SRC) \
219         capture_opts.c \
220         capture_loop.c  \
221         capture-pcap-util.c     \
222         capture_stop_conditions.c       \
223         clopts_common.c \
224         conditions.c    \
225         dumpcap.c       \
226         pcapio.c        \
227         ringbuffer.c    \
228         tempfile.c      \
229         version_info.c
230
231
232 # this target needed for distribution only
233 noinst_HEADERS =        \
234         $(ETHEREAL_COMMON_INCLUDES) \
235         $(ethereal_INCLUDES) \
236         $(EXTRA_ethereal_INCLUDES)