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