(Try to) fix VS Clang Analysis warning:
[metze/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_LIB_DIR)"] != 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=\
43         $(STANDARD_CFLAGS) \
44         /I.  /Iwiretap $(GLIB_CFLAGS) \
45         $(ZLIB_CFLAGS) /I$(PCAP_DIR)\include $(AIRPCAP_CFLAGS) \
46         $(C_ARES_CFLAGS) $(ADNS_CFLAGS) $(GNUTLS_CFLAGS) \
47         $(PYTHON_CFLAGS) $(SMI_CFLAGS) $(GEOIP_CFLAGS) $(WINSPARKLE_CFLAGS)
48
49 CFLAGS=$(WARNINGS_ARE_ERRORS) $(GENERATED_CFLAGS)
50
51 .c.obj::
52         $(CC) $(CFLAGS) -Fd.\ -c $<
53
54 PLATFORM_SRC = capture-wpcap.c capture_wpcap_packet.c capture_win_ifnames.c
55
56 include Makefile.common
57
58 wireshark_OBJECTS = $(WIRESHARK_COMMON_SRC:.c=.obj)
59 tshark_OBJECTS = $(tshark_SOURCES:.c=.obj)
60 rawshark_OBJECTS = $(rawshark_SOURCES:.c=.obj)
61 ###text2pcap_OBJECTS = $(text2pcap_SOURCES:.c=.obj)
62 mergecap_OBJECTS = $(mergecap_SOURCES:.c=.obj)
63 editcap_OBJECTS = $(editcap_SOURCES:.c=.obj)
64 capinfos_OBJECTS = $(capinfos_SOURCES:.c=.obj)
65 captype_OBJECTS = $(captype_SOURCES:.c=.obj)
66 dftest_OBJECTS = $(dftest_SOURCES:.c=.obj)
67 dumpcap_OBJECTS = $(dumpcap_SOURCES:.c=.obj)
68 randpkt_OBJECTS = $(randpkt_SOURCES:.c=.obj)
69
70 #
71 # psapi.lib see http://msdn.microsoft.com/en-us/library/windows/desktop/ms683219(v=vs.85).aspx
72 #
73
74 wireshark_LIBS= wiretap\wiretap-$(WTAP_VERSION).lib \
75         wsock32.lib user32.lib shell32.lib comctl32.lib ole32.lib psapi.lib \
76         $(GTHREAD_LIBS) \
77         $(HHC_LIBS) \
78         wsutil\libwsutil.lib \
79         $(GNUTLS_LIBS) \
80         $(PYTHON_LIBS) \
81         $(WINSPARKLE_LIBS) \
82 !IFDEF ENABLE_LIBWIRESHARK
83         epan\libwireshark.lib \
84 !ELSE
85         epan\dissectors\dissectors.lib \
86         epan\wireshark.lib \
87         epan\crypt\airpdcap.lib \
88         epan\dfilter\dfilter.lib \
89         epan\ftypes\ftypes.lib \
90         $(C_ARES_LIBS) \
91         $(ADNS_LIBS) \
92         $(ZLIB_LIBS)
93 !ENDIF
94
95 tshark_LIBS= wiretap\wiretap-$(WTAP_VERSION).lib \
96         wsock32.lib user32.lib psapi.lib \
97         $(GLIB_LIBS) \
98         $(GTHREAD_LIBS) \
99         wsutil\libwsutil.lib \
100         $(GNUTLS_LIBS) \
101         $(PYTHON_LIBS) \
102 !IFDEF ENABLE_LIBWIRESHARK
103         epan\libwireshark.lib \
104 !ELSE
105         epan\dissectors\dissectors.lib \
106         epan\wireshark.lib \
107         epan\crypt\airpdcap.lib \
108         epan\dfilter\dfilter.lib \
109         epan\ftypes\ftypes.lib \
110         $(C_ARES_LIBS) \
111         $(ADNS_LIBS) \
112         $(ZLIB_LIBS)
113 !ENDIF
114
115 rawshark_LIBS= wiretap\wiretap-$(WTAP_VERSION).lib \
116         wsock32.lib user32.lib psapi.lib \
117         $(GLIB_LIBS) \
118         wsutil\libwsutil.lib \
119         $(GNUTLS_LIBS) \
120         $(PYTHON_LIBS) \
121 !IFDEF ENABLE_LIBWIRESHARK
122         epan\libwireshark.lib \
123 !ELSE
124         epan\dissectors\dissectors.lib \
125         epan\wireshark.lib \
126         epan\crypt\airpdcap.lib \
127         epan\dfilter\dfilter.lib \
128         epan\ftypes\ftypes.lib \
129         $(C_ARES_LIBS) \
130         $(ADNS_LIBS) \
131         $(ZLIB_LIBS)
132 !ENDIF
133
134 capinfos_LIBS= wiretap\wiretap-$(WTAP_VERSION).lib \
135         wsock32.lib user32.lib shell32.lib \
136         wsutil\libwsutil.lib \
137         $(GLIB_LIBS) \
138         $(GCRYPT_LIBS)
139
140 captype_LIBS= wiretap\wiretap-$(WTAP_VERSION).lib \
141         wsock32.lib user32.lib shell32.lib \
142         wsutil\libwsutil.lib \
143         $(GLIB_LIBS)
144
145 editcap_LIBS= wiretap\wiretap-$(WTAP_VERSION).lib \
146         wsock32.lib user32.lib shell32.lib \
147         wsutil\libwsutil.lib \
148         $(GLIB_LIBS)
149
150 mergecap_LIBS= wiretap\wiretap-$(WTAP_VERSION).lib \
151         wsock32.lib user32.lib \
152         wsutil\libwsutil.lib \
153         $(GLIB_LIBS)
154
155 reordercap_LIBS= wiretap\wiretap-$(WTAP_VERSION).lib \
156         wsock32.lib user32.lib \
157         wsutil\libwsutil.lib \
158         $(GLIB_LIBS)
159
160 text2pcap_LIBS= \
161         wsock32.lib user32.lib \
162         wsutil\libwsutil.lib \
163         $(GLIB_LIBS)
164
165 dumpcap_LIBS= \
166         wsock32.lib user32.lib \
167         wsutil\libwsutil.lib \
168         $(GLIB_LIBS) \
169         $(GTHREAD_LIBS)
170
171 dftest_LIBS=  wiretap\wiretap-$(WTAP_VERSION).lib \
172         wsock32.lib user32.lib psapi.lib \
173         $(GLIB_LIBS) \
174         wsutil\libwsutil.lib \
175         $(GNUTLS_LIBS) \
176 !IFDEF ENABLE_LIBWIRESHARK
177         epan\libwireshark.lib \
178 !ELSE
179         epan\dissectors\dissectors.lib \
180         epan\wireshark.lib \
181         epan\dfilter\dfilter.lib epan\ftypes\ftypes.lib \
182         $(C_ARES_LIBS) \
183         $(ADNS_LIBS) \
184         $(ZLIB_LIBS) \
185         $(SMI_LIBS)
186 !ENDIF
187
188 randpkt_LIBS= wiretap\wiretap-$(WTAP_VERSION).lib \
189         user32.lib \
190         wsutil\libwsutil.lib \
191         $(GLIB_LIBS)
192
193 EXECUTABLES=wireshark.exe tshark.exe rawshark.exe \
194         capinfos.exe captype.exe editcap.exe mergecap.exe text2pcap.exe \
195         randpkt.exe reordercap.exe dumpcap.exe dftest.exe
196
197 !IFDEF QT5_BASE_DIR
198 EXECUTABLES=$(EXECUTABLES) qtshark.exe
199 !ENDIF
200
201 RESOURCES=image\wireshark.res image\file_dlg_win32.res \
202         image\libwireshark.res image\tshark.res image\capinfos.res \
203         image\captype.res image\editcap.res image\mergecap.res \
204         image\text2pcap.res image\wiretap.res image\dumpcap.res \
205         image\rawshark.res image\reordercap.res image\libwsutil.res
206
207
208 all: $(LIBS_CHECK) config.h ui\qt\config.pri tools image codecs $(C_ARES_DLL) $(ADNS_DLL) $(ZLIB_DLL) wsutil wiretap epan $(EXECUTABLES) wireshark.bsc $(RESOURCES) help install-all
209
210 !IFDEF MAKENSIS
211 packaging: all
212         cd packaging
213         cd nsis
214         $(MAKE) /$(MAKEFLAGS) -f Makefile.nmake
215         cd ..
216         cd ..
217 !ELSE
218 packaging: _FORCE_
219         @echo \? NSIS not available (MAKENSIS not defined in config.nmake)
220         @echo.
221         @exit 1
222 !ENDIF
223
224 packaging_papps: all
225         cd packaging
226         cd portableapps
227         cd win32
228         $(MAKE) /$(MAKEFLAGS) -f Makefile.nmake
229         cd ..
230         cd ..
231         cd ..
232
233 # use (info-)zip from cygwin to pack things
234 packaging_zip: all
235 !IFDEF MSVCR_DLL
236         xcopy "$(MSVCR_DLL)" $(INSTALL_DIR)
237 !ENDIF
238 !IFDEF VCREDIST_EXE
239         @echo Including vcredist_$(TARGET_MACHINE).exe -- your recipient may need to run it!
240         xcopy "$(VCREDIST_EXE)" $(INSTALL_DIR)
241 !ENDIF
242         rm -f wireshark.zip
243         zip -r -9 wireshark.zip $(INSTALL_DIR)/
244
245 !IFDEF WIRESHARK_GENERATE_BSC_FILE
246 # FIXME: Add epan\wspython\*.sbr when we support Python embedding
247 # Note: Certain .sbr files cause bscmake warning "too many references... ignoring ..."
248 # XXX: It seems that using .bsc files with VS2010 doesn't work (isn't supported ?)
249 #      Using .bsc files with VS2008 may work
250 #      See: http://ask.wireshark.org/questions/8660/wireshark-building-and-debugging-on-visual-c-or-visual-studio
251 wireshark.bsc: \
252         *.sbr                           \
253         codecs\*.sbr                    \
254         epan\*.sbr                      \
255         epan\crypt\*.sbr                \
256         epan\dfilter\*.sbr              \
257         epan\dissectors\*.sbr           \
258         epan\ftypes\*.sbr               \
259         epan\wslua\*.sbr                \
260         plugins\asn1\*.sbr              \
261         plugins\docsis\*.sbr            \
262         plugins\ethercat\*.sbr          \
263         plugins\gryphon\*.sbr           \
264         plugins\irda\*.sbr              \
265         plugins\m2m\*.sbr               \
266         plugins\mate\*.sbr              \
267         plugins\opcua\*.sbr             \
268         plugins\profinet\*.sbr          \
269         plugins\stats_tree\*.sbr        \
270         plugins\unistim\*.sbr           \
271         plugins\wimax\*.sbr             \
272         plugins\wimaxasncp\*.sbr        \
273         plugins\wimaxmacphy\*.sbr       \
274         ui\*.sbr                        \
275         ui\cli\*.sbr                    \
276         ui\gtk\*.sbr                    \
277         ui\win32\*.sbr                  \
278         wiretap\*.sbr                   \
279         wsutil\*.sbr
280         $(BSCMAKE) @<<
281                 /o $@ $?
282 <<
283 !ELSE
284 wireshark.bsc:
285 !ENDIF
286
287 pdb_zip: all
288         cd $(INSTALL_DIR)
289         rm -f ../[Ww]ireshark-pdb-$(WIRESHARK_TARGET_PLATFORM)-$(VERSION).zip
290         zip -9 ../Wireshark-pdb-$(WIRESHARK_TARGET_PLATFORM)-$(VERSION).zip *.pdb *.lib
291         cd ..
292
293 $(RESOURCES): image
294
295 ## Note: The proper "SUBSYSTEM" link option to be used for linking each of the Wireshark executables
296 ##       is specified in '$(guiflags)' or '$(conflags)' as used as part of the link options.
297 ##       (These variables are defined in win32.mak).
298 wiretap\wiretap-$(WTAP_VERSION).lib: image $(ZLIB_DLL) wiretap
299
300 wireshark.exe   : $(LIBS_CHECK) config.h $(wireshark_OBJECTS) codecs epan ui gtk win32 image\wireshark.res image\file_dlg_win32.res wsutil\libwsutil.lib wiretap\wiretap-$(WTAP_VERSION).lib codecs\codecs.lib ui\libui.lib ui\gtk\libgtkui.lib ui\win32\libgtkui_win32.lib plugins
301         @echo Linking $@
302         $(LINK) @<<
303                 /OUT:$(PROGRAM_NAME).exe $(guiflags) $(guilibsdll) $(LDFLAGS) /LARGEADDRESSAWARE $(wireshark_LIBS) $(GTK_LIBS) codecs\codecs.lib ui\gtk\libgtkui.lib ui\win32\libgtkui_win32.lib ui\libui.lib $(wireshark_OBJECTS) image\wireshark.res image\file_dlg_win32.res
304 <<
305 !IFDEF MANIFEST_INFO_REQUIRED
306         mt.exe -nologo -manifest "wireshark.exe.manifest" -outputresource:$(PROGRAM_NAME).exe;1
307 !ENDIF
308
309 qtshark.exe     : install-generated-files $(LIBS_CHECK) config.h epan ui qt wsutil\libwsutil.lib wiretap\wiretap-$(WTAP_VERSION).lib plugins
310
311 tshark.exe      : $(LIBS_CHECK) config.h $(tshark_OBJECTS) epan ui cli image\tshark.res wsutil\libwsutil.lib wiretap\wiretap-$(WTAP_VERSION).lib plugins
312         @echo Linking $@
313         $(LINK) @<<
314                 /OUT:tshark.exe $(conflags) $(conlibsdll) $(LDFLAGS) /LARGEADDRESSAWARE $(tshark_LIBS) $(tshark_OBJECTS) ui\cli\libcliui.lib ui\libui.lib image\tshark.res
315 <<
316 !IFDEF MANIFEST_INFO_REQUIRED
317         mt.exe -nologo -manifest "tshark.exe.manifest" -outputresource:tshark.exe;1
318 !ENDIF
319
320 rawshark.exe    : $(LIBS_CHECK) config.h $(rawshark_OBJECTS) epan ui image\rawshark.res wsutil\libwsutil.lib wiretap\wiretap-$(WTAP_VERSION).lib plugins
321         @echo Linking $@
322         $(LINK) @<<
323                 /OUT:rawshark.exe $(conflags) $(conlibsdll) $(LDFLAGS) /LARGEADDRESSAWARE $(rawshark_LIBS) $(rawshark_OBJECTS) ui\libui.lib image\rawshark.res
324 <<
325 !IFDEF MANIFEST_INFO_REQUIRED
326         mt.exe -nologo -manifest "rawshark.exe.manifest" -outputresource:rawshark.exe;1
327 !ENDIF
328
329 # Linking with setargv.obj enables "wildcard expansion" of command-line arguments
330 capinfos.exe    : $(LIBS_CHECK) config.h $(capinfos_OBJECTS) wsutil\libwsutil.lib wiretap\wiretap-$(WTAP_VERSION).lib image\capinfos.res
331         @echo Linking $@
332         $(LINK) @<<
333                 /OUT:capinfos.exe $(conflags) $(conlibsdll) $(LDFLAGS) $(capinfos_OBJECTS) $(capinfos_LIBS) setargv.obj image\capinfos.res
334 <<
335 !IFDEF MANIFEST_INFO_REQUIRED
336         mt.exe -nologo -manifest "capinfos.exe.manifest" -outputresource:capinfos.exe;1
337 !ENDIF
338
339 # Linking with setargv.obj enables "wildcard expansion" of command-line arguments
340 captype.exe     : $(LIBS_CHECK) config.h $(captype_OBJECTS) wsutil\libwsutil.lib wiretap\wiretap-$(WTAP_VERSION).lib image\captype.res
341         @echo Linking $@
342         $(LINK) @<<
343                 /OUT:captype.exe $(conflags) $(conlibsdll) $(LDFLAGS) $(captype_OBJECTS) $(captype_LIBS) setargv.obj image\captype.res
344 <<
345 !IFDEF MANIFEST_INFO_REQUIRED
346         mt.exe -nologo -manifest "captype.exe.manifest" -outputresource:captype.exe;1
347 !ENDIF
348
349 editcap.exe     : $(LIBS_CHECK) config.h $(editcap_OBJECTS) wsutil\libwsutil.lib wiretap\wiretap-$(WTAP_VERSION).lib image\editcap.res
350         @echo Linking $@
351         $(LINK) @<<
352                 /OUT:editcap.exe $(conflags) $(conlibsdll) $(LDFLAGS) $(editcap_OBJECTS) $(editcap_LIBS) image\editcap.res
353 <<
354 !IFDEF MANIFEST_INFO_REQUIRED
355         mt.exe -nologo -manifest "editcap.exe.manifest" -outputresource:editcap.exe;1
356 !ENDIF
357
358 # Linking with setargv.obj enables "wildcard expansion" of command-line arguments
359 mergecap.exe    : $(LIBS_CHECK)  config.h $(mergecap_OBJECTS) wsutil\libwsutil.lib wiretap\wiretap-$(WTAP_VERSION).lib image\mergecap.res
360         @echo Linking $@
361         $(LINK) @<<
362                 /OUT:mergecap.exe $(conflags) $(conlibsdll) $(LDFLAGS) $(mergecap_OBJECTS) $(mergecap_LIBS) image\mergecap.res
363 <<
364 !IFDEF MANIFEST_INFO_REQUIRED
365         mt.exe -nologo -manifest "mergecap.exe.manifest" -outputresource:mergecap.exe;1
366 !ENDIF
367
368 reordercap.exe  : $(LIBS_CHECK)  config.h reordercap.obj wsutil\libwsutil.lib wiretap\wiretap-$(WTAP_VERSION).lib image\reordercap.res
369         @echo Linking $@
370         $(LINK) @<<
371                 /OUT:reordercap.exe $(conflags) $(conlibsdll) $(LDFLAGS) reordercap.obj $(reordercap_LIBS) setargv.obj image\reordercap.res
372 <<
373 !IFDEF MANIFEST_INFO_REQUIRED
374         mt.exe -nologo -manifest "reordercap.exe.manifest" -outputresource:reordercap.exe;1
375 !ENDIF
376
377 text2pcap.exe   : $(LIBS_CHECK) config.h text2pcap.obj text2pcap-scanner.obj pcapio.obj wsutil\libwsutil.lib wiretap\wiretap-$(WTAP_VERSION).lib image\text2pcap.res
378         @echo Linking $@
379         $(LINK) @<<
380                 /OUT:text2pcap.exe $(conflags) $(conlibsdll) $(LDFLAGS) text2pcap.obj text2pcap-scanner.obj pcapio.obj $(text2pcap_LIBS) image\text2pcap.res
381 <<
382 !IFDEF MANIFEST_INFO_REQUIRED
383         mt.exe -nologo -manifest "text2pcap.exe.manifest" -outputresource:text2pcap.exe;1
384 !ENDIF
385
386 dftest.exe      : $(dftest_OBJECTS) epan ui
387         @echo Linking $@
388         $(LINK) @<<
389                 /OUT:dftest.exe $(conflags) $(conlibsdll) $(LDFLAGS) $(dftest_LIBS) ui\libui.lib $(dftest_OBJECTS)
390 <<
391 !IFDEF MANIFEST_INFO_REQUIRED
392         mt.exe -nologo -manifest "dftest.exe.manifest" -outputresource:dftest.exe;1
393 !ENDIF
394
395 randpkt.exe     : $(randpkt_OBJECTS)
396         @echo Linking $@
397         $(LINK) @<<
398                 /OUT:randpkt.exe $(conflags) $(conlibsdll) $(LDFLAGS) $(randpkt_LIBS) $(randpkt_OBJECTS)
399 <<
400 !IFDEF MANIFEST_INFO_REQUIRED
401         mt.exe -nologo -manifest "randpkt.exe.manifest" -outputresource:randpkt.exe;1
402 !ENDIF
403
404 dumpcap.exe     : $(LIBS_CHECK) config.h $(dumpcap_OBJECTS) wsutil\libwsutil.lib image\dumpcap.res
405         @echo Linking $@
406         $(LINK) @<<
407                 /OUT:dumpcap.exe $(conflags) $(conlibsdll) $(LDFLAGS) $(dumpcap_LIBS) $(dumpcap_OBJECTS) image\dumpcap.res
408 <<
409 !IFDEF MANIFEST_INFO_REQUIRED
410         mt.exe -nologo -manifest "dumpcap.exe.manifest" -outputresource:dumpcap.exe;1
411 !ENDIF
412
413
414 config.h        : config.h.win32 config.nmake
415         sed -e s/@VERSION@/$(VERSION)/ \
416             -e s/@VERSION_MAJOR@/$(VERSION_MAJOR)/ \
417             -e s/@VERSION_MINOR@/$(VERSION_MINOR)/ \
418             -e s/@VERSION_MICRO@/$(VERSION_MICRO)/ \
419             -e "s/@HAVE_C_ARES@/$(C_ARES_CONFIG)/" \
420             -e "s/@HAVE_GNU_ADNS@/$(ADNS_CONFIG)/" \
421             -e "s/@HAVE_KFW@/$(KFW_CONFIG)/" \
422             -e "s/@HAVE_NETTLE@/$(NETTLE_CONFIG)/" \
423             -e "s/@HAVE_LIBZ@/$(ZLIB_CONFIG)/" \
424             -e "s/@HAVE_LIBPCAP@/$(WINPCAP_CONFIG)/" \
425             -e "s/@HAVE_PCAP_FINDALLDEVS@/$(PCAP_FINDALLDEVS_CONFIG)/" \
426             -e "s/@HAVE_PCAP_DATALINK_NAME_TO_VAL@/$(PCAP_DATALINK_NAME_TO_VAL_CONFIG)/" \
427             -e "s/@HAVE_PCAP_DATALINK_VAL_TO_NAME@/$(PCAP_DATALINK_VAL_TO_NAME_CONFIG)/" \
428             -e "s/@HAVE_PCAP_DATALINK_VAL_TO_DESCRIPTION@/$(PCAP_DATALINK_VAL_TO_DESCRIPTION_CONFIG)/" \
429             -e "s/@HAVE_PCAP_BREAKLOOP@/$(PCAP_BREAKLOOP_CONFIG)/" \
430             -e "s/@HAVE_REMOTE@/$(PCAP_HAVE_REMOTE_CONFIG)/" \
431             -e "s/@HAVE_PCAP_REMOTE@/$(PCAP_REMOTE_CONFIG)/" \
432             -e "s/@HAVE_PCAP_OPEN@/$(PCAP_OPEN_CONFIG)/" \
433             -e "s/@HAVE_PCAP_OPEN_DEAD@/$(PCAP_OPEN_DEAD_CONFIG)/" \
434             -e "s/@HAVE_PCAP_LIST_DATALINKS@/$(PCAP_LIST_DATALINKS_CONFIG)/" \
435             -e "s/@HAVE_PCAP_FREE_DATALINKS@/$(PCAP_FREE_DATALINKS_CONFIG)/" \
436             -e "s/@HAVE_PCAP_SET_DATALINK@/$(PCAP_SET_DATALINK_CONFIG)/" \
437             -e "s/@HAVE_PCAP_SETSAMPLING@/$(PCAP_SETSAMPLING_CONFIG)/" \
438             -e "s/@HAVE_BPF_IMAGE@/$(BPF_IMAGE_CONFIG)/" \
439             -e "s/@HAVE_LIBGNUTLS@/$(GNUTLS_CONFIG)/" \
440             -e "s/@HAVE_LIBGCRYPT@/$(LIBGCRYPT_CONFIG)/" \
441             -e "s/@HAVE_LUA@/$(LUA_CONFIG)/" \
442             -e "s/@HAVE_LUA@/$(LUA_VERSION)/" \
443             -e "s/@HAVE_PYTHON@/$(PYTHON_CONFIG)/" \
444             -e "s/@HAVE_AIRPCAP@/$(AIRPCAP_CONFIG)/" \
445             -e "s/@HAVE_AIRPDCAP@/$(AIRPDCAP_CONFIG)/" \
446             -e "s/@HAVE_LIBPORTAUDIO@/$(PORTAUDIO_CONFIG)/" \
447             -e "s/@PORTAUDIO_API_1@/$(PORTAUDIO_API_CONFIG)/" \
448             -e "s/@HAVE_SMI@/$(SMI_CONFIG)/" \
449             -e "s/@HAVE_GEOIP@/$(GEOIP_CONFIG)/" \
450             -e "s/@HAVE_GEOIP_V6@/$(GEOIP_V6_CONFIG)/" \
451             -e "s/@HAVE_SOFTWARE_UPDATE@/$(WINSPARKLE_CONFIG)/" \
452             -e "s/@INET6@/$(INET6_CONFIG)/" \
453             -e "s/@HAVE_NTDDNDIS_H@/$(NTDDNDIS_CONFIG)/" \
454             -e "s/@PCAP_NG_DEFAULT@/$(PCAP_NG_DEFAULT)/" \
455             -e "s/@WANT_PACKET_EDITOR@/$(WANT_PACKET_EDITOR)/" \
456             < config.h.win32 > $@
457
458 ui\qt\config.pri: config.nmake Makefile.nmake
459         @echo Creating <<ui\qt\config.pri
460 # Automatically generated from Makefile.nmake. Edit there, not here.
461 # qmake apparently requires a three-part numeric VERSION.
462 PROGRAM_NAME = $(PROGRAM_NAME)
463 VERSION = $(VERSION_MAJOR).$(VERSION_MINOR).$(VERSION_MICRO)
464 VERSION_FULL = $(VERSION)
465 WTAP_VERSION = $(WTAP_VERSION)
466 INSTALL_DIR = $(INSTALL_DIR)
467 !IFDEF MANIFEST_INFO_REQUIRED
468 CONFIG += wireshark_manifest_info_required
469 !ENDIF
470 !IFDEF KFW_DIR
471 CONFIG += wireshark_use_kfw
472 !ENDIF
473 WIRESHARK_LIB_DIR = $(WIRESHARK_LIB_DIR:\=/)
474 GLIB_DIR = $(GTK_DIR:\=/)
475 C_ARES_DIR = $(C_ARES_DIR:\=/)
476 ZLIB_DIR = $(ZLIB_DIR:\=/)
477 GNUTLS_DIR = $(GNUTLS_DIR:\=/)
478 SMI_DIR = $(SMI_DIR:\=/)
479 KFW_DIR = $(KFW_DIR:\=/)
480 LUA_DIR = $(LUA_DIR:\=/)
481 GEOIP_DIR = $(GEOIP_DIR:\=/)
482 WINSPARKLE_DIR = $(WINSPARKLE_DIR:\=/)
483
484 INTL_DLL = $(INTL_DLL)
485
486 guilibsdll = $(guilibsdll)
487
488 HHC_LIBS = $(HHC_LIBS)
489
490 SH = $(SH)
491 PYTHON = $(PYTHON)
492
493 MSVC_VARIANT = $(MSVC_VARIANT)
494 MSVCR_DLL = "$(MSVCR_DLL:\=/)"
495
496 QMAKE_CFLAGS         *= $(STANDARD_CFLAGS)
497 # NOMINMAX keeps windows.h from defining "min" and "max" via windef.h.
498 # This avoids conflicts with the C++ standard library.
499 QMAKE_CXXFLAGS       *= $(STANDARD_CFLAGS) /DNOMINMAX
500 QMAKE_LFLAGS         *= /LARGEADDRESSAWARE $(LDFLAGS)
501
502 <<KEEP
503
504 #
505 # Build the version string
506 #
507 !IF EXIST(".svn/wc.db")
508 SVNENTRIES = .svn/wc.db
509 !ELSE IF EXIST(".svn/entries")
510 SVNENTRIES = .svn/entries
511 !ELSE
512 SVNENTRIES =
513 !ENDIF
514 svnversion.h: $(SVNENTRIES)
515         rm -f svnversion.h
516         $(PERL) make-version.pl
517
518
519 text2pcap-scanner.c : text2pcap-scanner.l
520         $(LEX) -otext2pcap-scanner.c text2pcap-scanner.l
521
522 text2pcap-scanner.obj : text2pcap-scanner.c
523         $(CC) $(GENERATED_CFLAGS) -Fd.\ -c $?
524
525 #
526 # The following targets will rebuild their respective objs
527 # if and when svnversion.h should change.
528 #
529 text2pcap.obj mergecap.obj capinfos.obj captype.obj editcap.obj reordercap.obj version_info.obj: svnversion.h
530
531
532 clean-local:
533         rm -f $(wireshark_OBJECTS) $(tshark_OBJECTS) $(dumpcap_OBJECTS) $(rawshark_OBJECTS) \
534                 $(EXECUTABLES) *.pdb *.sbr *.exe.manifest \
535                 capinfos.obj capinfos.exp capinfos.lib \
536                 captype.obj captype.exp captype.lib \
537                 editcap.obj editcap.exp editcap.lib \
538                 mergecap.obj text2pcap.obj \
539                 reordercap.obj nio-ie5.obj update.obj \
540                 text2pcap-scanner.obj text2pcap-scanner.c \
541                 config.h ps.c $(LIBS_CHECK) \
542                 dftest.obj dftest.exe randpkt.obj randpkt.exe \
543                 doxygen.cfg \
544                 $(RESOURCES) libwireshark.dll wiretap-$(WTAP_VERSION).dll \
545                 libwsutil.dll \
546                 wireshark.bsc
547         rm -rf $(INSTALL_DIR)
548         rm -rf wireshark-qt-release
549
550 clean: clean-local
551         cd asn1
552         $(MAKE) /$(MAKEFLAGS) -f Makefile.nmake clean
553         cd ../wiretap
554         $(MAKE) /$(MAKEFLAGS) -f Makefile.nmake clean
555         cd ../wsutil
556         $(MAKE) /$(MAKEFLAGS) -f Makefile.nmake clean
557         cd ../codecs
558         $(MAKE) /$(MAKEFLAGS) -f Makefile.nmake clean
559         cd ../ui
560         $(MAKE) /$(MAKEFLAGS) -f Makefile.nmake clean
561         cd gtk
562         $(MAKE) /$(MAKEFLAGS) -f Makefile.nmake clean
563 !IFDEF QT5_BASE_DIR
564         cd ../qt
565         -$(MAKE) clean
566 !ENDIF
567         cd ../win32
568         $(MAKE) /$(MAKEFLAGS) -f Makefile.nmake clean
569         cd ../cli
570         $(MAKE) /$(MAKEFLAGS) -f Makefile.nmake clean
571         cd ../../epan
572         $(MAKE) /$(MAKEFLAGS) -f Makefile.nmake clean
573         cd ../plugins
574         $(MAKE) /$(MAKEFLAGS) -f Makefile.nmake clean
575         cd ../tools
576         $(MAKE) /$(MAKEFLAGS) -f Makefile.nmake clean
577         cd ../image
578         $(MAKE) /$(MAKEFLAGS) -f Makefile.nmake clean
579         cd ../doc
580         $(MAKE) /$(MAKEFLAGS) -f Makefile.nmake clean
581         cd ../docbook
582         $(MAKE) /$(MAKEFLAGS) -f Makefile.nmake clean
583         cd ../help
584         $(MAKE) /$(MAKEFLAGS) -f Makefile.nmake clean
585         cd ../packaging/nsis
586         $(MAKE) /$(MAKEFLAGS) -f Makefile.nmake clean
587         cd ../portableapps/win32
588         $(MAKE) /$(MAKEFLAGS) -f Makefile.nmake clean
589         cd ../../..
590
591 # "distclean" removes all files not part of the distribution.
592 # It does not remove generated files that are part of the distribution.
593 distclean-local: clean-local
594 !IFDEF ADNS_DIR
595         rm -f $(ADNS_DLL) $(ADNS_LIBS)
596 !ENDIF
597 !IFDEF ZLIB_DIR
598         rm -f $(ZLIB_DLL) $(ZLIB_DIR)\zlib1.dll.manifest \
599                 $(ZLIB_DIR)\include\zlib.h $(ZLIB_DIR)\include\zconf.h \
600                 $(ZLIB_DIR)\lib\zdll.lib
601 !ENDIF
602         rm -f config.h $(BUILT_SOURCES) wireshark-pdb*.zip
603
604 distclean: distclean-local
605         cd wiretap
606         $(MAKE) /$(MAKEFLAGS) -f Makefile.nmake distclean
607         cd ../wsutil
608         $(MAKE) /$(MAKEFLAGS) -f Makefile.nmake distclean
609         cd ../codecs
610         $(MAKE) /$(MAKEFLAGS) -f Makefile.nmake distclean
611         cd ../ui
612         $(MAKE) /$(MAKEFLAGS) -f Makefile.nmake distclean
613         cd gtk
614         $(MAKE) /$(MAKEFLAGS) -f Makefile.nmake distclean
615 !IFDEF QT5_BASE_DIR
616         cd ../qt
617         -$(MAKE) distclean
618 !ENDIF
619         cd ../win32
620         $(MAKE) /$(MAKEFLAGS) -f Makefile.nmake distclean
621         cd ../cli
622         $(MAKE) /$(MAKEFLAGS) -f Makefile.nmake distclean
623         cd ../../epan
624         $(MAKE) /$(MAKEFLAGS) -f Makefile.nmake distclean
625         cd ../plugins
626         $(MAKE) /$(MAKEFLAGS) -f Makefile.nmake distclean
627         cd ../tools
628         $(MAKE) /$(MAKEFLAGS) -f Makefile.nmake distclean
629         cd ../image
630         $(MAKE) /$(MAKEFLAGS) -f Makefile.nmake distclean
631         cd ../doc
632         $(MAKE) /$(MAKEFLAGS) -f Makefile.nmake distclean
633         cd ../docbook
634         $(MAKE) /$(MAKEFLAGS) -f Makefile.nmake distclean
635         cd ../help
636         $(MAKE) /$(MAKEFLAGS) -f Makefile.nmake distclean
637         cd ../packaging/nsis
638         $(MAKE) /$(MAKEFLAGS) -f Makefile.nmake distclean
639         cd ../portableapps/win32
640         $(MAKE) /$(MAKEFLAGS) -f Makefile.nmake distclean
641         cd ../../..
642
643 # Make "maintainer-clean" only if you would like to remove ALL generated
644 # files.
645 # Be sure to have python and perl installed to regenerate them.
646 maintainer-clean-local: distclean-local
647         rm -f $(GENERATED_FILES)
648
649 maintainer-clean: maintainer-clean-local
650         cd wiretap
651         $(MAKE) /$(MAKEFLAGS) -f Makefile.nmake maintainer-clean
652         cd ../wsutil
653         $(MAKE) /$(MAKEFLAGS) -f Makefile.nmake maintainer-clean
654         cd ../codecs
655         $(MAKE) /$(MAKEFLAGS) -f Makefile.nmake maintainer-clean
656         cd ../ui
657         $(MAKE) /$(MAKEFLAGS) -f Makefile.nmake maintainer-clean
658         cd gtk
659         $(MAKE) /$(MAKEFLAGS) -f Makefile.nmake maintainer-clean
660 !IFDEF QT5_BASE_DIR
661         cd ../qt
662         -$(MAKE) distclean
663 !ENDIF
664         cd ../win32
665         $(MAKE) /$(MAKEFLAGS) -f Makefile.nmake maintainer-clean
666         cd ../cli
667         $(MAKE) /$(MAKEFLAGS) -f Makefile.nmake maintainer-clean
668         cd ../../epan
669         $(MAKE) /$(MAKEFLAGS) -f Makefile.nmake maintainer-clean
670         cd ../plugins
671         $(MAKE) /$(MAKEFLAGS) -f Makefile.nmake maintainer-clean
672         cd ../tools
673         $(MAKE) /$(MAKEFLAGS) -f Makefile.nmake maintainer-clean
674         cd ../image
675         $(MAKE) /$(MAKEFLAGS) -f Makefile.nmake maintainer-clean
676         cd ../doc
677         $(MAKE) /$(MAKEFLAGS) -f Makefile.nmake maintainer-clean
678         cd ../docbook
679         $(MAKE) /$(MAKEFLAGS) -f Makefile.nmake maintainer-clean
680         cd ../help
681         $(MAKE) /$(MAKEFLAGS) -f Makefile.nmake maintainer-clean
682         cd ../packaging/nsis
683         $(MAKE) /$(MAKEFLAGS) -f Makefile.nmake maintainer-clean
684         cd ../portableapps/win32
685         $(MAKE) /$(MAKEFLAGS) -f Makefile.nmake maintainer-clean
686         cd ../../..
687
688 tools::
689         cd tools
690         $(MAKE) /$(MAKEFLAGS) -f Makefile.nmake
691         cd ..
692
693 image::
694         cd image
695         $(MAKE) /$(MAKEFLAGS) -f Makefile.nmake
696         cd ..
697
698 !IFDEF ADNS_DIR
699 # MSVC variants supported by Wireshark have to avoid indirectly using msvcrt.dll,
700 # therefore compile the adns dll from source ADNS_DIR package.
701 # To avoid path problems, copy the adns sources to a temp dir,
702 # compile and copy the resulting files back to (source) ADNS_DIR
703 #
704 # Unfortunately:
705 # - we need to "patch" adns_dll.rep and adns_dll.rc (at least for MSVC2005EE)
706 #
707 $(ADNS_DLL):
708         xcopy $(ADNS_DIR) adns.tmp /D /I /E /Y
709         copy adns_dll.dep adns.tmp\adns_win32\adns_dll
710         copy adns_dll.rc adns.tmp\adns_win32\adns_dll
711         cd adns.tmp\adns_win32\adns_dll
712         set CFG=adns_dll - Win32 Release
713         $(MAKE) /$(MAKEFLAGS) -f adns_dll.mak LOC="$(LOCAL_CFLAGS)"
714         cd ..\lib
715 !IFDEF MANIFEST_INFO_REQUIRED
716         mt.exe -nologo -manifest "adns_dll.dll.manifest" -outputresource:adns_dll.dll;2
717 !ENDIF
718         if not exist "$(WIRESHARK_LIB_DIR)\$(MSVC_VARIANT)\adns" mkdir "$(WIRESHARK_LIB_DIR)\$(MSVC_VARIANT)\adns"
719         copy adns_dll.dll $(ADNS_DLL)
720         copy adns_dll.lib $(ADNS_LIBS)
721         cd ..\..\..
722         rm -r -f adns.tmp
723 !ENDIF
724
725 !IFDEF ZLIB_DIR
726 # MSVC variants supported by Wireshark have to avoid indirectly using msvcrt.dll,
727 # therefore compile the zlib dll from source ZLIB_DIR package.
728 # To avoid path problems, copy the zlib sources to a temp dir,
729 # compile and copy the resulting files back to (source) ZLIB_DIR
730 $(ZLIB_DLL):
731         xcopy $(ZLIB_DIR) zlib.tmp /D /I /E /Y
732         cd zlib.tmp
733 !if "$(WIRESHARK_TARGET_PLATFORM)" == "win32"
734         $(MAKE) /$(MAKEFLAGS) -f win32/Makefile.msc zlib1.dll LOC="-DASMV -DASMINF" OBJA="inffas32.obj match686.obj"
735 !else
736         $(MAKE) /$(MAKEFLAGS) -f win32/Makefile.msc zlib1.dll AS=ml64 LOC="-DASMV -DASMINF" OBJA="inffasx64.obj gvmat64.obj inffas8664.obj"
737 !endif
738         if not exist $(ZLIB_DIR) mkdir $(ZLIB_DIR)
739         if not exist $(ZLIB_DIR)\lib mkdir $(ZLIB_DIR)\lib
740         if not exist $(ZLIB_DIR)\include mkdir $(ZLIB_DIR)\include
741 !IFDEF MANIFEST_INFO_REQUIRED
742         mt.exe -nologo -manifest "zlib1.dll.manifest" -outputresource:zlib1.dll;2
743 !ENDIF
744         copy zlib1.dll $(ZLIB_DIR)
745         copy zdll.lib $(ZLIB_DIR)\lib
746         copy zconf.h $(ZLIB_DIR)\include
747         copy zlib.h $(ZLIB_DIR)\include
748         cd ..
749         rm -r -f zlib.tmp
750 !ENDIF
751
752 wsutil::
753         cd wsutil
754         $(MAKE) /$(MAKEFLAGS) -f Makefile.nmake
755         cd ..
756
757 wiretap::
758         cd wiretap
759         $(MAKE) /$(MAKEFLAGS) -f Makefile.nmake
760         cd ..
761
762 codecs::
763         cd codecs
764         $(MAKE) /$(MAKEFLAGS) -f Makefile.nmake
765         cd ..
766
767 ui:: help config.h svnversion.h doxygen
768         cd ui
769         $(MAKE) /$(MAKEFLAGS) /f Makefile.nmake libui.lib
770         cd ..
771
772 gtk:: help config.h svnversion.h doxygen
773         cd ui/gtk
774         $(MAKE) /$(MAKEFLAGS) /f Makefile.nmake libgtkui.lib
775         cd ../..
776
777 # The Visual C++ static analyzer currently fails with error C2171
778 # when compiling summary_dialog.cpp. If/when this ever gets fixed
779 # we can remove the ENABLE_CODE_ANALYSIS check.
780 qt:: help config.h svnversion.h doxygen
781 !IFDEF QT5_BASE_DIR
782         cd ui/qt
783         $(QT5_BASE_DIR)\bin\qmake CONFIG+=release QtShark.pro
784 !IFDEF ENABLE_CODE_ANALYSIS
785         -nmake
786 !ELSE
787         nmake
788 !ENDIF
789         cd ../..
790 !ENDIF
791
792 win32::
793         cd ui/win32
794         $(MAKE) /$(MAKEFLAGS) /f Makefile.nmake libgtkui_win32.lib
795         cd ../..
796
797 cli:: help config.h svnversion.h doxygen
798         cd ui/cli
799         $(MAKE) /$(MAKEFLAGS) /f Makefile.nmake libcliui.lib
800         cd ../..
801
802 epan:: $(RESOURCES) $(ZLIB_DLL) wiretap\wiretap-$(WTAP_VERSION).lib $(BUILT_SOURCES) doxygen
803         cd epan
804         $(MAKE) /$(MAKEFLAGS) -f Makefile.nmake
805         cd ..
806
807 plugins::
808         cd plugins
809         $(MAKE) /$(MAKEFLAGS) -f Makefile.nmake
810         cd ..
811
812 doc::
813         cd doc
814         $(MAKE) /$(MAKEFLAGS) -f Makefile.nmake
815         cd ..
816
817 docbook::
818         cd docbook
819         $(MAKE) /$(MAKEFLAGS) -f Makefile.nmake
820         cd ..
821
822 help::
823         cd help
824         $(MAKE) /$(MAKEFLAGS) -f Makefile.nmake
825         cd ..
826
827 doxygen.cfg: config.nmake doxygen.cfg.in
828         sed -e s/@VERSION@/$(VERSION)/ \
829             < doxygen.cfg.in > $@
830
831 doxygen-run:
832 !IFDEF DOXYGEN
833         $(DOXYGEN) doxygen.cfg
834 !ENDIF
835
836 doxygen: doxygen.cfg doxygen-run
837
838 services: tools\make-services.py
839         $(PYTHON) tools/make-services.py
840
841 ################################################################################
842 # Prepare build environment by downloading and installing required libraries
843 ################################################################################
844
845 # The required tools to build Wireshark.
846 #
847 # The 'find' tool is available both in \WINNT\System32 and in cygwin's /usr/bin.
848 # We only need the cygwin version (for some shell scripts).
849 # In the PATH, System32 is before cygwin's dir, so explicitly check for /usr/bin/find.
850 REQUIRED_TOOLS=\
851         $(CC) \
852         $(LINK) \
853         nmake \
854 !IFDEF MANIFEST_INFO_REQUIRED
855         --windowsonly mt        \
856 !ENDIF
857         $(SH_PROG)      \
858         $(YACC) \
859         $(LEX)  \
860         env     \
861         grep    \
862         --cygwinonly /usr/bin/find      \
863         peflags \
864         $(PERL) \
865         $(PYTHON)       \
866 !IFDEF QT5_BASE_DIR
867         --windowsonly $(QT5_BASE_DIR)\bin\qmake \
868 !ENDIF
869         sed     \
870         unzip   \
871         wget
872
873 verify_tools:
874 # As win-setup.sh assumes the dir exists create it if it doesn't
875         @if not exist "$(WIRESHARK_LIB_DIR)" md "$(WIRESHARK_LIB_DIR)"
876         @$(SH) $(WIN_SETUP) --appverify $(REQUIRED_TOOLS)
877
878 # Targets and etc used to verify or download libraries
879
880 !IFNDEF WIN_SETUP_OPT
881 WIN_SETUP_OPT=--download
882 !ENDIF
883
884 # Verify that the required library 'package' (zip) files have been downloaded.
885 # (It seems reasonable to assume that if the files have been downloaded
886 #  then they have been installed).
887 check_libs:
888         $(MAKE) /$(MAKEFLAGS) -f Makefile.nmake WIN_SETUP_OPT=--libverify process_libs
889
890 # Verify library packages:
891 #  If $(CHECK_TAG) is non-null then checktag failed; Exit with an error message. (See beginning of this Makefile).
892 #  Otherwise do detailed library package files verification only if Makefile.nmake or config.make have been updated
893 #  (or dummy file doesn't exist because of 'make clean' or whatever).
894 #  Note that the creation/modification time of a file after an svn update of that file
895 #   is the time of the update (not the time of the file in the repository).
896 # touch is only called if libverify succeeds.
897 $(LIBS_CHECK):  $(CHECK_TAG) config.nmake Makefile.nmake
898         @echo  Verifying library package files ...
899         @$(MAKE) /$(MAKEFLAGS) -f Makefile.nmake WIN_SETUP_OPT=--libverify process_libs
900         @touch $@
901
902 # Target for "checktag failed" (libraries not up to date).
903 # Defined only if "checktag" failed (see beginning of this Makefile).
904 !IF "$(CHECK_TAG)" != ""
905 $(CHECK_TAG): _FORCE_
906         @echo \? Wireshark Libraries not up-to-date \?
907         @echo \? Do you need to run "nmake -f Makefile.nmake setup" \?
908         @echo.
909         @exit 1
910
911 !ENDIF
912
913 # Download (if needed) and install all the required libraries into WIRESHARK_LIB_DIR.
914 # A clean_setup is done first to ensure that the target dirs don't
915 # contain old files remaining from a previous setup run.
916 setup: verify_tools clean_setup process_libs
917
918 install_qt:
919         $(SH) $(WIN_SETUP) --download "C:\Qt" \
920                 . Qt-5.1.1-MSVC2010-$(WIRESHARK_TARGET_PLATFORM)-ws.zip
921         
922 # The process_libs target when invoked causes either a --libverify or a --download for all the required libraries.
923 # (The choice is determined by the value of the macro WIN_SETUP_OPT).
924 process_libs:
925         @if not exist "$(WIRESHARK_LIB_DIR)" md "$(WIRESHARK_LIB_DIR)"
926         @$(SH) $(WIN_SETUP) "$(WIN_SETUP_OPT)" "$(WIRESHARK_LIB_DIR)" \
927                 . WinPcap_$(WINPCAP_VERSION).exe
928 !IFNDEF QT5_BASE_DIR
929 !MESSAGE Can't find Qt. This will become a problem at some point.
930 !ENDIF
931 !IFDEF GTK_DIR
932         @$(SH) $(WIN_SETUP) "$(WIN_SETUP_OPT)" "$(WIRESHARK_LIB_DIR)" \
933                 "$(GTK_NAME)" gtk+-bundle_$(GTK_PKG)_$(WIRESHARK_TARGET_PLATFORM)$(PKG_SUFIX).zip
934 !ENDIF
935 !IFDEF KFW_DIR
936         @$(SH) $(WIN_SETUP) "$(WIN_SETUP_OPT)" "$(WIRESHARK_LIB_DIR)" \
937                 . kfw-3-2-2-i386-ws-vc6.zip
938 #       @$(SH) $(WIN_SETUP) "$(WIN_SETUP_OPT)" "$(WIRESHARK_LIB_DIR)" \
939 #               . kfw-3-2-2.zip
940 !ENDIF
941 !IFDEF PCAP_DIR
942         @$(SH) $(WIN_SETUP) "$(WIN_SETUP_OPT)" "$(WIRESHARK_LIB_DIR)" \
943                 . WpdPack_$(WPD_VERSION).zip
944 !ENDIF
945 !IFDEF AIRPCAP_DIR
946         @$(SH) $(WIN_SETUP) "$(WIN_SETUP_OPT)" "$(WIRESHARK_LIB_DIR)" \
947                 AirPcap_Devpack_4_1_0_1622 AirPcap_Devpack_4_1_0_1622.zip
948 !ENDIF
949 !IFDEF C_ARES_DIR
950         @$(SH) $(WIN_SETUP) "$(WIN_SETUP_OPT)" "$(WIRESHARK_LIB_DIR)" \
951                 . c-ares-$(C_ARES_PKG)-$(WIRESHARK_TARGET_PLATFORM)ws.zip
952 !ENDIF
953 !IFDEF ADNS_DIR
954         @$(SH) $(WIN_SETUP) "$(WIN_SETUP_OPT)" "$(WIRESHARK_LIB_DIR)" \
955                 . adns-1.0-win32-05ws.zip
956 !ENDIF
957 !IFDEF ZLIB_DIR
958         @$(SH) $(WIN_SETUP) "$(WIN_SETUP_OPT)" "$(WIRESHARK_LIB_DIR)" \
959 !if "$(WIRESHARK_TARGET_PLATFORM)" == "win32"
960                 zlib125 zlib-1.2.5.zip
961 !else
962                 zlib125 zlib125ws.zip
963 !endif
964 !ENDIF
965 !IFDEF LUA_DIR
966         @$(SH) $(WIN_SETUP) "$(WIN_SETUP_OPT)" "$(WIRESHARK_LIB_DIR)" \
967                 lua5.1.4 lua$(LUA_DIST)_lib.zip
968 !ENDIF
969
970 !IFDEF GNUTLS_PKG
971         @$(SH) $(WIN_SETUP) "$(WIN_SETUP_OPT)" "$(WIRESHARK_LIB_DIR)" \
972                 . gnutls-$(GNUTLS_PKG)-$(WIRESHARK_TARGET_PLATFORM)ws.zip
973 !ENDIF
974 !IFDEF PORTAUDIO_DIR
975         @$(SH) $(WIN_SETUP) "$(WIN_SETUP_OPT)" "$(WIRESHARK_LIB_DIR)" \
976                 . portaudio_v19_2.zip
977 !ENDIF
978 !IFDEF SMI_DIR
979         @$(SH) $(WIN_SETUP) "$(WIN_SETUP_OPT)" "$(WIRESHARK_LIB_DIR)" \
980                 . libsmi-$(SMI_PKG)-$(WIRESHARK_TARGET_PLATFORM)ws.zip
981 !ENDIF
982 !IFDEF GEOIP_DIR
983         @$(SH) $(WIN_SETUP) "$(WIN_SETUP_OPT)" "$(WIRESHARK_LIB_DIR)" \
984                 GeoIP-$(GEOIP_PKG)-$(WIRESHARK_TARGET_PLATFORM)ws GeoIP-$(GEOIP_PKG)-$(WIRESHARK_TARGET_PLATFORM)ws.zip
985 !ENDIF
986 !IFDEF WINSPARKLE_DIR
987         @$(SH) $(WIN_SETUP) "$(WIN_SETUP_OPT)" "$(WIRESHARK_LIB_DIR)" \
988                 . WinSparkle-$(WINSPARKLE_PKG).zip
989 !ENDIF
990 !IFDEF HHC_DIR
991         @$(SH) $(WIN_SETUP) "$(WIN_SETUP_OPT)" "$(WIRESHARK_LIB_DIR)" \
992                 user-guide user-guide-52567.zip
993 !ENDIF
994 !IFDEF UPX
995         @$(SH) $(WIN_SETUP) "$(WIN_SETUP_OPT)" "$(WIRESHARK_LIB_DIR)" \
996                 . upx303w.zip
997 !ENDIF
998 !IFDEF NASM
999         @$(SH) $(WIN_SETUP) "$(WIN_SETUP_OPT)" "$(WIRESHARK_LIB_DIR)" \
1000                 . nasm-2.09.08-win32.zip
1001 !ENDIF
1002 !IF "$(WIN_SETUP_OPT)" == "--download"
1003         @$(SH) $(WIN_SETUP) --settag "$(WIRESHARK_LIB_DIR)"
1004 !ENDIF
1005         @echo.
1006         @echo Wireshark is ready to build.
1007
1008 # Cleanup files installed by the setup target. It will not remove the
1009 # downloaded zip files.
1010 # WHEN UPDATING LIBRARY VERSIONS, KEEP ALSO ONE FORMER VERSION SO
1011 # UPDATING REMOVES THE FORMER USER DIRS
1012 clean_setup:
1013         cd "$(WIRESHARK_LIB_DIR)"
1014         rm -r -f adns-1.0-win32-05ws
1015         rm -r -f c-ares-1.5.3ws
1016         rm -r -f c-ares-1.6.0ws
1017         rm -r -f c-ares-1.7.0-win??ws
1018         rm -r -f c-ares-1.7.1-win??ws
1019         rm -r -f c-ares-1.9.1-1-win??ws
1020         rm -r -f gettext-0.14.5
1021         rm -r -f gettext-runtime-0.17
1022         rm -r -f gettext-runtime-0.17-1
1023         rm -r -f gettext-0.17-1            # win64
1024         rm -r -f glib
1025         rm -r -f gnutls-2.8.1-1
1026         rm -r -f gnutls-2.8.5-*-win??ws
1027         rm -r -f gnutls-2.10.3-*-win??ws
1028         rm -r -f gnutls-2.12.18-*-win??ws
1029 !IF "$(GTK_NAME)" == "gtk2"
1030         rm -r -f gtk2
1031 !ELSE
1032         rm -r -f gtk3
1033 !ENDIF
1034         rm -r -f gtk+
1035         rm -r -f gtk-wimp
1036         rm -r -f kfw-2.5
1037         rm -r -f kfw-3-2-2-final
1038         rm -r -f kfw-3.2.2-ws1
1039         rm -r -f kfw-3-2-2-i386-ws-vc6
1040         rm -r -f libiconv-1.9.1.bin.woe32
1041         rm -r -f lua5.1
1042         rm -r -f lua5.1.4
1043         rm -r -f libsmi-0.4.5
1044         rm -r -f libsmi-0.4.8
1045         rm -r -f libsmi-svn-40773-win??ws
1046         rm -r -f nasm-2.00
1047         rm -r -f nasm-2.02
1048         rm -r -f nasm-2.09.08
1049         rm -r -f pcre-6.4
1050         rm -r -f pcre-7.0
1051         rm -r -f portaudio_v19
1052         rm -r -f portaudio_v19_2
1053         rm -r -f upx301w
1054         rm -r -f upx303w
1055         rm -r -f user-guide
1056         rm -r -f zlib123
1057         rm -r -f zlib125
1058         rm -r -f zlib-1.2.5
1059         rm -r -f zlib123-dll
1060         rm -r -f AirPcap_Devpack_1_0_0_594
1061         rm -r -f AirPcap_Devpack_4_0_0_1480
1062         rm -r -f AirPcap_Devpack_4_1_0_1622
1063         rm -r -f GeoIP-1.4.5ws
1064         rm -r -f GeoIP-1.4.6-win??ws
1065         rm -r -f GeoIP-1.4.8-win??ws
1066         rm -r -f GeoIP-1.4.8-*-win??ws
1067         rm -r -f GeoIP-1.5.1-*-win??ws
1068         rm -r -f WinSparkle-0.3-44-g2c8d9d3-win??ws
1069         rm -r -f WpdPack
1070         cd "$(MAKEDIR)"
1071
1072 ################################################################################
1073 # Prepare the debug trees for running Wireshark/Tshark from there.
1074 ################################################################################
1075
1076
1077 # prepare debugging of Wireshark in INSTALL_DIR
1078 debug-wireshark: wireshark.exe install-generated-files
1079
1080 # prepare debugging of tshark in INSTALL_DIR
1081 debug-tshark: tshark.exe install-generated-files
1082
1083 # prepare debugging of rawshark in INSTALL_DIR
1084 debug-rawshark: rawshark.exe install-generated-files
1085
1086 # prepare debugging of dumpcap in INSTALL_DIR
1087 debug-dumpcap: dumpcap.exe install-generated-files
1088
1089
1090 # install generated files (exe, "our" libs, ...)
1091 install-generated-files: doc
1092         set copycmd=/y
1093         if not exist $(INSTALL_DIR) mkdir $(INSTALL_DIR)
1094 !IF DEFINED (MSVCR_DLL) && "$(MSVC_VARIANT)" == "MSVC2008"
1095         xcopy "$(MSVCR_DLL)" $(INSTALL_DIR)\*.* /d
1096 !ENDIF
1097 !IFDEF ENABLE_LIBWIRESHARK
1098         xcopy epan\libwireshark.dll $(INSTALL_DIR) /d
1099         if exist epan\libwireshark.lib xcopy .\epan\libwireshark.lib $(INSTALL_DIR) /d
1100         if exist epan\libwireshark.pdb xcopy .\epan\libwireshark.pdb $(INSTALL_DIR) /d
1101 !ENDIF
1102         xcopy ".\wiretap\wiretap-$(WTAP_VERSION).dll" $(INSTALL_DIR) /d
1103         if exist ".\wiretap\wiretap-$(WTAP_VERSION).lib" xcopy ".\wiretap\wiretap-$(WTAP_VERSION).lib" $(INSTALL_DIR) /d
1104         if exist ".\wiretap\wiretap-$(WTAP_VERSION).pdb" xcopy ".\wiretap\wiretap-$(WTAP_VERSION).pdb" $(INSTALL_DIR) /d
1105         xcopy ".\wsutil\libwsutil.dll" $(INSTALL_DIR) /d
1106         if exist ".\wsutil\libwsutil.lib" xcopy ".\wsutil\libwsutil.lib" $(INSTALL_DIR) /d
1107         if exist ".\wsutil\libwsutil.pdb" xcopy ".\wsutil\libwsutil.pdb" $(INSTALL_DIR) /d
1108         if exist $(PROGRAM_NAME).exe xcopy $(PROGRAM_NAME).exe $(INSTALL_DIR) /d
1109         if exist $(PROGRAM_NAME).pdb xcopy $(PROGRAM_NAME).pdb $(INSTALL_DIR) /d
1110         if exist $(PROGRAM_NAME).bsc xcopy $(PROGRAM_NAME).bsc $(INSTALL_DIR) /d
1111         if exist ".\docbook\user-guide.chm" xcopy ".\docbook\user-guide.chm" $(INSTALL_DIR) /d
1112         if exist capinfos.exe xcopy capinfos.exe $(INSTALL_DIR) /d
1113         if exist capinfos.pdb xcopy capinfos.pdb $(INSTALL_DIR) /d
1114         if exist captype.exe xcopy captype.exe $(INSTALL_DIR) /d
1115         if exist captype.pdb xcopy captype.pdb $(INSTALL_DIR) /d
1116         if exist dumpcap.exe xcopy dumpcap.exe $(INSTALL_DIR) /d
1117         if exist dumpcap.pdb xcopy dumpcap.pdb $(INSTALL_DIR) /d
1118         if exist editcap.exe xcopy editcap.exe $(INSTALL_DIR) /d
1119         if exist editcap.pdb xcopy editcap.pdb $(INSTALL_DIR) /d
1120         if exist mergecap.exe xcopy mergecap.exe $(INSTALL_DIR) /d
1121         if exist mergecap.pdb xcopy mergecap.pdb $(INSTALL_DIR) /d
1122         if exist reordercap.exe xcopy reordercap.exe $(INSTALL_DIR) /d
1123         if exist reordercap.pdb xcopy reordercap.pdb $(INSTALL_DIR) /d
1124         if exist rawshark.exe xcopy rawshark.exe $(INSTALL_DIR) /d
1125         if exist rawshark.pdb xcopy rawshark.pdb $(INSTALL_DIR) /d
1126         if exist text2pcap.exe xcopy text2pcap.exe $(INSTALL_DIR) /d
1127         if exist text2pcap.pdb xcopy text2pcap.pdb $(INSTALL_DIR) /d
1128         if exist tshark.exe xcopy tshark.exe $(INSTALL_DIR) /d
1129         if exist tshark.pdb xcopy tshark.pdb $(INSTALL_DIR) /d
1130         xcopy "doc\AUTHORS-SHORT" $(INSTALL_DIR) /d
1131         xcopy ".\manuf" $(INSTALL_DIR) /d
1132         xcopy ".\services" $(INSTALL_DIR) /d
1133         xcopy ".\pdml2html.xsl" $(INSTALL_DIR) /d
1134         $(TEXTIFY) "./COPYING" $(INSTALL_DIR)
1135         $(TEXTIFY) "./NEWS" $(INSTALL_DIR)
1136         $(TEXTIFY) "./README" $(INSTALL_DIR)
1137         $(TEXTIFY) "./README.windows" $(INSTALL_DIR)
1138         xcopy ".\cfilters" $(INSTALL_DIR) /d
1139         xcopy ".\colorfilters" $(INSTALL_DIR) /d
1140         xcopy ".\dfilters" $(INSTALL_DIR) /d
1141         xcopy ".\smi_modules" $(INSTALL_DIR) /d
1142 !IFDEF LUA_DIR
1143         xcopy ".\epan\wslua\init.lua" $(INSTALL_DIR) /d
1144         xcopy ".\epan\wslua\console.lua" $(INSTALL_DIR) /d
1145 !ENDIF
1146 !IFDEF PYTHON_DIR
1147         if not exist $(INSTALL_DIR)\python mkdir $(INSTALL_DIR)\python
1148         xcopy ".\epan\wspython\register-dissector.py" $(INSTALL_DIR)\python /d
1149         xcopy ".\epan\wspython\wspy_dissector.py" $(INSTALL_DIR)\python /d
1150         xcopy ".\epan\wspython\wspy_libws.py" $(INSTALL_DIR)\python /d
1151 !ENDIF
1152         xcopy ipmap.html $(INSTALL_DIR) /d
1153         xcopy doc\*.html $(INSTALL_DIR) /d
1154         if not exist $(INSTALL_DIR)\help mkdir $(INSTALL_DIR)\help
1155         xcopy ".\help\*.*" $(INSTALL_DIR)\help /d
1156 # you can't reliably use xcopy to rename files "on the fly" (so copy first, then rename)
1157         xcopy ".\help\faq.txt" $(INSTALL_DIR) /d
1158         $(UNIX2DOS) $(INSTALL_DIR)/help/*.txt
1159         if not exist $(INSTALL_DIR)\dtds mkdir $(INSTALL_DIR)\dtds
1160         xcopy ".\dtds\*.*" $(INSTALL_DIR)\dtds /d
1161         if not exist $(INSTALL_DIR)\asn1 mkdir $(INSTALL_DIR)\asn1
1162         echo create empty asn1 default.tt file to prevent problems 2> $(INSTALL_DIR)\asn1\default.tt
1163         if not exist $(INSTALL_DIR)\radius mkdir $(INSTALL_DIR)\radius
1164         xcopy ".\radius\*.*" $(INSTALL_DIR)\radius /d
1165         if not exist $(INSTALL_DIR)\diameter mkdir $(INSTALL_DIR)\diameter
1166         xcopy ".\diameter\*.dtd" $(INSTALL_DIR)\diameter /d
1167         xcopy ".\diameter\*.xml" $(INSTALL_DIR)\diameter /d
1168         if not exist $(INSTALL_DIR)\tpncp mkdir $(INSTALL_DIR)\tpncp
1169         xcopy ".\tpncp\*.dat" $(INSTALL_DIR)\tpncp /d
1170         if not exist $(INSTALL_DIR)\wimaxasncp mkdir $(INSTALL_DIR)\wimaxasncp
1171         xcopy ".\wimaxasncp\*.*" $(INSTALL_DIR)\wimaxasncp /d
1172         if not exist $(INSTALL_DIR)\plugins mkdir $(INSTALL_DIR)\plugins
1173         if not exist $(INSTALL_DIR)\plugins\$(VERSION) mkdir $(INSTALL_DIR)\plugins\$(VERSION)
1174         cd plugins
1175         $(MAKE) /$(MAKEFLAGS) -f Makefile.nmake install-plugins
1176         cd ..
1177         if not exist $(INSTALL_DIR)\profiles mkdir $(INSTALL_DIR)\profiles
1178         if not exist $(INSTALL_DIR)\profiles\Bluetooth mkdir $(INSTALL_DIR)\profiles\Bluetooth
1179         xcopy ".\profiles\Bluetooth\colorfilters" $(INSTALL_DIR)\profiles\Bluetooth /d
1180         if not exist $(INSTALL_DIR)\profiles\Classic mkdir $(INSTALL_DIR)\profiles\Classic
1181         xcopy ".\profiles\Classic\colorfilters" $(INSTALL_DIR)\profiles\Classic /d
1182
1183 # "install-all" will copy all files needed to run Wireshark/Tshark
1184 # to the INSTALL_DIR, so you can run/debug Wireshark/Tshark from there.
1185 install-all: install-generated-files
1186         set copycmd=/y
1187         if not exist $(INSTALL_DIR) mkdir $(INSTALL_DIR)
1188 !IF "$(GTK_INST_VERSION)" == "3.4"
1189         xcopy $(GTK_DIR)\bin\libgdk-3-0.dll $(INSTALL_DIR) /d
1190         xcopy $(GTK_DIR)\bin\libgtk-3-0.dll $(INSTALL_DIR) /d
1191 !ELSE
1192         xcopy $(GTK_DIR)\bin\libgdk-win32-2.0-0.dll $(INSTALL_DIR) /d
1193         xcopy $(GTK_DIR)\bin\libgtk-win32-2.0-0.dll $(INSTALL_DIR) /d
1194 !ENDIF
1195         xcopy $(GTK_DIR)\bin\libgdk_pixbuf-2.0-0.dll $(INSTALL_DIR) /d
1196         xcopy $(GTK_DIR)\bin\libatk-1.0-0.dll $(INSTALL_DIR) /d
1197         xcopy $(GTK_DIR)\bin\libpango-1.0-0.dll $(INSTALL_DIR) /d
1198         xcopy $(GTK_DIR)\bin\libpangowin32-1.0-0.dll $(INSTALL_DIR) /d
1199         if not exist $(INSTALL_DIR)\lib mkdir $(INSTALL_DIR)\lib
1200         if not exist $(INSTALL_DIR)\etc mkdir $(INSTALL_DIR)\etc
1201         if not exist $(INSTALL_DIR)\$(GTK_ETC_DIR) mkdir $(INSTALL_DIR)\$(GTK_ETC_DIR)
1202         xcopy $(GTK_DIR)\$(GTK_ETC_DIR)\*.* $(INSTALL_DIR)\$(GTK_ETC_DIR) /d
1203 #       if not exist $(INSTALL_DIR)\etc\pango mkdir $(INSTALL_DIR)\etc\pango
1204 #       xcopy $(GTK_DIR)\etc\pango\pango.* $(INSTALL_DIR)\etc\pango /d
1205 !IF "$(GTK_INST_VERSION)" == "3.4"
1206         if not exist $(INSTALL_DIR)\lib\gtk-3.0 mkdir $(INSTALL_DIR)\lib\gtk-3.0
1207         if not exist $(INSTALL_DIR)\lib\gtk-3.0\$(GTK_LIB_DIR) mkdir $(INSTALL_DIR)\lib\gtk-3.0\$(GTK_LIB_DIR)
1208         xcopy ".\ui\win32\settings.ini" $(INSTALL_DIR)\$(GTK_ETC_DIR) /d
1209 !ELSE
1210         if not exist $(INSTALL_DIR)\lib\gtk-2.0 mkdir $(INSTALL_DIR)\lib\gtk-2.0
1211         if not exist $(INSTALL_DIR)\lib\gtk-2.0\$(GTK_LIB_DIR) mkdir $(INSTALL_DIR)\lib\gtk-2.0\$(GTK_LIB_DIR)
1212         if not exist $(INSTALL_DIR)\lib\gtk-2.0\$(GTK_LIB_DIR)\loaders mkdir $(INSTALL_DIR)\lib\gtk-2.0\$(GTK_LIB_DIR)\loaders
1213         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
1214 !ENDIF
1215 !IFDEF GTK_ENGINES_DIR
1216         if not exist $(INSTALL_DIR)\$(GTK_ENGINES_DIR) mkdir $(INSTALL_DIR)\$(GTK_ENGINES_DIR)
1217         xcopy $(GTK_DIR)\$(GTK_ENGINES_DIR)\libpixmap.dll $(INSTALL_DIR)\$(GTK_ENGINES_DIR) /d
1218         xcopy $(GTK_DIR)\$(GTK_ENGINES_DIR)\libwimp.dll $(INSTALL_DIR)\$(GTK_ENGINES_DIR) /d
1219 !ENDIF
1220 !IFDEF GTK_THEMES_DIR
1221         xcopy "$(GTK_DIR)\$(GTK_THEMES_DIR)\gtkrc" $(INSTALL_DIR)\$(GTK_ETC_DIR) /d
1222 !ENDIF
1223 !IFDEF GTK_MODULES_DIR
1224         if not exist $(INSTALL_DIR)\$(GTK_MODULES_DIR) mkdir $(INSTALL_DIR)\$(GTK_MODULES_DIR)
1225         xcopy $(GTK_DIR)\$(GTK_MODULES_DIR)\libgail.dll $(INSTALL_DIR)\$(GTK_MODULES_DIR) /d
1226 !ENDIF
1227 !IFDEF NEED_CAIRO_GOBJECT_DLL
1228         xcopy $(GTK_DIR)\bin\libcairo-gobject-2.dll $(INSTALL_DIR)  /d
1229 !ENDIF
1230 !IFDEF NEED_CAIRO_DLL
1231         xcopy $(GTK_DIR)\bin\libcairo-2.dll $(INSTALL_DIR)  /d
1232         xcopy $(GTK_DIR)\bin\libpangocairo-1.0-0.dll $(INSTALL_DIR) /d
1233 !ENDIF
1234 !IFDEF NEED_EXPAT_DLL
1235         xcopy $(GTK_DIR)\bin\$(EXPAT_DLL) $(INSTALL_DIR) /d
1236 !ENDIF
1237 !IFDEF NEED_FFI_DLL
1238         xcopy $(GTK_DIR)\bin\$(FFI_DLL) $(INSTALL_DIR) /d
1239 !ENDIF
1240 !IFDEF NEED_FONTCONFIG_DLL
1241         xcopy $(GTK_DIR)\bin\$(FONTCONFIG_DLL) $(INSTALL_DIR) /d
1242 !ENDIF
1243 !IFDEF NEED_FREETYPE_DLL
1244         xcopy $(GTK_DIR)\bin\libpangoft2-1.0-0.dll $(INSTALL_DIR) /d
1245         xcopy $(GTK_DIR)\bin\$(FREETYPE_DLL) $(INSTALL_DIR) /d
1246 !ENDIF
1247 !IFDEF NEED_JASPER_DLL
1248         xcopy $(GTK_DIR)\bin\$(JASPER_DLL) $(INSTALL_DIR) /d
1249 !ENDIF
1250 !IFDEF NEED_JPEG_DLL
1251         xcopy $(GTK_DIR)\bin\$(JPEG_DLL) $(INSTALL_DIR) /d
1252 !ENDIF
1253 !IFDEF NEED_LZMA_DLL
1254         xcopy $(GTK_DIR)\bin\$(LZMA_DLL) $(INSTALL_DIR) /d
1255 !ENDIF
1256 !IFDEF NEED_PIXMAN_DLL
1257         xcopy $(GTK_DIR)\bin\$(PIXMAN_DLL) $(INSTALL_DIR) /d
1258 !ENDIF
1259 !IFDEF NEED_PNG_DLL
1260         xcopy $(GTK_DIR)\bin\$(PNG_DLL) $(INSTALL_DIR) /d
1261 !ENDIF
1262 !IFDEF NEED_TIFF_DLL
1263         xcopy $(GTK_DIR)\bin\$(TIFF_DLL) $(INSTALL_DIR) /d
1264 !ENDIF
1265 !IFDEF NEED_XML_DLL
1266         xcopy $(GTK_DIR)\bin\$(XML_DLL) $(INSTALL_DIR) /d
1267 !ENDIF
1268 !IFDEF GTK_SCHEMAS_DIR
1269         if not exist $(INSTALL_DIR)\$(GTK_SCHEMAS_DIR) mkdir $(INSTALL_DIR)\$(GTK_SCHEMAS_DIR)
1270         if not exist $(GTK_DIR)\$(GTK_SCHEMAS_DIR)\gschemas.compiled $(GTK_DIR)\bin\glib-compile-schemas $(GTK_DIR)\$(GTK_SCHEMAS_DIR)
1271         xcopy $(GTK_DIR)\$(GTK_SCHEMAS_DIR)\gschemas.compiled  $(INSTALL_DIR)\$(GTK_SCHEMAS_DIR) /d
1272 !ENDIF
1273         xcopy $(GTK_DIR)\bin\libgio-2.0-0.dll $(INSTALL_DIR) /d
1274         xcopy $(GTK_DIR)\bin\libglib-2.0-0.dll $(INSTALL_DIR) /d
1275         xcopy $(GTK_DIR)\bin\libgmodule-2.0-0.dll $(INSTALL_DIR) /d
1276         xcopy $(GTK_DIR)\bin\libgobject-2.0-0.dll $(INSTALL_DIR) /d
1277         xcopy $(GTK_DIR)\bin\libgthread-2.0-0.dll $(INSTALL_DIR) /d
1278         xcopy $(GTK_DIR)\bin\$(INTL_DLL) $(INSTALL_DIR) /d
1279 !IFDEF ZLIB_DIR
1280         xcopy $(ZLIB_DLL) $(INSTALL_DIR) /d
1281 !ENDIF
1282 !IFDEF C_ARES_DIR
1283         xcopy $(C_ARES_DLL) $(INSTALL_DIR) /d
1284 !ENDIF
1285 !IFDEF ADNS_DIR
1286         xcopy $(ADNS_DLL) $(INSTALL_DIR) /d
1287 !ENDIF
1288 !IFDEF KFW_DIR
1289         xcopy $(KFW_PATH)\comerr32.dll $(INSTALL_DIR) /d
1290         xcopy $(KFW_PATH)\krb5_32.dll $(INSTALL_DIR) /d
1291         xcopy $(KFW_PATH)\k5sprt32.dll $(INSTALL_DIR) /d
1292 !ENDIF
1293 !IFDEF GNUTLS_DIR
1294         xcopy $(GNUTLS_DIR)\bin\libgcrypt-11.dll $(INSTALL_DIR) /d
1295         xcopy $(GNUTLS_DIR)\bin\libgnutls-26.dll $(INSTALL_DIR) /d
1296         xcopy $(GNUTLS_DIR)\bin\libgpg-error-0.dll $(INSTALL_DIR) /d
1297         xcopy $(GNUTLS_DIR)\bin\libtasn1-3.dll $(INSTALL_DIR) /d
1298 ! IF "$(INTL_DLL)" != "libintl-8.dll"
1299 # The gtk+ bundle doesn't provide libintl-8.dll (which is the case
1300 # with the 32-bit package); use the GNUTLS version.
1301         xcopy $(GNUTLS_DIR)\bin\libintl-8.dll $(INSTALL_DIR) /d
1302 ! ENDIF
1303 !ENDIF
1304 !IFDEF LUA_DIR
1305         xcopy "$(LUA_DIR)\lua5.1.dll" $(INSTALL_DIR) /d
1306 !ENDIF
1307 !IFDEF SMI_DIR
1308         if not exist $(INSTALL_DIR)\snmp mkdir $(INSTALL_DIR)\snmp
1309         if not exist $(INSTALL_DIR)\snmp\mibs mkdir $(INSTALL_DIR)\snmp\mibs
1310         xcopy "$(SMI_DIR)\bin\libsmi-2.dll" $(INSTALL_DIR) /d
1311         xcopy "$(SMI_DIR)\share\mibs\iana\*" $(INSTALL_DIR)\snmp\mibs /d
1312         xcopy "$(SMI_DIR)\share\mibs\ietf\*" $(INSTALL_DIR)\snmp\mibs /d
1313         xcopy "$(SMI_DIR)\share\mibs\irtf\*" $(INSTALL_DIR)\snmp\mibs /d
1314         xcopy "$(SMI_DIR)\share\mibs\site\*" $(INSTALL_DIR)\snmp\mibs /d
1315         xcopy "$(SMI_DIR)\share\mibs\tubs\*" $(INSTALL_DIR)\snmp\mibs /d
1316         xcopy "$(SMI_DIR)\share\pibs\*" $(INSTALL_DIR)\snmp\mibs /d
1317         xcopy "$(SMI_DIR)\share\yang\*.yang" $(INSTALL_DIR)\snmp\mibs /d
1318 !ENDIF
1319 !IFDEF GEOIP_DIR
1320         xcopy "$(GEOIP_DIR)\bin\libGeoip-1.dll" $(INSTALL_DIR) /d
1321 !ENDIF
1322 !IFDEF WINSPARKLE_DIR
1323         xcopy "$(WINSPARKLE_DIR)\WinSparkle.dll" $(INSTALL_DIR) /d
1324 !ENDIF
1325         cd $(INSTALL_DIR)
1326         peflags --dynamicbase=true --nxcompat=true *.dll
1327 !IF "$(GTK_INST_VERSION)" == "3.4"
1328 !ELSE
1329         peflags --dynamicbase=true --nxcompat=true lib/gtk-2.0/*/engines/*.dll
1330         peflags --dynamicbase=true --nxcompat=true lib/gtk-2.0/modules/*.dll
1331 !ENDIF
1332         cd ..
1333
1334 checkapi_local:
1335         $(PERL) tools/checkAPIs.pl -build \
1336         $(WIRESHARK_COMMON_SRC) \
1337         $(TSHARK_TAP_SRC) \
1338 #       $(EXTRA_wireshark_SOURCES)
1339
1340 checkapi: checkapi_local
1341         cd wiretap
1342         $(MAKE) /$(MAKEFLAGS) -f Makefile.nmake checkapi
1343         cd ../codecs
1344         $(MAKE) /$(MAKEFLAGS) -f Makefile.nmake checkapi
1345         cd ../ui
1346         $(MAKE) /$(MAKEFLAGS) -f Makefile.nmake checkapi
1347         cd gtk
1348         $(MAKE) /$(MAKEFLAGS) -f Makefile.nmake checkapi
1349         cd ../win32
1350         $(MAKE) /$(MAKEFLAGS) -f Makefile.nmake checkapi
1351         cd ../../epan
1352 ##      $(MAKE) /$(MAKEFLAGS) -f Makefile.nmake checkapi
1353         cd ../epan/crypt
1354 ##      $(MAKE) /$(MAKEFLAGS) -f Makefile.nmake checkapi
1355         cd ../dfilter
1356         $(MAKE) /$(MAKEFLAGS) -f Makefile.nmake checkapi
1357         cd ../ftypes
1358 ##      $(MAKE) /$(MAKEFLAGS) -f Makefile.nmake checkapi
1359         cd ../wslua
1360 ##      $(MAKE) /$(MAKEFLAGS) -f Makefile.nmake checkapi
1361         cd ../dissectors
1362         $(MAKE) /$(MAKEFLAGS) -f Makefile.nmake checkapi
1363         cd ..
1364         cd ../plugins
1365         $(MAKE) /$(MAKEFLAGS) -f Makefile.nmake checkapi
1366         cd ../wsutil
1367         $(MAKE) /$(MAKEFLAGS) -f Makefile.nmake checkapi
1368
1369 ####
1370 _FORCE_:  ## Assumption: no file named _FORCE_ exists in the current directory