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