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