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