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