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