The default capture buffer size is, in fact, *nominally* 1MB; however,
[obnox/wireshark/wip.git] / Makefile.nmake
1 ## Makefile for building wireshark.exe with Microsoft C and nmake
2 ## Use: $(MAKE) /$(MAKEFLAGS) -f makefile.nmake
3 #
4 # $Id$
5
6 # We "Deploy using XCopy," which is described at
7 # http://msdn.microsoft.com/en-us/library/ms235291.aspx
8
9 include config.nmake
10 include <win32.mak>
11
12 ############### no need to modify below this line #########
13
14 CC = cl
15 LINK= link
16 BSCMAKE= bscmake
17
18 WIN_SETUP=tools/$(WIRESHARK_TARGET_PLATFORM)-setup.sh
19
20 # -------------
21 # Checking  that the Wireshark Libraries are up-to-date:
22 #  1. win??-setup.sh --checktag is invoked during nmake "preprocessing".
23 #     If an error status is returned (ie: the libraries are not up-to-date)
24 #      then CHECK_TAG is defined as a non-null string.
25 #  2. The $(LIBS_CHECK) target is invoked during the nmake:
26 #     If $(CHECK_TAG) is non-null, then a "libraries not up to date" exit will occur.
27 #     If $(CHECK_TAG) is null, but either config.nmake or Makefile.nmake
28 #      are newer than the $(LIBS_CHECK) target, then a detailed verification
29 #      as to the required library package files will be made.
30 #    
31 LIBS_CHECK=_libs_check_
32 !IF [$(SH) $(WIN_SETUP) --checktag "$(WIRESHARK_LIBS)"] != 0
33 CHECK_TAG=_check_tag_
34 !ELSE
35 CHECK_TAG=
36 !ENDIF
37 # -------------
38
39 LDFLAGS = /NOLOGO /INCREMENTAL:no $(LOCAL_LDFLAGS)
40
41 # We use GENERATED_CFLAGS to get around flex's non-LLP64-compliant output
42 GENERATED_CFLAGS=-DHAVE_CONFIG_H $(LOCAL_CFLAGS) $(GLIB_CFLAGS) /I. /Iwiretap \
43         $(ZLIB_CFLAGS) /I$(PCAP_DIR)\include \
44         $(AIRPCAP_CFLAGS) \
45         $(C_ARES_CFLAGS) $(ADNS_CFLAGS) $(PCRE_CFLAGS) $(GNUTLS_CFLAGS) \
46         $(LUA_CFLAGS) $(SMI_CFLAGS) $(GEOIP_CFLAGS) \
47         -D_U_="" -D_NEED_VAR_IMPORT_
48 CFLAGS=-WX $(GENERATED_CFLAGS)
49
50 CVARSDLL=-DWIN32 -DNULL=0 -D_MT -D_DLL
51
52 .c.obj::
53         $(CC) $(CVARSDLL) $(CFLAGS) -Fd.\ -c $<
54
55 PLATFORM_SRC = capture-wpcap.c capture_wpcap_packet.c
56
57 WTAP_PLUGIN_SOURCES = \
58        epan/plugins.c \
59        epan/report_err.c \
60        epan/filesystem.c
61
62 include Makefile.common
63
64 wireshark_OBJECTS = $(wireshark_SOURCES:.c=.obj)
65 tshark_OBJECTS = $(tshark_SOURCES:.c=.obj)
66 rawshark_OBJECTS = $(rawshark_SOURCES:.c=.obj)
67 ###text2pcap_OBJECTS = $(text2pcap_SOURCES:.c=.obj)
68 ###mergecap_OBJECTS = $(mergecap_SOURCES:.c=.obj)
69 editcap_OBJECTS = $(editcap_SOURCES:.c=.obj)
70 capinfos_OBJECTS = $(capinfos_SOURCES:.c=.obj)
71 dftest_OBJECTS = $(dftest_SOURCES:.c=.obj)
72 dumpcap_OBJECTS = $(dumpcap_SOURCES:.c=.obj)
73 randpkt_OBJECTS = $(randpkt_SOURCES:.c=.obj)
74
75 EXTRA_OBJECTS = \
76         wsgetopt.obj    \
77         inet_ntop.obj   \
78         inet_pton.obj   \
79         strptime.obj
80
81 wireshark_LIBS= wiretap\wiretap-$(WTAP_VERSION).lib \
82         wsock32.lib user32.lib shell32.lib comctl32.lib \
83         $(HHC_LIBS) \
84         wsutil\libwsutil.lib \
85         $(GNUTLS_LIBS) \
86 !IFDEF ENABLE_LIBWIRESHARK
87         epan\libwireshark.lib \
88 !ELSE
89         epan\dissectors\dissectors.lib \
90         epan\wireshark.lib \
91         epan\crypt\airpdcap.lib \
92         epan\dfilter\dfilter.lib \
93         epan\ftypes\ftypes.lib \
94         $(C_ARES_LIBS) \
95         $(ADNS_LIBS) \
96         $(PCRE_LIBS) \
97         $(ZLIB_LIBS)
98 !ENDIF
99
100 tshark_LIBS= wiretap\wiretap-$(WTAP_VERSION).lib \
101         wsock32.lib user32.lib \
102         $(GLIB_LIBS) \
103         wsutil\libwsutil.lib \
104         $(GNUTLS_LIBS) \
105 !IFDEF ENABLE_LIBWIRESHARK
106         epan\libwireshark.lib \
107 !ELSE
108         epan\dissectors\dissectors.lib \
109         epan\wireshark.lib \
110         epan\crypt\airpdcap.lib \
111         epan\dfilter\dfilter.lib \
112         epan\ftypes\ftypes.lib \
113         $(C_ARES_LIBS) \
114         $(ADNS_LIBS) \
115         $(PCRE_LIBS) \
116         $(ZLIB_LIBS)
117 !ENDIF
118
119 rawshark_LIBS= wiretap\wiretap-$(WTAP_VERSION).lib \
120         wsock32.lib user32.lib \
121         $(GLIB_LIBS) \
122         wsutil\libwsutil.lib \
123         $(GNUTLS_LIBS) \
124 !IFDEF ENABLE_LIBWIRESHARK
125         epan\libwireshark.lib \
126 !ELSE
127         epan\dissectors\dissectors.lib \
128         epan\wireshark.lib \
129         epan\crypt\airpdcap.lib \
130         epan\dfilter\dfilter.lib \
131         epan\ftypes\ftypes.lib \
132         $(C_ARES_LIBS) \
133         $(ADNS_LIBS) \
134         $(PCRE_LIBS) \
135         $(ZLIB_LIBS)
136 !ENDIF
137
138 capinfos_LIBS= wiretap\wiretap-$(WTAP_VERSION).lib \
139         wsock32.lib user32.lib shell32.lib \
140         wsutil\libwsutil.lib \
141         $(GLIB_LIBS) \
142         $(GCRYPT_LIBS)
143
144 editcap_LIBS= wiretap\wiretap-$(WTAP_VERSION).lib \
145         wsock32.lib user32.lib shell32.lib \
146         wsutil\libwsutil.lib \
147         $(GLIB_LIBS)
148
149 mergecap_LIBS= wiretap\wiretap-$(WTAP_VERSION).lib \
150         wsock32.lib user32.lib \
151         wsutil\libwsutil.lib \
152         $(GLIB_LIBS)
153
154 text2pcap_LIBS= wiretap\wiretap-$(WTAP_VERSION).lib \
155         wsock32.lib user32.lib \
156         wsutil\libwsutil.lib \
157         $(GLIB_LIBS)
158
159 dumpcap_LIBS= wiretap\wiretap-$(WTAP_VERSION).lib \
160         wsock32.lib user32.lib \
161         wsutil\libwsutil.lib \
162         $(GLIB_LIBS) \
163         $(GTHREAD_LIBS) \
164         $(GNUTLS_LIBS)
165
166 dftest_LIBS=  wiretap\wiretap-$(WTAP_VERSION).lib \
167         wsock32.lib user32.lib \
168         $(GLIB_LIBS) \
169         wsutil\libwsutil.lib \
170         $(GNUTLS_LIBS) \
171 !IFDEF ENABLE_LIBWIRESHARK
172         epan\libwireshark.lib \
173 !ELSE
174         epan\dissectors\dissectors.lib \
175         epan\wireshark.lib \
176         epan\dfilter\dfilter.lib epan\ftypes\ftypes.lib \
177         $(C_ARES_LIBS) \
178         $(ADNS_LIBS) \
179         $(PCRE_LIBS) \
180         $(ZLIB_LIBS) \
181         $(SMI_LIBS)
182 !ENDIF
183
184 randpkt_LIBS= wiretap\wiretap-$(WTAP_VERSION).lib \
185         user32.lib \
186         wsutil\libwsutil.lib \
187         $(GLIB_LIBS)
188
189 EXECUTABLES=wireshark.exe tshark.exe rawshark.exe \
190         capinfos.exe editcap.exe mergecap.exe text2pcap.exe randpkt.exe dumpcap.exe
191
192 RESOURCES=image\wireshark.res image\libwireshark.res image\tshark.res \
193         image\capinfos.res image\editcap.res image\mergecap.res \
194         image\text2pcap.res image\wiretap.res image\dumpcap.res \
195         image\rawshark.res image\libwsutil.res
196
197
198 all: $(LIBS_CHECK) config.h tools image codecs $(C_ARES_DLL) $(ADNS_DLL) $(ZLIB_DLL) wsutil wiretap epan $(EXECUTABLES) $(RESOURCES) doc help install-all
199
200 !IFDEF MAKENSIS
201 packaging: all
202         cd packaging
203         cd nsis
204         $(MAKE) /$(MAKEFLAGS) -f makefile.nmake
205         cd ..
206         cd ..
207 !ELSE
208 packaging: _FORCE_
209         @echo \? NSIS not available (MAKENSIS not defined in config.nmake)
210         @echo.
211         @exit 1
212 !ENDIF
213
214 packaging_u3: all
215         cd packaging
216         cd u3
217         cd win32
218         $(MAKE) /$(MAKEFLAGS) -f makefile.nmake
219         cd ..
220         cd ..
221         cd ..
222
223 packaging_papps: all
224         cd packaging
225         cd portableapps
226         cd win32
227         $(MAKE) /$(MAKEFLAGS) -f makefile.nmake
228         cd ..
229         cd ..
230         cd ..
231
232 # use (info-)zip from cygwin to pack things
233 packaging_zip: all
234 !IFDEF MSVCR_DLL
235         xcopy "$(MSVCR_DLL)" $(INSTALL_DIR)
236 !ENDIF
237 !IFDEF VCREDIST_EXE
238         @echo Including vcredist_$(TARGET_MACHINE).exe -- your recipient may need to run it!
239         xcopy "$(VCREDIST_EXE)" $(INSTALL_DIR)
240 !ENDIF
241         rm -f wireshark.zip
242         zip -r -9 wireshark.zip $(INSTALL_DIR)/
243
244 wireshark.bsc: *.sbr epan\*.sbr epan\dfilter\*.sbr epan\ftypes\*.sbr epan\wslua\*.sbr epan\dissectors\*.sbr gtk\*.sbr wiretap\*.sbr
245         rm -f $@
246         $(BSCMAKE) @<<
247                 /o $@ $?
248 <<
249         xcopy $@ $(INSTALL_DIR)\ /d
250
251 $(RESOURCES): image
252
253 wiretap\wiretap-$(WTAP_VERSION).lib: image $(ZLIB_DLL) wiretap
254
255 wireshark.exe   : $(LIBS_CHECK) config.h $(wireshark_OBJECTS) wsgetopt.obj inet_ntop.obj inet_pton.obj codecs epan gtk image\wireshark.res wsutil\libwsutil.lib wiretap\wiretap-$(WTAP_VERSION).lib codecs\codecs.lib gtk\libui.lib plugins
256         @echo Linking $@
257         $(LINK) @<<
258                 /OUT:wireshark.exe $(guiflags) $(guilibsdll) $(LDFLAGS) /LARGEADDRESSAWARE /SUBSYSTEM:windows $(wireshark_LIBS) wsgetopt.obj inet_ntop.obj inet_pton.obj $(GTK_LIBS) codecs\codecs.lib gtk\libui.lib $(wireshark_OBJECTS) image\wireshark.res
259 <<
260 !IFDEF MANIFEST_INFO_REQUIRED
261         mt.exe -nologo -manifest "wireshark.exe.manifest" -outputresource:wireshark.exe;1
262 !ENDIF
263
264 tshark.exe      : $(LIBS_CHECK) config.h $(tshark_OBJECTS) wsgetopt.obj inet_ntop.obj inet_pton.obj epan image\tshark.res wsutil\libwsutil.lib wiretap\wiretap-$(WTAP_VERSION).lib plugins
265         @echo Linking $@
266         $(LINK) @<<
267                 /OUT:tshark.exe $(conflags) $(conlibsdll) $(LDFLAGS) /LARGEADDRESSAWARE /SUBSYSTEM:console $(tshark_LIBS) $(tshark_OBJECTS) wsgetopt.obj inet_ntop.obj inet_pton.obj image\tshark.res
268 <<
269 !IFDEF MANIFEST_INFO_REQUIRED
270         mt.exe -nologo -manifest "tshark.exe.manifest" -outputresource:tshark.exe;1
271 !ENDIF
272
273 rawshark.exe    : $(LIBS_CHECK) config.h $(rawshark_OBJECTS) wsgetopt.obj inet_ntop.obj epan image\rawshark.res wsutil\libwsutil.lib wiretap\wiretap-$(WTAP_VERSION).lib plugins
274         @echo Linking $@
275         $(LINK) @<<
276                 /OUT:rawshark.exe $(conflags) $(conlibsdll) $(LDFLAGS) /LARGEADDRESSAWARE /SUBSYSTEM:console $(rawshark_LIBS) $(rawshark_OBJECTS) wsgetopt.obj inet_ntop.obj image\rawshark.res
277 <<
278 !IFDEF MANIFEST_INFO_REQUIRED
279         mt.exe -nologo -manifest "rawshark.exe.manifest" -outputresource:rawshark.exe;1
280 !ENDIF
281
282 # XXX: This makefile does not properly handle doing a 'nmake ... capinfos.exe' directly since some of the .objs
283 #      (e.g. epan\plugins.obj) must be built first using epan\Makefile.nmake (which happens for 'nmake ... all').
284 # Linking with setargv.obj enables "wildcard expansion" of command-line arguments
285 capinfos.exe    : $(LIBS_CHECK) config.h $(capinfos_OBJECTS) wsgetopt.obj wsutil\libwsutil.lib wiretap\wiretap-$(WTAP_VERSION).lib image\capinfos.res
286         @echo Linking $@
287         $(LINK) @<<
288                 /OUT:capinfos.exe $(conflags) $(conlibsdll) $(LDFLAGS) /SUBSYSTEM:console $(capinfos_OBJECTS) wsgetopt.obj $(capinfos_LIBS) setargv.obj image\capinfos.res
289 <<
290 !IFDEF MANIFEST_INFO_REQUIRED
291         mt.exe -nologo -manifest "capinfos.exe.manifest" -outputresource:capinfos.exe;1
292 !ENDIF
293
294 # XXX: This makefile does not properly handle doing a 'nmake ... editcap.exe' directly since some of the .objs
295 #      (e.g. epan\plugins.obj) must be built first using epan\Makefile.nmake (which happens for 'nmake ... all').
296 editcap.exe     : $(LIBS_CHECK) config.h $(editcap_OBJECTS) wsgetopt.obj strptime.obj wsutil\libwsutil.lib wiretap\wiretap-$(WTAP_VERSION).lib image\editcap.res
297         @echo Linking $@
298         $(LINK) @<<
299                 /OUT:editcap.exe $(conflags) $(conlibsdll) $(LDFLAGS) /SUBSYSTEM:console $(editcap_OBJECTS) wsgetopt.obj strptime.obj $(editcap_LIBS) image\editcap.res
300 <<
301 !IFDEF MANIFEST_INFO_REQUIRED
302         mt.exe -nologo -manifest "editcap.exe.manifest" -outputresource:editcap.exe;1
303 !ENDIF
304
305 # Linking with setargv.obj enables "wildcard expansion" of command-line arguments
306 mergecap.exe    : $(LIBS_CHECK)  config.h mergecap.obj merge.obj wsgetopt.obj wsutil\libwsutil.lib wiretap\wiretap-$(WTAP_VERSION).lib image\mergecap.res
307         @echo Linking $@
308         $(LINK) @<<
309                 /OUT:mergecap.exe $(conflags) $(conlibsdll) $(LDFLAGS) /SUBSYSTEM:console mergecap.obj merge.obj wsgetopt.obj $(mergecap_LIBS) setargv.obj image\mergecap.res
310 <<
311 !IFDEF MANIFEST_INFO_REQUIRED
312         mt.exe -nologo -manifest "mergecap.exe.manifest" -outputresource:mergecap.exe;1
313 !ENDIF
314
315 text2pcap.exe   : $(LIBS_CHECK) config.h text2pcap.obj text2pcap-scanner.obj wsgetopt.obj wsutil\libwsutil.lib wiretap\wiretap-$(WTAP_VERSION).lib strptime.obj image\text2pcap.res
316         @echo Linking $@
317         $(LINK) @<<
318                 /OUT:text2pcap.exe $(conflags) $(conlibsdll) $(LDFLAGS) /SUBSYSTEM:console text2pcap.obj text2pcap-scanner.obj wsgetopt.obj $(text2pcap_LIBS) strptime.obj image\text2pcap.res
319 <<
320 !IFDEF MANIFEST_INFO_REQUIRED
321         mt.exe -nologo -manifest "text2pcap.exe.manifest" -outputresource:text2pcap.exe;1
322 !ENDIF
323
324 dftest.exe      : $(dftest_OBJECTS) epan
325         @echo Linking $@
326         $(LINK) @<<
327                 /OUT:dftest.exe $(conflags) $(conlibsdll) $(LDFLAGS) /SUBSYSTEM:console $(dftest_LIBS) $(dftest_OBJECTS)
328 <<
329 !IFDEF MANIFEST_INFO_REQUIRED
330         mt.exe -nologo -manifest "dftest.exe.manifest" -outputresource:dftest.exe;1
331 !ENDIF
332
333 randpkt.exe     : $(randpkt_OBJECTS) wsgetopt.obj
334         @echo Linking $@
335         $(LINK) @<<
336                 /OUT:randpkt.exe $(conflags) $(conlibsdll) $(LDFLAGS) /SUBSYSTEM:console $(randpkt_LIBS) $(randpkt_OBJECTS) wsgetopt.obj
337 <<
338 !IFDEF MANIFEST_INFO_REQUIRED
339         mt.exe -nologo -manifest "randpkt.exe.manifest" -outputresource:randpkt.exe;1
340 !ENDIF
341
342 dumpcap.exe     : $(LIBS_CHECK) config.h $(dumpcap_OBJECTS) wsgetopt.obj inet_ntop.obj wsutil\libwsutil.lib wiretap\wiretap-$(WTAP_VERSION).lib image\dumpcap.res
343         @echo Linking $@
344         $(LINK) @<<
345                 /OUT:dumpcap.exe $(conflags) $(conlibsdll) $(LDFLAGS) /SUBSYSTEM:console $(dumpcap_LIBS) $(dumpcap_OBJECTS) wsgetopt.obj inet_ntop.obj image\dumpcap.res
346 <<
347 !IFDEF MANIFEST_INFO_REQUIRED
348         mt.exe -nologo -manifest "dumpcap.exe.manifest" -outputresource:dumpcap.exe;1
349 !ENDIF
350
351
352 config.h        : config.h.win32 config.nmake
353         sed -e s/@VERSION@/$(VERSION)/ \
354             -e "s/@HAVE_C_ARES@/$(C_ARES_CONFIG)/" \
355             -e "s/@HAVE_GNU_ADNS@/$(ADNS_CONFIG)/" \
356             -e "s/@HAVE_PCRE@/$(PCRE_CONFIG)/" \
357             -e "s/@HAVE_KFW@/$(KFW_CONFIG)/" \
358             -e "s/@HAVE_NETTLE@/$(NETTLE_CONFIG)/" \
359             -e "s/@HAVE_LIBZ@/$(ZLIB_CONFIG)/" \
360             -e "s/@HAVE_LIBPCAP@/$(WINPCAP_CONFIG)/" \
361             -e "s/@HAVE_PCAP_FINDALLDEVS@/$(PCAP_FINDALLDEVS_CONFIG)/" \
362             -e "s/@HAVE_PCAP_DATALINK_NAME_TO_VAL@/$(PCAP_DATALINK_NAME_TO_VAL_CONFIG)/" \
363             -e "s/@HAVE_PCAP_DATALINK_VAL_TO_NAME@/$(PCAP_DATALINK_VAL_TO_NAME_CONFIG)/" \
364             -e "s/@HAVE_PCAP_DATALINK_VAL_TO_DESCRIPTION@/$(PCAP_DATALINK_VAL_TO_DESCRIPTION_CONFIG)/" \
365             -e "s/@HAVE_PCAP_BREAKLOOP@/$(PCAP_BREAKLOOP_CONFIG)/" \
366             -e "s/@HAVE_REMOTE@/$(PCAP_HAVE_REMOTE_CONFIG)/" \
367             -e "s/@HAVE_PCAP_REMOTE@/$(PCAP_REMOTE_CONFIG)/" \
368             -e "s/@HAVE_PCAP_OPEN@/$(PCAP_OPEN_CONFIG)/" \
369             -e "s/@HAVE_PCAP_LIST_DATALINKS@/$(PCAP_LIST_DATALINKS_CONFIG)/" \
370             -e "s/@HAVE_PCAP_FREE_DATALINKS@/$(PCAP_FREE_DATALINKS_CONFIG)/" \
371             -e "s/@HAVE_PCAP_SET_DATALINK@/$(PCAP_SET_DATALINK_CONFIG)/" \
372             -e "s/@HAVE_PCAP_SETSAMPLING@/$(PCAP_SETSAMPLING_CONFIG)/" \
373             -e "s/@HAVE_LIBWIRESHARKDLL@/$(LIBWIRESHARK_CONFIG)/" \
374             -e "s/@HAVE_LIBGNUTLS@/$(GNUTLS_CONFIG)/" \
375             -e "s/@HAVE_LIBGCRYPT@/$(LIBGCRYPT_CONFIG)/" \
376             -e "s/@HAVE_LUA@/$(LUA_CONFIG)/" \
377             -e "s/@HAVE_LUA_5_1@/$(LUA_VERSION)/" \
378             -e "s/@HAVE_AIRPCAP@/$(AIRPCAP_CONFIG)/" \
379             -e "s/@HAVE_AIRPDCAP@/$(AIRPDCAP_CONFIG)/" \
380             -e "s/@HAVE_LIBPORTAUDIO@/$(PORTAUDIO_CONFIG)/" \
381             -e "s/@PORTAUDIO_API_1@/$(PORTAUDIO_API_CONFIG)/" \
382             -e "s/@HAVE_SMI@/$(SMI_CONFIG)/" \
383             -e "s/@HAVE_GEOIP@/$(GEOIP_CONFIG)/" \
384             -e "s/@HAVE_NEW_PACKET_LIST@/$(NEW_PACKET_LIST_CONFIG)/" \
385             -e "s/@INET6@/$(INET6_CONFIG)/" \
386             -e "s/@HAVE_NTDDNDIS_H@/$(NTDDNDIS_CONFIG)/" \
387             < config.h.win32 > $@
388
389
390 ps.c: tools\rdps.py print.ps
391         $(PYTHON) tools\rdps.py print.ps ps.c
392 #
393 # Build the version string
394 #
395 !IF EXIST(".svn/entries")
396 SVNENTRIES = .svn/entries
397 !ELSE
398 SVNENTRIES =
399 !ENDIF
400 svnversion.h: $(SVNENTRIES)
401         rm -f svnversion.h
402         $(PERL) make-version.pl
403
404
405 #
406 # Build "tshark-tap-register.c", which contains a function
407 # "register_all_tap_listeners()"
408 # that calls the register routines for all TShark tap listeners.
409 #
410 # We do this by grepping through sources.
411 #
412 # Formatting conventions:  The name of the tap_listener_register_*
413 # routines must start in column zero, or must be preceded only by
414 # "void " starting in column zero, and must not be inside #if.
415 #
416 # The first argument is the name of the file to write.
417 # The second argument is the directory in which the source files live.
418 # All subsequent arguments are the files to scan.
419 #
420 tshark-tap-register.c: $(TSHARK_TAP_SRC) tools\make-tapreg-dotc
421         @echo Making tshark-tap-register.c
422         @$(SH) tools/make-tapreg-dotc tshark-tap-register.c . $(TSHARK_TAP_SRC)
423
424 text2pcap-scanner.c : text2pcap-scanner.l
425         $(LEX) -otext2pcap-scanner.c text2pcap-scanner.l
426
427 text2pcap-scanner.obj : text2pcap-scanner.c
428         $(CC) $(CVARSDLL) $(GENERATED_CFLAGS) -Fd.\ -c $?
429
430 #
431 # The following targets will rebuild their respective objs 
432 # if and when svnversion.h should change.
433 #
434
435 text2pcap.obj : $*.c svnversion.h
436         $(CC) $(CVARSDLL) $(GENERATED_CFLAGS) -Fd.\ -c $*.c
437
438 mergecap.obj : $*.c svnversion.h
439         $(CC) $(CVARSDLL) $(GENERATED_CFLAGS) -Fd.\ -c $*.c
440
441 capinfos.obj : $*.c svnversion.h
442         $(CC) $(CVARSDLL) $(GENERATED_CFLAGS) -Fd.\ -c $*.c
443
444 editcap.obj : $*.c svnversion.h
445         $(CC) $(CVARSDLL) $(GENERATED_CFLAGS) -Fd.\ -c $*.c
446
447 version_info.obj : $*.c svnversion.h
448         $(CC) $(CVARSDLL) $(GENERATED_CFLAGS) -Fd.\ -c $*.c
449
450 clean-local: clean-deps
451         rm -f $(wireshark_OBJECTS) $(tshark_OBJECTS) $(dumpcap_OBJECTS) $(rawshark_OBJECTS) \
452                 $(EXTRA_OBJECTS) $(EXECUTABLES) *.pdb *.exe.manifest \
453                 capinfos.obj editcap.obj mergecap.obj text2pcap.obj \
454                 nio-ie5.obj update.obj \
455                 text2pcap-scanner.obj text2pcap-scanner.c rdps.obj \
456                 rdps.pdb rdps.exe rdps.ilk config.h ps.c $(LIBS_CHECK) \
457                 dftest.obj dftest.exe randpkt.obj randpkt.ext \
458                 doxygen.cfg \
459                 $(RESOURCES) libwireshark.dll wiretap-$(WTAP_VERSION).dll \
460                 libwsutil.dll \
461                 wireshark.bsc
462
463 clean: clean-local
464         cd asn1
465         $(MAKE) /$(MAKEFLAGS) -f Makefile.nmake clean
466         cd ../wiretap
467         $(MAKE) /$(MAKEFLAGS) -f Makefile.nmake clean
468         cd ../wsutil
469         $(MAKE) /$(MAKEFLAGS) -f Makefile.nmake clean
470         cd ../codecs
471         $(MAKE) /$(MAKEFLAGS) -f Makefile.nmake clean
472         cd ../gtk
473         $(MAKE) /$(MAKEFLAGS) -f Makefile.nmake clean
474         cd ../epan
475         $(MAKE) /$(MAKEFLAGS) -f Makefile.nmake clean
476         cd ../plugins
477         $(MAKE) /$(MAKEFLAGS) -f Makefile.nmake clean
478         cd ../tools
479         $(MAKE) /$(MAKEFLAGS) -f Makefile.nmake clean
480         cd ../image
481         $(MAKE) /$(MAKEFLAGS) -f Makefile.nmake clean
482         cd ../doc
483         $(MAKE) /$(MAKEFLAGS) -f Makefile.nmake clean
484         cd ../help
485         $(MAKE) /$(MAKEFLAGS) -f Makefile.nmake clean
486         cd ../packaging/nsis
487         $(MAKE) /$(MAKEFLAGS) -f Makefile.nmake clean
488         cd ../u3/win32
489         $(MAKE) /$(MAKEFLAGS) -f Makefile.nmake clean
490         cd ../../portableapps/win32
491         $(MAKE) /$(MAKEFLAGS) -f Makefile.nmake clean
492         cd ../../..
493
494 # "distclean" removes all files not part of the distribution.
495 # It does not remove generated files that are part of the distribution.
496 distclean-local: clean-local
497 !IFDEF ADNS_DIR
498 !IF "$(MSVC_VARIANT)" != "MSVC6"
499         rm -f $(ADNS_DLL) $(ADNS_LIBS)
500 !ENDIF
501 !ENDIF
502 !IFDEF ZLIB_DIR
503         rm -f $(ZLIB_DLL) $(ZLIB_DIR)\zlib1.dll.manifest \
504                 $(ZLIB_DIR)\include\zlib.h $(ZLIB_DIR)\include\zconf.h \
505                 $(ZLIB_DIR)\lib\zdll.lib
506 !ENDIF
507         rm -f config.h $(BUILT_SOURCES)
508
509 distclean: distclean-local
510         cd wiretap
511         $(MAKE) /$(MAKEFLAGS) -f Makefile.nmake distclean
512         cd ../wsutil
513         $(MAKE) /$(MAKEFLAGS) -f Makefile.nmake distclean
514         cd ../codecs
515         $(MAKE) /$(MAKEFLAGS) -f Makefile.nmake distclean
516         cd ../gtk
517         $(MAKE) /$(MAKEFLAGS) -f Makefile.nmake distclean
518         cd ../epan
519         $(MAKE) /$(MAKEFLAGS) -f Makefile.nmake distclean
520         cd ../plugins
521         $(MAKE) /$(MAKEFLAGS) -f Makefile.nmake distclean
522         cd ../tools
523         $(MAKE) /$(MAKEFLAGS) -f Makefile.nmake distclean
524         cd ../image
525         $(MAKE) /$(MAKEFLAGS) -f Makefile.nmake distclean
526         cd ../doc
527         $(MAKE) /$(MAKEFLAGS) -f Makefile.nmake distclean
528         cd ../help
529         $(MAKE) /$(MAKEFLAGS) -f Makefile.nmake distclean
530         cd ../packaging/nsis
531         $(MAKE) /$(MAKEFLAGS) -f Makefile.nmake distclean
532         cd ../u3/win32
533         $(MAKE) /$(MAKEFLAGS) -f Makefile.nmake distclean
534         cd ../../portableapps/win32
535         $(MAKE) /$(MAKEFLAGS) -f Makefile.nmake distclean
536         cd ../../..
537
538 # Make "maintainer-clean" only if you would like to remove ALL generated
539 # files.
540 # Be sure to have python and perl installed to regenerate them.
541 maintainer-clean-local: distclean-local
542         rm -f $(GENERATED_FILES)
543
544 maintainer-clean: maintainer-clean-local
545         cd wiretap
546         $(MAKE) /$(MAKEFLAGS) -f Makefile.nmake maintainer-clean
547         cd ../wsutil
548         $(MAKE) /$(MAKEFLAGS) -f Makefile.nmake maintainer-clean
549         cd ../codecs
550         $(MAKE) /$(MAKEFLAGS) -f Makefile.nmake maintainer-clean
551         cd ../gtk
552         $(MAKE) /$(MAKEFLAGS) -f Makefile.nmake maintainer-clean
553         cd ../epan
554         $(MAKE) /$(MAKEFLAGS) -f Makefile.nmake maintainer-clean
555         cd ../plugins
556         $(MAKE) /$(MAKEFLAGS) -f Makefile.nmake maintainer-clean
557         cd ../tools
558         $(MAKE) /$(MAKEFLAGS) -f Makefile.nmake maintainer-clean
559         cd ../image
560         $(MAKE) /$(MAKEFLAGS) -f Makefile.nmake maintainer-clean
561         cd ../doc
562         $(MAKE) /$(MAKEFLAGS) -f Makefile.nmake maintainer-clean
563         cd ../help
564         $(MAKE) /$(MAKEFLAGS) -f Makefile.nmake maintainer-clean
565         cd ../packaging/nsis
566         $(MAKE) /$(MAKEFLAGS) -f Makefile.nmake maintainer-clean
567         cd ../u3/win32
568         $(MAKE) /$(MAKEFLAGS) -f Makefile.nmake maintainer-clean
569         cd ../../portableapps/win32
570         $(MAKE) /$(MAKEFLAGS) -f Makefile.nmake maintainer-clean
571         cd ../../..
572
573 tools::
574         cd tools
575         $(MAKE) /$(MAKEFLAGS) -f Makefile.nmake
576         cd ..
577
578 image::
579         cd image
580         $(MAKE) /$(MAKEFLAGS) -f Makefile.nmake
581         cd ..
582
583 !IFDEF ADNS_DIR
584 # Non-MSVC6 variants have to avoid indirectly using msvcrt.dll,
585 # therefore compile the adns dll from source ADNS_DIR package.
586 # To avoid path problems, copy the adns sources to a temp dir,
587 # compile and copy the resulting files back to (source) ADNS_DIR
588 #
589 # Unfortunately:
590 # - we need to "patch" adns_dll.rep and adns_dll.rc (at least for MSVC2005EE)
591 # - on MSVC6 we can't easily rebuild, because iphlpapi.h is needed
592 #
593 $(ADNS_DLL):
594 !IF "$(MSVC_VARIANT)" == "MSVC6"
595         if not exist $(WIRESHARK_LIBS)\$(MSVC_VARIANT)\adns mkdir $(WIRESHARK_LIBS)\$(MSVC_VARIANT)\adns
596         copy $(ADNS_DIR)\adns_win32\lib\adns_dll.dll $(ADNS_DLL)
597         copy $(ADNS_DIR)\adns_win32\lib\adns_dll.lib $(ADNS_LIBS)
598 !ELSE
599         xcopy $(ADNS_DIR) adns.tmp /D /I /E /Y
600         copy adns_dll.dep adns.tmp\adns_win32\adns_dll
601         copy adns_dll.rc adns.tmp\adns_win32\adns_dll
602         cd adns.tmp\adns_win32\adns_dll
603         set CFG=adns_dll - Win32 Release
604         $(MAKE) /$(MAKEFLAGS) -f adns_dll.mak LOC="$(LOCAL_CFLAGS)"
605         cd ..\lib
606 !IFDEF MANIFEST_INFO_REQUIRED
607         mt.exe -nologo -manifest "adns_dll.dll.manifest" -outputresource:adns_dll.dll;2
608 !ENDIF
609         if not exist $(WIRESHARK_LIBS)\$(MSVC_VARIANT)\adns mkdir $(WIRESHARK_LIBS)\$(MSVC_VARIANT)\adns
610         copy adns_dll.dll $(ADNS_DLL)
611         copy adns_dll.lib $(ADNS_LIBS)
612         cd ..\..\..
613         rm -r -f adns.tmp
614 !ENDIF
615 !ENDIF
616
617 !IFDEF ZLIB_DIR
618 # Non-MSVC6 variants have to avoid indirectly using msvcrt.dll,
619 # therefore compile the zlib dll from source ZLIB_DIR package.
620 # To avoid path problems, copy the zlib sources to a temp dir,
621 # compile and copy the resulting files back to (source) ZLIB_DIR
622 $(ZLIB_DLL):
623         xcopy $(ZLIB_DIR) zlib.tmp /D /I /E /Y
624         cd zlib.tmp
625         $(MAKE) /$(MAKEFLAGS) -f win32/Makefile.msc zlib1.dll LOC="$(LOCAL_CFLAGS)"
626         if not exist $(ZLIB_DIR) mkdir $(ZLIB_DIR)
627         if not exist $(ZLIB_DIR)\lib mkdir $(ZLIB_DIR)\lib
628         if not exist $(ZLIB_DIR)\include mkdir $(ZLIB_DIR)\include
629 !IFDEF MANIFEST_INFO_REQUIRED
630         mt.exe -nologo -manifest "zlib1.dll.manifest" -outputresource:zlib1.dll;2
631 !ENDIF
632         copy zlib1.dll $(ZLIB_DIR)
633         copy zdll.lib $(ZLIB_DIR)\lib
634         copy zconf.h $(ZLIB_DIR)\include
635         copy zlib.h $(ZLIB_DIR)\include
636         cd ..
637         rm -r -f zlib.tmp
638 !ENDIF
639
640 wsutil::
641         cd wsutil
642         $(MAKE) /$(MAKEFLAGS) -f Makefile.nmake
643         cd ..
644
645 wiretap::
646         cd wiretap
647         $(MAKE) /$(MAKEFLAGS) -f Makefile.nmake
648         cd ..
649
650 codecs::
651         cd codecs
652         $(MAKE) /$(MAKEFLAGS) -f Makefile.nmake
653         cd ..
654
655 gtk:: help config.h svnversion.h doxygen
656         cd gtk
657         $(MAKE) /$(MAKEFLAGS) /f Makefile.nmake libui.lib
658         cd ..
659
660 epan:: $(RESOURCES) $(ZLIB_DLL) wiretap\wiretap-$(WTAP_VERSION).lib $(BUILT_SOURCES) doxygen
661         cd epan
662         $(MAKE) /$(MAKEFLAGS) -f Makefile.nmake
663         cd ..
664
665 plugins::
666         cd plugins
667         $(MAKE) /$(MAKEFLAGS) -f Makefile.nmake
668         cd ..
669
670 doc::
671         cd doc
672         $(MAKE) /$(MAKEFLAGS) -f Makefile.nmake
673         cd ..
674
675 help::
676         cd help
677         $(MAKE) /$(MAKEFLAGS) -f Makefile.nmake
678         cd ..
679
680 doxygen.cfg: config.nmake doxygen.cfg.in
681         sed -e s/@VERSION@/$(VERSION)/ \
682             < doxygen.cfg.in > $@
683
684 doxygen-run:
685 !IFDEF DOXYGEN
686         $(DOXYGEN) doxygen.cfg
687 !ENDIF
688
689 doxygen: doxygen.cfg doxygen-run
690         
691
692 ################################################################################
693 # Prepare build environment by downloading and installing required libraries
694 ################################################################################
695
696 # The required tools to build Wireshark.
697 #
698 # The 'find' tool is available both in \WINNT\System32 and in cygwin's /usr/bin.
699 # We only need the cygwin version (for some shell scripts).
700 # In the PATH, System32 is before cygwin's dir, so explicitly check for /usr/bin/find.
701 REQUIRED_TOOLS=\
702         $(CC) \
703         $(LINK) \
704         nmake \
705 !IFDEF MANIFEST_INFO_REQUIRED
706         mt \
707 !ENDIF
708         $(SH_PROG)      \
709         $(YACC) \
710         $(LEX)  \
711         env     \
712         grep    \
713         /usr/bin/find   \
714         $(PERL) \
715         $(PYTHON)       \
716         sed     \
717         unzip   \
718         wget
719
720 verify_tools:
721         @$(SH) $(WIN_SETUP) --appverify $(REQUIRED_TOOLS)
722
723 # Targets and etc used to verify or download libraries
724
725 !IFNDEF WIN_SETUP_OPT
726 WIN_SETUP_OPT=--download
727 !ENDIF
728
729 # Verify that the required library 'package' (zip) files have been downloaded.
730 # (It seems reasonable to assume that if the files have been downloaded
731 #  then they have been installed).
732 check_libs:
733         $(MAKE) /$(MAKEFLAGS) -f Makefile.nmake WIN_SETUP_OPT=--libverify process_libs
734
735 # Verify library packages:
736 #  If $(CHECK_TAG) is non-null then checktag failed; Exit with an error message. (See beginning of this Makefile).
737 #  Otherwise do detailed library package files verification only if Makefile.nmake or config.make have been updated
738 #  (or dummy file doesn't exist because of 'make clean' or whatever).
739 #  Note that the creation/modification time of a file after an svn update of that file 
740 #   is the time of the update (not the time of the file in the repository).
741 # touch is only called if libverify succeeds.
742 $(LIBS_CHECK):  $(CHECK_TAG) config.nmake Makefile.nmake
743         @echo  Verifying library package files ...
744         @$(MAKE) /$(MAKEFLAGS) -f Makefile.nmake WIN_SETUP_OPT=--libverify process_libs
745         @touch $@
746
747 # Target for "checktag failed" (libraries not up to date).
748 # Defined only if "checktag" failed (see beginning of this Makefile).
749 !IF "$(CHECK_TAG)" != ""
750 $(CHECK_TAG): _FORCE_
751         @echo \? Wireshark Libraries not up-to-date \?
752         @echo \? Do you need to run "nmake -f Makefile.nmake setup" \?
753         @echo.
754         @exit 1
755
756 !ENDIF
757
758 # Download (if needed) and install all the required libraries into WIRESHARK_LIBS.
759 # A clean_setup is done first to ensure that the target dirs don't
760 # contain old files remaining from a previous setup run.
761 setup: verify_tools clean_setup process_libs
762
763
764 # The process_libs target when invoked causes either a --libverify or a --download for all the required libraries.
765 # (The choice is determined by the value of the macro WIN_SETUP_OPT).
766 process_libs:
767     @if not exist $(WIRESHARK_LIBS) md $(WIRESHARK_LIBS)
768 !IFDEF GTK_DIR
769         @$(SH) $(WIN_SETUP) "$(WIN_SETUP_OPT)" "$(WIRESHARK_LIBS)" \
770                 gtk2 gtk+-bundle_$(GTK_PKG)_$(WIRESHARK_TARGET_PLATFORM).zip
771 !ENDIF
772 !IFDEF KFW_DIR
773         @$(SH) $(WIN_SETUP) "$(WIN_SETUP_OPT)" "$(WIRESHARK_LIBS)" \
774                 . kfw-3-2-2-i386-ws-vc6.zip
775 #       @$(SH) $(WIN_SETUP) "$(WIN_SETUP_OPT)" "$(WIRESHARK_LIBS)" \
776 #               . kfw-3-2-2.zip
777 !ENDIF
778 !IFDEF PCAP_DIR
779         @$(SH) $(WIN_SETUP) "$(WIN_SETUP_OPT)" "$(WIRESHARK_LIBS)" \
780                 . WpdPack_$(PCAP_VERSION).zip
781 !ENDIF
782 !IFDEF AIRPCAP_DIR
783         @$(SH) $(WIN_SETUP) "$(WIN_SETUP_OPT)" "$(WIRESHARK_LIBS)" \
784                 AirPcap_Devpack_4_1_0_1622 AirPcap_Devpack_4_1_0_1622.zip
785 !ENDIF
786 !IFDEF C_ARES_DIR
787         @$(SH) $(WIN_SETUP) "$(WIN_SETUP_OPT)" "$(WIRESHARK_LIBS)" \
788                 . c-ares-$(C_ARES_PKG)-$(WIRESHARK_TARGET_PLATFORM)ws.zip
789 !ENDIF
790 !IFDEF ADNS_DIR
791         @$(SH) $(WIN_SETUP) "$(WIN_SETUP_OPT)" "$(WIRESHARK_LIBS)" \
792                 . adns-1.0-win32-05ws.zip
793 !ENDIF
794 !IFDEF PCRE_DIR
795         @$(SH) $(WIN_SETUP) "$(WIN_SETUP_OPT)" "$(WIRESHARK_LIBS)" \
796                 pcre-7.0 pcre-7.0-bin.zip
797         @$(SH) $(WIN_SETUP) "$(WIN_SETUP_OPT)" "$(WIRESHARK_LIBS)" \
798                 pcre-7.0 pcre-7.0-lib.zip
799 !ENDIF
800 !IFDEF ZLIB_DIR
801         @$(SH) $(WIN_SETUP) "$(WIN_SETUP_OPT)" "$(WIRESHARK_LIBS)" \
802                 zlib123 zlib123ws.zip
803 !ENDIF
804 !IFDEF LUA_DIR
805         @$(SH) $(WIN_SETUP) "$(WIN_SETUP_OPT)" "$(WIRESHARK_LIBS)" \
806                 lua5.1.4 lua$(LUA_DIST)_lib.zip
807 !ENDIF
808
809 !IFDEF GNUTLS_PKG
810         @$(SH) $(WIN_SETUP) "$(WIN_SETUP_OPT)" "$(WIRESHARK_LIBS)" \
811                 . gnutls-$(GNUTLS_PKG)-$(WIRESHARK_TARGET_PLATFORM)ws.zip
812 !ENDIF
813 !IFDEF PORTAUDIO_DIR
814         @$(SH) $(WIN_SETUP) "$(WIN_SETUP_OPT)" "$(WIRESHARK_LIBS)" \
815                 . portaudio_v19_2.zip
816 !ENDIF
817 !IFDEF SMI_DIR
818         @$(SH) $(WIN_SETUP) "$(WIN_SETUP_OPT)" "$(WIRESHARK_LIBS)" \
819                 . libsmi-0.4.8.zip
820 !ENDIF
821 !IFDEF GEOIP_DIR
822         @$(SH) $(WIN_SETUP) "$(WIN_SETUP_OPT)" "$(WIRESHARK_LIBS)" \
823                 . GeoIP-1.4.6-$(WIRESHARK_TARGET_PLATFORM)ws.zip
824 !ENDIF
825 !IFDEF HHC_DIR
826         @$(SH) $(WIN_SETUP) "$(WIN_SETUP_OPT)" "$(WIRESHARK_LIBS)" \
827                 user-guide user-guide-28526.zip
828 !ENDIF
829 !IFDEF UPX
830         @$(SH) $(WIN_SETUP) "$(WIN_SETUP_OPT)" "$(WIRESHARK_LIBS)" \
831                 . upx303w.zip
832 !ENDIF
833 !IFDEF NASM
834         @$(SH) $(WIN_SETUP) "$(WIN_SETUP_OPT)" "$(WIRESHARK_LIBS)" \
835                 . nasm-2.02-win32.zip
836 !ENDIF
837 !IF "$(WIN_SETUP_OPT)" == "--download"
838         @$(SH) $(WIN_SETUP) --settag "$(WIRESHARK_LIBS)"
839 !ENDIF
840         @echo.
841         @echo Wireshark is ready to build.
842
843 # Cleanup files installed by the setup target. It will not remove the
844 # downloaded zip files.
845 # WHEN UPDATING LIBRARY VERSIONS, KEEP ALSO ONE FORMER VERSION SO
846 # UPDATING REMOVES THE FORMER USER DIRS
847 clean_setup:
848     rm -r -f $(WIRESHARK_LIBS)/adns-1.0-win32-05ws
849     rm -r -f $(WIRESHARK_LIBS)/c-ares-1.5.3ws
850     rm -r -f $(WIRESHARK_LIBS)/c-ares-1.6.0ws
851     rm -r -f $(WIRESHARK_LIBS)/c-ares-1.7.0-win??ws
852     rm -r -f $(WIRESHARK_LIBS)/c-ares-1.7.1-win??ws
853     rm -r -f $(WIRESHARK_LIBS)/gettext-0.14.5
854     rm -r -f $(WIRESHARK_LIBS)/gettext-runtime-0.17
855     rm -r -f $(WIRESHARK_LIBS)/gettext-runtime-0.17-1
856     rm -r -f $(WIRESHARK_LIBS)/gettext-0.17-1            # win64
857     rm -r -f $(WIRESHARK_LIBS)/glib
858     rm -r -f $(WIRESHARK_LIBS)/gnutls-2.8.1-1
859     rm -r -f $(WIRESHARK_LIBS)/gnutls-2.8.5-*-win??ws
860     rm -r -f $(WIRESHARK_LIBS)/gtk2
861     rm -r -f $(WIRESHARK_LIBS)/gtk+
862     rm -r -f $(WIRESHARK_LIBS)/gtk-wimp
863     rm -r -f $(WIRESHARK_LIBS)/kfw-2.5
864     rm -r -f $(WIRESHARK_LIBS)/kfw-3.2.2-ws1
865     rm -r -f $(WIRESHARK_LIBS)/kfw-3.2.2-i386-ws-vc6
866     rm -r -f $(WIRESHARK_LIBS)/libiconv-1.9.1.bin.woe32
867     rm -r -f $(WIRESHARK_LIBS)/lua5.1
868     rm -r -f $(WIRESHARK_LIBS)/lua5.1.4
869     rm -r -f $(WIRESHARK_LIBS)/libsmi-0.4.5
870     rm -r -f $(WIRESHARK_LIBS)/libsmi-0.4.8
871     rm -r -f $(WIRESHARK_LIBS)/nasm-2.00
872     rm -r -f $(WIRESHARK_LIBS)/nasm-2.02
873     rm -r -f $(WIRESHARK_LIBS)/pcre-6.4
874     rm -r -f $(WIRESHARK_LIBS)/pcre-7.0
875     rm -r -f $(WIRESHARK_LIBS)/portaudio_v19
876     rm -r -f $(WIRESHARK_LIBS)/portaudio_v19_2
877     rm -r -f $(WIRESHARK_LIBS)/user-guide
878     rm -r -f $(WIRESHARK_LIBS)/WpdPack
879     rm -r -f $(WIRESHARK_LIBS)/AirPcap_Devpack_1_0_0_594
880     rm -r -f $(WIRESHARK_LIBS)/AirPcap_Devpack_4_0_0_1480
881     rm -r -f $(WIRESHARK_LIBS)/AirPcap_Devpack_4_1_0_1622
882     rm -r -f $(WIRESHARK_LIBS)/zlib123
883     rm -r -f $(WIRESHARK_LIBS)/zlib123-dll
884     rm -r -f $(WIRESHARK_LIBS)/upx301w
885     rm -r -f $(WIRESHARK_LIBS)/upx303w
886     rm -r -f $(WIRESHARK_LIBS)/GeoIP-1.4.5ws
887     rm -r -f $(WIRESHARK_LIBS)/GeoIP-1.4.6-win??ws
888
889 ################################################################################
890 # Prepare the debug trees for running Wireshark/Tshark from there.
891 ################################################################################
892
893
894 # prepare debugging of Wireshark in INSTALL_DIR
895 debug-wireshark: wireshark.exe install-generated-files
896
897 # prepare debugging of tshark in INSTALL_DIR
898 debug-tshark: tshark.exe install-generated-files
899
900 # prepare debugging of rawshark in INSTALL_DIR
901 debug-rawshark: rawshark.exe install-generated-files
902
903 # prepare debugging of dumpcap in INSTALL_DIR
904 debug-dumpcap: dumpcap.exe install-generated-files
905
906
907 # install generated files (exe, "our" libs, ...)
908 install-generated-files:
909         set copycmd=/y
910         if not exist $(INSTALL_DIR) mkdir $(INSTALL_DIR)
911 !IF DEFINED (MSVCR_DLL) && "$(MSVC_VARIANT)" == "MSVC2008"
912         xcopy "$(MSVCR_DLL)" $(INSTALL_DIR)\*.* /d
913 !ENDIF
914 !IFDEF ENABLE_LIBWIRESHARK
915         xcopy epan\libwireshark.dll $(INSTALL_DIR) /d
916         if exist epan\libwireshark.pdb xcopy .\epan\libwireshark.pdb $(INSTALL_DIR) /d
917 !ENDIF
918         xcopy ".\wiretap\wiretap-$(WTAP_VERSION).dll" $(INSTALL_DIR) /d
919         if exist ".\wiretap\wiretap-$(WTAP_VERSION).pdb" xcopy ".\wiretap\wiretap-$(WTAP_VERSION).pdb" $(INSTALL_DIR) /d
920         xcopy ".\wsutil\libwsutil.dll" $(INSTALL_DIR) /d
921         if exist wireshark.exe copy wireshark.exe $(INSTALL_DIR)\wireshark.exe
922         if exist wireshark.pdb copy wireshark.pdb $(INSTALL_DIR)\wireshark.pdb
923         if exist ".\docbook\user-guide.chm" xcopy ".\docbook\user-guide.chm" $(INSTALL_DIR) /d
924         if exist tshark.exe xcopy tshark.exe $(INSTALL_DIR) /d
925         if exist tshark.pdb xcopy tshark.pdb $(INSTALL_DIR) /d
926         if exist rawshark.exe xcopy rawshark.exe $(INSTALL_DIR) /d
927         if exist rawshark.pdb xcopy rawshark.pdb $(INSTALL_DIR) /d
928         if exist dumpcap.exe xcopy dumpcap.exe $(INSTALL_DIR) /d
929         if exist dumpcap.pdb xcopy dumpcap.pdb $(INSTALL_DIR) /d
930         if exist mergecap.exe xcopy mergecap.exe $(INSTALL_DIR) /d
931         if exist mergecap.pdb xcopy mergecap.pdb $(INSTALL_DIR) /d
932         if exist text2pcap.exe xcopy text2pcap.exe $(INSTALL_DIR) /d
933         if exist text2pcap.pdb xcopy text2pcap.pdb $(INSTALL_DIR) /d
934         if exist capinfos.exe xcopy capinfos.exe $(INSTALL_DIR) /d
935         if exist capinfos.pdb xcopy capinfos.pdb $(INSTALL_DIR) /d
936         if exist editcap.exe xcopy editcap.exe $(INSTALL_DIR) /d
937         if exist editcap.pdb xcopy editcap.pdb $(INSTALL_DIR) /d
938         xcopy "doc\AUTHORS-SHORT" $(INSTALL_DIR) /d
939         xcopy ".\manuf" $(INSTALL_DIR) /d
940         xcopy ".\services" $(INSTALL_DIR) /d
941         $(TEXTIFY) ".\COPYING" $(INSTALL_DIR)
942         $(TEXTIFY) ".\NEWS" $(INSTALL_DIR)
943         $(TEXTIFY) ".\README" $(INSTALL_DIR)
944         $(TEXTIFY) ".\README.windows" $(INSTALL_DIR)
945         xcopy ".\cfilters" $(INSTALL_DIR) /d
946         xcopy ".\colorfilters" $(INSTALL_DIR) /d
947         xcopy ".\dfilters" $(INSTALL_DIR) /d
948         xcopy ".\smi_modules" $(INSTALL_DIR) /d
949 !IFDEF LUA_DIR
950         xcopy ".\epan\wslua\init.lua" $(INSTALL_DIR) /d
951         xcopy ".\epan\wslua\console.lua" $(INSTALL_DIR) /d
952 !ENDIF
953         xcopy ipmap.html $(INSTALL_DIR) /d
954         xcopy doc\*.html $(INSTALL_DIR) /d
955         if not exist $(INSTALL_DIR)\help mkdir $(INSTALL_DIR)\help
956         xcopy ".\help\*.*" $(INSTALL_DIR)\help /d
957 # you can't reliably use xcopy to rename files "on the fly" (so copy first, then rename)
958         xcopy ".\help\faq.txt" $(INSTALL_DIR) /d
959         $(UNIX2DOS) $(INSTALL_DIR)/help/*.txt
960         if not exist $(INSTALL_DIR)\dtds mkdir $(INSTALL_DIR)\dtds
961         xcopy ".\dtds\*.*" $(INSTALL_DIR)\dtds /d
962         if not exist $(INSTALL_DIR)\asn1 mkdir $(INSTALL_DIR)\asn1
963         echo create empty asn1 default.tt file to prevent problems 2> $(INSTALL_DIR)\asn1\default.tt
964         if not exist $(INSTALL_DIR)\radius mkdir $(INSTALL_DIR)\radius
965         xcopy ".\radius\*.*" $(INSTALL_DIR)\radius /d
966         if not exist $(INSTALL_DIR)\diameter mkdir $(INSTALL_DIR)\diameter
967         xcopy ".\diameter\*.dtd" $(INSTALL_DIR)\diameter /d
968         xcopy ".\diameter\*.xml" $(INSTALL_DIR)\diameter /d
969         if not exist $(INSTALL_DIR)\tpncp mkdir $(INSTALL_DIR)\tpncp
970         xcopy ".\tpncp\*.dat" $(INSTALL_DIR)\tpncp /d
971         if not exist $(INSTALL_DIR)\wimaxasncp mkdir $(INSTALL_DIR)\wimaxasncp
972         xcopy ".\wimaxasncp\*.*" $(INSTALL_DIR)\wimaxasncp /d
973         if not exist $(INSTALL_DIR)\plugins mkdir $(INSTALL_DIR)\plugins
974         if not exist $(INSTALL_DIR)\plugins\$(VERSION) mkdir $(INSTALL_DIR)\plugins\$(VERSION)
975         cd plugins 
976         $(MAKE) /$(MAKEFLAGS) -f Makefile.nmake install-plugins 
977         cd .. 
978
979 # "install-all" will copy all files needed to run Wireshark/Tshark
980 # to the INSTALL_DIR, so you can run/debug Wireshark/Tshark from there.
981 install-all: install-generated-files
982         set copycmd=/y
983         if not exist $(INSTALL_DIR) mkdir $(INSTALL_DIR)
984         xcopy $(GTK_DIR)\bin\libgdk-win32-2.0-0.dll $(INSTALL_DIR) /d
985         xcopy $(GTK_DIR)\bin\libgdk_pixbuf-2.0-0.dll $(INSTALL_DIR) /d
986         xcopy $(GTK_DIR)\bin\libgtk-win32-2.0-0.dll $(INSTALL_DIR) /d
987         xcopy $(GTK_DIR)\bin\libatk-1.0-0.dll $(INSTALL_DIR) /d
988         xcopy $(GTK_DIR)\bin\libpango-1.0-0.dll $(INSTALL_DIR) /d
989         xcopy $(GTK_DIR)\bin\libpangowin32-1.0-0.dll $(INSTALL_DIR) /d
990         if not exist $(INSTALL_DIR)\etc mkdir $(INSTALL_DIR)\etc
991         if not exist $(INSTALL_DIR)\etc\gtk-2.0 mkdir $(INSTALL_DIR)\etc\gtk-2.0
992         if not exist $(INSTALL_DIR)\etc\pango mkdir $(INSTALL_DIR)\etc\pango
993         if not exist $(INSTALL_DIR)\lib mkdir $(INSTALL_DIR)\lib
994         if not exist $(INSTALL_DIR)\lib\gtk-2.0 mkdir $(INSTALL_DIR)\lib\gtk-2.0
995         if not exist $(INSTALL_DIR)\lib\gtk-2.0\modules mkdir $(INSTALL_DIR)\lib\gtk-2.0\modules
996         if not exist $(INSTALL_DIR)\lib\gtk-2.0\$(GTK_LIB_DIR) mkdir $(INSTALL_DIR)\lib\gtk-2.0\$(GTK_LIB_DIR)
997         if not exist $(INSTALL_DIR)\lib\gtk-2.0\$(GTK_LIB_DIR)\loaders mkdir $(INSTALL_DIR)\lib\gtk-2.0\$(GTK_LIB_DIR)\loaders
998         if not exist $(INSTALL_DIR)\lib\gtk-2.0\$(GTK_LIB_DIR)\engines mkdir $(INSTALL_DIR)\lib\gtk-2.0\$(GTK_LIB_DIR)\engines
999         xcopy $(GTK_DIR)\etc\gtk-2.0\*.* $(INSTALL_DIR)\etc\gtk-2.0 /d
1000         if exist $(GTK_DIR)\etc\pango xcopy $(GTK_DIR)\etc\pango\pango.* $(INSTALL_DIR)\etc\pango /d
1001         if exist $(GTK_DIR)\lib\gtk-2.0\$(GTK_LIB_DIR)\loaders xcopy $(GTK_DIR)\lib\gtk-2.0\$(GTK_LIB_DIR)\loaders\libpixbufloader-*.dll $(INSTALL_DIR)\lib\gtk-2.0\$(GTK_LIB_DIR)\loaders /d
1002         xcopy $(GTK_DIR)\lib\gtk-2.0\modules\libgail.dll $(INSTALL_DIR)\lib\gtk-2.0\modules /d
1003         xcopy $(GTK_DIR)\lib\gtk-2.0\$(GTK_LIB_DIR)\engines\libpixmap.dll $(INSTALL_DIR)\lib\gtk-2.0\$(GTK_LIB_DIR)\engines /d
1004 !IFDEF NEED_LIBPNG_DLL
1005         xcopy $(GTK_DIR)\bin\$(PNG_DLL) $(INSTALL_DIR) /d
1006 !ENDIF
1007 !IFDEF NEED_LIBTIFF_DLL
1008         xcopy $(GTK_DIR)\bin\$(TIFF_DLL) $(INSTALL_DIR) /d
1009 !ENDIF
1010 !IFDEF NEED_LIBJPEG_DLL
1011         xcopy $(GTK_DIR)\bin\$(JPEG_DLL) $(INSTALL_DIR) /d
1012 !ENDIF
1013 !IFDEF NEED_CAIRO_DLL
1014         xcopy $(GTK_DIR)\bin\libcairo-2.dll $(INSTALL_DIR)  /d
1015         xcopy $(GTK_DIR)\bin\libpangocairo-1.0-0.dll $(INSTALL_DIR) /d
1016 !ENDIF
1017 !IFDEF NEED_FREETYPE_DLL
1018         xcopy $(GTK_DIR)\bin\libpangoft2-1.0-0.dll $(INSTALL_DIR) /d
1019         xcopy $(GTK_DIR)\bin\$(FREETYPE_DLL) $(INSTALL_DIR) /d
1020 !ENDIF
1021 !IFDEF NEED_FONTCONFIG_DLL
1022         xcopy $(GTK_DIR)\bin\$(FONTCONFIG_DLL) $(INSTALL_DIR) /d
1023 !ENDIF
1024 !IFDEF NEED_EXPAT_DLL
1025         xcopy $(GTK_DIR)\bin\$(EXPAT_DLL) $(INSTALL_DIR) /d
1026 !ENDIF
1027         if not exist $(INSTALL_DIR)\$(GTK_WIMP_DLLDST_DIR) mkdir $(INSTALL_DIR)\$(GTK_WIMP_DLLDST_DIR)
1028         xcopy "$(GTK_WIMP_DLLSRC_DIR)\libwimp.dll" $(INSTALL_DIR)\$(GTK_WIMP_DLLDST_DIR) /d
1029         if not exist $(INSTALL_DIR)\$(GTK_WIMP_RCDST_DIR) mkdir $(INSTALL_DIR)\$(GTK_WIMP_RCDST_DIR)
1030         xcopy "$(GTK_WIMP_RCSRC_DIR)\gtkrc" $(INSTALL_DIR)\$(GTK_WIMP_RCDST_DIR) /d
1031         xcopy $(GTK_DIR)\bin\libgio-2.0-0.dll $(INSTALL_DIR) /d
1032         xcopy $(GTK_DIR)\bin\libglib-2.0-0.dll $(INSTALL_DIR) /d
1033         xcopy $(GTK_DIR)\bin\libgmodule-2.0-0.dll $(INSTALL_DIR) /d
1034         xcopy $(GTK_DIR)\bin\libgobject-2.0-0.dll $(INSTALL_DIR) /d
1035         xcopy $(GTK_DIR)\bin\libgthread-2.0-0.dll $(INSTALL_DIR) /d
1036         xcopy $(GTK_DIR)\bin\$(INTL_DLL) $(INSTALL_DIR) /d
1037 !IFDEF ZLIB_DIR
1038         xcopy $(ZLIB_DLL) $(INSTALL_DIR) /d
1039 !ENDIF
1040 !IFDEF C_ARES_DIR
1041         xcopy $(C_ARES_DLL) $(INSTALL_DIR) /d
1042 !ENDIF
1043 !IFDEF ADNS_DIR
1044         xcopy $(ADNS_DLL) $(INSTALL_DIR) /d
1045 !ENDIF
1046 !IFDEF PCRE_DIR
1047         xcopy $(PCRE_DIR)\bin\pcre3.dll $(INSTALL_DIR) /d
1048         xcopy $(PCRE_DIR)\man\cat3\pcrepattern.3.txt $(INSTALL_DIR) /d
1049 !ENDIF
1050 !IFDEF KFW_DIR
1051         xcopy $(KFW_PATH)\comerr32.dll $(INSTALL_DIR) /d
1052         xcopy $(KFW_PATH)\krb5_32.dll $(INSTALL_DIR) /d
1053         xcopy $(KFW_PATH)\k5sprt32.dll $(INSTALL_DIR) /d
1054 !ENDIF
1055 !IFDEF GNUTLS_DIR
1056         xcopy $(GNUTLS_DIR)\bin\libgcrypt-11.dll $(INSTALL_DIR) /d
1057         xcopy $(GNUTLS_DIR)\bin\libgnutls-26.dll $(INSTALL_DIR) /d
1058         xcopy $(GNUTLS_DIR)\bin\libgpg-error-0.dll $(INSTALL_DIR) /d
1059         xcopy $(GNUTLS_DIR)\bin\libtasn1-3.dll $(INSTALL_DIR) /d
1060 !ENDIF
1061 !IFDEF LUA_DIR
1062         xcopy "$(LUA_DIR)\lua5.1.dll" $(INSTALL_DIR) /d
1063 !ENDIF
1064 !IFDEF SMI_DIR
1065         if not exist $(INSTALL_DIR)\snmp mkdir $(INSTALL_DIR)\snmp
1066         if not exist $(INSTALL_DIR)\snmp\mibs mkdir $(INSTALL_DIR)\snmp\mibs
1067         xcopy "$(SMI_DIR)\lib\smi.dll" $(INSTALL_DIR) /d
1068         xcopy "$(SMI_DIR)\mibs\*" $(INSTALL_DIR)\snmp\mibs /d
1069 !ENDIF
1070
1071 clean-deps:
1072         rm -rf $(INSTALL_DIR)
1073         cd plugins
1074         $(MAKE) /$(MAKEFLAGS) -f Makefile.nmake clean-deps
1075         cd ..
1076
1077 checkapi_local:
1078         $(PERL) tools/checkAPIs.pl \
1079         $(wireshark_SOURCES) \
1080         $(TSHARK_TAP_SRC) \
1081 #       $(EXTRA_wireshark_SOURCES)
1082
1083 checkapi: checkapi_local
1084         cd wiretap
1085         $(MAKE) /$(MAKEFLAGS) -f Makefile.nmake checkapi
1086         cd ../codecs
1087         $(MAKE) /$(MAKEFLAGS) -f Makefile.nmake checkapi
1088         cd ../gtk
1089         $(MAKE) /$(MAKEFLAGS) -f Makefile.nmake checkapi
1090         cd ../epan
1091 ##      $(MAKE) /$(MAKEFLAGS) -f Makefile.nmake checkapi
1092         cd ../epan/crypt
1093 ##      $(MAKE) /$(MAKEFLAGS) -f Makefile.nmake checkapi
1094         cd ../dfilter
1095         $(MAKE) /$(MAKEFLAGS) -f Makefile.nmake checkapi
1096         cd ../ftypes
1097 ##      $(MAKE) /$(MAKEFLAGS) -f Makefile.nmake checkapi
1098         cd ../wslua
1099 ##      $(MAKE) /$(MAKEFLAGS) -f Makefile.nmake checkapi
1100         cd ../dissectors
1101         $(MAKE) /$(MAKEFLAGS) -f Makefile.nmake checkapi
1102         cd ..
1103         cd ../plugins
1104         $(MAKE) /$(MAKEFLAGS) -f Makefile.nmake checkapi
1105         cd ../wsutil
1106         $(MAKE) /$(MAKEFLAGS) -f Makefile.nmake checkapi
1107
1108 ####
1109 _FORCE_:  ## Assumption: no file named _FORCE_ exists in the current directory
1110