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