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