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