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