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