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