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