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