1 ## Makefile for building wireshark.exe with Microsoft C and nmake
2 ## Use: $(MAKE) /$(MAKEFLAGS) -f makefile.nmake
6 # We "Deploy using XCopy," which is described at
7 # http://msdn.microsoft.com/en-us/library/ms235291.aspx
12 ############### no need to modify below this line #########
18 WIN_SETUP=tools/$(WIRESHARK_TARGET_PLATFORM)-setup.sh
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.
31 LIBS_CHECK=_libs_check_
32 !IF [$(SH) $(WIN_SETUP) --checktag "$(WIRESHARK_LIB_DIR)"] != 0
39 LDFLAGS = /NOLOGO /INCREMENTAL:NO $(LOCAL_LDFLAGS)
41 # We use GENERATED_CFLAGS to get around flex's non-LLP64-compliant output
44 /I. /Iwiretap $(GLIB_CFLAGS) \
45 $(ZLIB_CFLAGS) /I$(PCAP_DIR)\include $(AIRPCAP_CFLAGS) \
46 $(C_ARES_CFLAGS) $(ADNS_CFLAGS) $(GNUTLS_CFLAGS) \
47 $(PYTHON_CFLAGS) $(SMI_CFLAGS) $(GEOIP_CFLAGS) $(WINSPARKLE_CFLAGS)
49 CFLAGS=$(WARNINGS_ARE_ERRORS) $(GENERATED_CFLAGS)
52 $(CC) $(CFLAGS) -Fd.\ -c $<
54 PLATFORM_SRC = capture-wpcap.c capture_wpcap_packet.c capture_win_ifnames.c
56 WTAP_PLUGIN_SOURCES = \
60 include Makefile.common
62 wireshark_OBJECTS = $(WIRESHARK_COMMON_SRC:.c=.obj)
63 tshark_OBJECTS = $(tshark_SOURCES:.c=.obj)
64 rawshark_OBJECTS = $(rawshark_SOURCES:.c=.obj)
65 ###text2pcap_OBJECTS = $(text2pcap_SOURCES:.c=.obj)
66 mergecap_OBJECTS = $(mergecap_SOURCES:.c=.obj)
67 editcap_OBJECTS = $(editcap_SOURCES:.c=.obj)
68 capinfos_OBJECTS = $(capinfos_SOURCES:.c=.obj)
69 dftest_OBJECTS = $(dftest_SOURCES:.c=.obj)
70 dumpcap_OBJECTS = $(dumpcap_SOURCES:.c=.obj)
71 randpkt_OBJECTS = $(randpkt_SOURCES:.c=.obj)
74 # psapi.lib see http://msdn.microsoft.com/en-us/library/windows/desktop/ms683219(v=vs.85).aspx
77 wireshark_LIBS= wiretap\wiretap-$(WTAP_VERSION).lib \
78 wsock32.lib user32.lib shell32.lib comctl32.lib ole32.lib psapi.lib \
81 wsutil\libwsutil.lib \
85 !IFDEF ENABLE_LIBWIRESHARK
86 epan\libwireshark.lib \
88 epan\dissectors\dissectors.lib \
90 epan\crypt\airpdcap.lib \
91 epan\dfilter\dfilter.lib \
92 epan\ftypes\ftypes.lib \
98 tshark_LIBS= wiretap\wiretap-$(WTAP_VERSION).lib \
99 wsock32.lib user32.lib psapi.lib \
102 wsutil\libwsutil.lib \
105 !IFDEF ENABLE_LIBWIRESHARK
106 epan\libwireshark.lib \
108 epan\dissectors\dissectors.lib \
110 epan\crypt\airpdcap.lib \
111 epan\dfilter\dfilter.lib \
112 epan\ftypes\ftypes.lib \
118 rawshark_LIBS= wiretap\wiretap-$(WTAP_VERSION).lib \
119 wsock32.lib user32.lib psapi.lib \
121 wsutil\libwsutil.lib \
124 !IFDEF ENABLE_LIBWIRESHARK
125 epan\libwireshark.lib \
127 epan\dissectors\dissectors.lib \
129 epan\crypt\airpdcap.lib \
130 epan\dfilter\dfilter.lib \
131 epan\ftypes\ftypes.lib \
137 capinfos_LIBS= wiretap\wiretap-$(WTAP_VERSION).lib \
138 wsock32.lib user32.lib shell32.lib \
139 wsutil\libwsutil.lib \
143 editcap_LIBS= wiretap\wiretap-$(WTAP_VERSION).lib \
144 wsock32.lib user32.lib shell32.lib \
145 wsutil\libwsutil.lib \
148 mergecap_LIBS= wiretap\wiretap-$(WTAP_VERSION).lib \
149 wsock32.lib user32.lib \
150 wsutil\libwsutil.lib \
153 reordercap_LIBS= wiretap\wiretap-$(WTAP_VERSION).lib \
154 wsock32.lib user32.lib \
155 wsutil\libwsutil.lib \
159 wsock32.lib user32.lib \
160 wsutil\libwsutil.lib \
164 wsock32.lib user32.lib \
165 wsutil\libwsutil.lib \
169 dftest_LIBS= wiretap\wiretap-$(WTAP_VERSION).lib \
170 wsock32.lib user32.lib psapi.lib \
172 wsutil\libwsutil.lib \
174 !IFDEF ENABLE_LIBWIRESHARK
175 epan\libwireshark.lib \
177 epan\dissectors\dissectors.lib \
179 epan\dfilter\dfilter.lib epan\ftypes\ftypes.lib \
186 randpkt_LIBS= wiretap\wiretap-$(WTAP_VERSION).lib \
188 wsutil\libwsutil.lib \
191 EXECUTABLES=wireshark.exe tshark.exe rawshark.exe \
192 capinfos.exe editcap.exe mergecap.exe text2pcap.exe randpkt.exe \
193 reordercap.exe dumpcap.exe dftest.exe
196 EXECUTABLES=$(EXECUTABLES) qtshark.exe
199 RESOURCES=image\wireshark.res image\file_dlg_win32.res \
200 image\libwireshark.res image\tshark.res image\capinfos.res \
201 image\editcap.res image\mergecap.res image\text2pcap.res \
202 image\wiretap.res image\dumpcap.res image\rawshark.res \
203 image\reordercap.res image\libwsutil.res
206 all: $(LIBS_CHECK) config.h ui\qt\config.pri tools image codecs $(C_ARES_DLL) $(ADNS_DLL) $(ZLIB_DLL) wsutil wiretap epan $(EXECUTABLES) wireshark.bsc $(RESOURCES) help install-all
212 $(MAKE) /$(MAKEFLAGS) -f Makefile.nmake
217 @echo \? NSIS not available (MAKENSIS not defined in config.nmake)
226 $(MAKE) /$(MAKEFLAGS) -f Makefile.nmake
231 # use (info-)zip from cygwin to pack things
234 xcopy "$(MSVCR_DLL)" $(INSTALL_DIR)
237 @echo Including vcredist_$(TARGET_MACHINE).exe -- your recipient may need to run it!
238 xcopy "$(VCREDIST_EXE)" $(INSTALL_DIR)
241 zip -r -9 wireshark.zip $(INSTALL_DIR)/
243 !IFDEF WIRESHARK_GENERATE_BSC_FILE
244 # FIXME: Add epan\wspython\*.sbr when we support Python embedding
245 # Note: Certain .sbr files cause bscmake warning "too many references... ignoring ..."
246 # XXX: It seems that using .bsc files with VS2010 doesn't work (isn't supported ?)
247 # Using .bsc files with VS2008 may work
248 # See: http://ask.wireshark.org/questions/8660/wireshark-building-and-debugging-on-visual-c-or-visual-studio
255 epan\dissectors\*.sbr \
259 plugins\docsis\*.sbr \
260 plugins\ethercat\*.sbr \
261 plugins\gryphon\*.sbr \
265 plugins\opcua\*.sbr \
266 plugins\profinet\*.sbr \
267 plugins\stats_tree\*.sbr \
268 plugins\unistim\*.sbr \
269 plugins\wimax\*.sbr \
270 plugins\wimaxasncp\*.sbr \
271 plugins\wimaxmacphy\*.sbr \
287 rm -f ../[Ww]ireshark-pdb-$(WIRESHARK_TARGET_PLATFORM)-$(VERSION).zip
288 zip -9 ../Wireshark-pdb-$(WIRESHARK_TARGET_PLATFORM)-$(VERSION).zip *.pdb *.lib
293 ## Note: The proper "SUBSYSTEM" link option to be used for linking each of the Wireshark executables
294 ## is specified in '$(guiflags)' or '$(conflags)' as used as part of the link options.
295 ## (These variables are defined in win32.mak).
296 wiretap\wiretap-$(WTAP_VERSION).lib: image $(ZLIB_DLL) wiretap
298 wireshark.exe : $(LIBS_CHECK) config.h $(wireshark_OBJECTS) codecs epan ui gtk win32 image\wireshark.res image\file_dlg_win32.res wsutil\libwsutil.lib wiretap\wiretap-$(WTAP_VERSION).lib codecs\codecs.lib ui\libui.lib ui\gtk\libgtkui.lib ui\win32\libgtkui_win32.lib plugins
301 /OUT:$(PROGRAM_NAME).exe $(guiflags) $(guilibsdll) $(LDFLAGS) /LARGEADDRESSAWARE $(wireshark_LIBS) $(GTK_LIBS) codecs\codecs.lib ui\gtk\libgtkui.lib ui\win32\libgtkui_win32.lib ui\libui.lib $(wireshark_OBJECTS) image\wireshark.res image\file_dlg_win32.res
303 !IFDEF MANIFEST_INFO_REQUIRED
304 mt.exe -nologo -manifest "wireshark.exe.manifest" -outputresource:$(PROGRAM_NAME).exe;1
307 qtshark.exe : install-generated-files $(LIBS_CHECK) config.h epan ui qt wsutil\libwsutil.lib wiretap\wiretap-$(WTAP_VERSION).lib plugins
309 tshark.exe : $(LIBS_CHECK) config.h $(tshark_OBJECTS) epan ui cli image\tshark.res wsutil\libwsutil.lib wiretap\wiretap-$(WTAP_VERSION).lib plugins
312 /OUT:tshark.exe $(conflags) $(conlibsdll) $(LDFLAGS) /LARGEADDRESSAWARE $(tshark_LIBS) $(tshark_OBJECTS) ui\cli\libcliui.lib ui\libui.lib image\tshark.res
314 !IFDEF MANIFEST_INFO_REQUIRED
315 mt.exe -nologo -manifest "tshark.exe.manifest" -outputresource:tshark.exe;1
318 rawshark.exe : $(LIBS_CHECK) config.h $(rawshark_OBJECTS) epan ui image\rawshark.res wsutil\libwsutil.lib wiretap\wiretap-$(WTAP_VERSION).lib plugins
321 /OUT:rawshark.exe $(conflags) $(conlibsdll) $(LDFLAGS) /LARGEADDRESSAWARE $(rawshark_LIBS) $(rawshark_OBJECTS) ui\libui.lib image\rawshark.res
323 !IFDEF MANIFEST_INFO_REQUIRED
324 mt.exe -nologo -manifest "rawshark.exe.manifest" -outputresource:rawshark.exe;1
327 # XXX: This makefile does not properly handle doing a 'nmake ... capinfos.exe' directly since some of the .objs
328 # (e.g. epan\plugins.obj) must be built first using epan\Makefile.nmake (which happens for 'nmake ... all').
329 # Linking with setargv.obj enables "wildcard expansion" of command-line arguments
330 capinfos.exe : $(LIBS_CHECK) config.h $(capinfos_OBJECTS) wsutil\libwsutil.lib wiretap\wiretap-$(WTAP_VERSION).lib image\capinfos.res
333 /OUT:capinfos.exe $(conflags) $(conlibsdll) $(LDFLAGS) $(capinfos_OBJECTS) $(capinfos_LIBS) setargv.obj image\capinfos.res
335 !IFDEF MANIFEST_INFO_REQUIRED
336 mt.exe -nologo -manifest "capinfos.exe.manifest" -outputresource:capinfos.exe;1
339 # XXX: This makefile does not properly handle doing a 'nmake ... editcap.exe' directly since some of the .objs
340 # (e.g. epan\plugins.obj) must be built first using epan\Makefile.nmake (which happens for 'nmake ... all').
341 editcap.exe : $(LIBS_CHECK) config.h $(editcap_OBJECTS) wsutil\libwsutil.lib wiretap\wiretap-$(WTAP_VERSION).lib image\editcap.res
344 /OUT:editcap.exe $(conflags) $(conlibsdll) $(LDFLAGS) $(editcap_OBJECTS) $(editcap_LIBS) image\editcap.res
346 !IFDEF MANIFEST_INFO_REQUIRED
347 mt.exe -nologo -manifest "editcap.exe.manifest" -outputresource:editcap.exe;1
350 # Linking with setargv.obj enables "wildcard expansion" of command-line arguments
351 mergecap.exe : $(LIBS_CHECK) config.h $(mergecap_OBJECTS) wsutil\libwsutil.lib wiretap\wiretap-$(WTAP_VERSION).lib image\mergecap.res
354 /OUT:mergecap.exe $(conflags) $(conlibsdll) $(LDFLAGS) $(mergecap_OBJECTS) $(mergecap_LIBS) image\mergecap.res
356 !IFDEF MANIFEST_INFO_REQUIRED
357 mt.exe -nologo -manifest "mergecap.exe.manifest" -outputresource:mergecap.exe;1
360 reordercap.exe : $(LIBS_CHECK) config.h reordercap.obj wsutil\libwsutil.lib wiretap\wiretap-$(WTAP_VERSION).lib image\reordercap.res
363 /OUT:reordercap.exe $(conflags) $(conlibsdll) $(LDFLAGS) reordercap.obj $(reordercap_LIBS) setargv.obj image\reordercap.res
365 !IFDEF MANIFEST_INFO_REQUIRED
366 mt.exe -nologo -manifest "reordercap.exe.manifest" -outputresource:reordercap.exe;1
369 text2pcap.exe : $(LIBS_CHECK) config.h text2pcap.obj text2pcap-scanner.obj pcapio.obj wsutil\libwsutil.lib wiretap\wiretap-$(WTAP_VERSION).lib image\text2pcap.res
372 /OUT:text2pcap.exe $(conflags) $(conlibsdll) $(LDFLAGS) text2pcap.obj text2pcap-scanner.obj pcapio.obj $(text2pcap_LIBS) image\text2pcap.res
374 !IFDEF MANIFEST_INFO_REQUIRED
375 mt.exe -nologo -manifest "text2pcap.exe.manifest" -outputresource:text2pcap.exe;1
378 dftest.exe : $(dftest_OBJECTS) epan ui
381 /OUT:dftest.exe $(conflags) $(conlibsdll) $(LDFLAGS) $(dftest_LIBS) ui\libui.lib $(dftest_OBJECTS)
383 !IFDEF MANIFEST_INFO_REQUIRED
384 mt.exe -nologo -manifest "dftest.exe.manifest" -outputresource:dftest.exe;1
387 randpkt.exe : $(randpkt_OBJECTS)
390 /OUT:randpkt.exe $(conflags) $(conlibsdll) $(LDFLAGS) $(randpkt_LIBS) $(randpkt_OBJECTS)
392 !IFDEF MANIFEST_INFO_REQUIRED
393 mt.exe -nologo -manifest "randpkt.exe.manifest" -outputresource:randpkt.exe;1
396 dumpcap.exe : $(LIBS_CHECK) config.h $(dumpcap_OBJECTS) wsutil\libwsutil.lib image\dumpcap.res
399 /OUT:dumpcap.exe $(conflags) $(conlibsdll) $(LDFLAGS) $(dumpcap_LIBS) $(dumpcap_OBJECTS) image\dumpcap.res
401 !IFDEF MANIFEST_INFO_REQUIRED
402 mt.exe -nologo -manifest "dumpcap.exe.manifest" -outputresource:dumpcap.exe;1
406 config.h : config.h.win32 config.nmake
407 sed -e s/@VERSION@/$(VERSION)/ \
408 -e s/@VERSION_MAJOR@/$(VERSION_MAJOR)/ \
409 -e s/@VERSION_MINOR@/$(VERSION_MINOR)/ \
410 -e s/@VERSION_MICRO@/$(VERSION_MICRO)/ \
411 -e "s/@HAVE_C_ARES@/$(C_ARES_CONFIG)/" \
412 -e "s/@HAVE_GNU_ADNS@/$(ADNS_CONFIG)/" \
413 -e "s/@HAVE_KFW@/$(KFW_CONFIG)/" \
414 -e "s/@HAVE_NETTLE@/$(NETTLE_CONFIG)/" \
415 -e "s/@HAVE_LIBZ@/$(ZLIB_CONFIG)/" \
416 -e "s/@HAVE_LIBPCAP@/$(WINPCAP_CONFIG)/" \
417 -e "s/@HAVE_PCAP_FINDALLDEVS@/$(PCAP_FINDALLDEVS_CONFIG)/" \
418 -e "s/@HAVE_PCAP_DATALINK_NAME_TO_VAL@/$(PCAP_DATALINK_NAME_TO_VAL_CONFIG)/" \
419 -e "s/@HAVE_PCAP_DATALINK_VAL_TO_NAME@/$(PCAP_DATALINK_VAL_TO_NAME_CONFIG)/" \
420 -e "s/@HAVE_PCAP_DATALINK_VAL_TO_DESCRIPTION@/$(PCAP_DATALINK_VAL_TO_DESCRIPTION_CONFIG)/" \
421 -e "s/@HAVE_PCAP_BREAKLOOP@/$(PCAP_BREAKLOOP_CONFIG)/" \
422 -e "s/@HAVE_REMOTE@/$(PCAP_HAVE_REMOTE_CONFIG)/" \
423 -e "s/@HAVE_PCAP_REMOTE@/$(PCAP_REMOTE_CONFIG)/" \
424 -e "s/@HAVE_PCAP_OPEN@/$(PCAP_OPEN_CONFIG)/" \
425 -e "s/@HAVE_PCAP_OPEN_DEAD@/$(PCAP_OPEN_DEAD_CONFIG)/" \
426 -e "s/@HAVE_PCAP_LIST_DATALINKS@/$(PCAP_LIST_DATALINKS_CONFIG)/" \
427 -e "s/@HAVE_PCAP_FREE_DATALINKS@/$(PCAP_FREE_DATALINKS_CONFIG)/" \
428 -e "s/@HAVE_PCAP_SET_DATALINK@/$(PCAP_SET_DATALINK_CONFIG)/" \
429 -e "s/@HAVE_PCAP_SETSAMPLING@/$(PCAP_SETSAMPLING_CONFIG)/" \
430 -e "s/@HAVE_BPF_IMAGE@/$(BPF_IMAGE_CONFIG)/" \
431 -e "s/@HAVE_LIBGNUTLS@/$(GNUTLS_CONFIG)/" \
432 -e "s/@HAVE_LIBGCRYPT@/$(LIBGCRYPT_CONFIG)/" \
433 -e "s/@HAVE_LUA@/$(LUA_CONFIG)/" \
434 -e "s/@HAVE_LUA@/$(LUA_VERSION)/" \
435 -e "s/@HAVE_PYTHON@/$(PYTHON_CONFIG)/" \
436 -e "s/@HAVE_AIRPCAP@/$(AIRPCAP_CONFIG)/" \
437 -e "s/@HAVE_AIRPDCAP@/$(AIRPDCAP_CONFIG)/" \
438 -e "s/@HAVE_LIBPORTAUDIO@/$(PORTAUDIO_CONFIG)/" \
439 -e "s/@PORTAUDIO_API_1@/$(PORTAUDIO_API_CONFIG)/" \
440 -e "s/@HAVE_SMI@/$(SMI_CONFIG)/" \
441 -e "s/@HAVE_GEOIP@/$(GEOIP_CONFIG)/" \
442 -e "s/@HAVE_GEOIP_V6@/$(GEOIP_V6_CONFIG)/" \
443 -e "s/@HAVE_SOFTWARE_UPDATE@/$(WINSPARKLE_CONFIG)/" \
444 -e "s/@INET6@/$(INET6_CONFIG)/" \
445 -e "s/@HAVE_NTDDNDIS_H@/$(NTDDNDIS_CONFIG)/" \
446 -e "s/@PCAP_NG_DEFAULT@/$(PCAP_NG_DEFAULT)/" \
447 -e "s/@WANT_PACKET_EDITOR@/$(WANT_PACKET_EDITOR)/" \
448 < config.h.win32 > $@
450 ui\qt\config.pri: config.nmake Makefile.nmake
451 @echo Creating <<ui\qt\config.pri
452 # Automatically generated from Makefile.nmake. Edit there, not here.
453 # qmake apparently requires a three-part numeric VERSION.
454 PROGRAM_NAME = $(PROGRAM_NAME)
455 VERSION = $(VERSION_MAJOR).$(VERSION_MINOR).$(VERSION_MICRO)
456 VERSION_FULL = $(VERSION)
457 WTAP_VERSION = $(WTAP_VERSION)
458 INSTALL_DIR = $(INSTALL_DIR)
459 !IFDEF MANIFEST_INFO_REQUIRED
460 CONFIG += wireshark_manifest_info_required
463 CONFIG += wireshark_use_kfw
465 WIRESHARK_LIB_DIR = $(WIRESHARK_LIB_DIR:\=/)
466 GLIB_DIR = $(GTK_DIR:\=/)
467 C_ARES_DIR = $(C_ARES_DIR:\=/)
468 ZLIB_DIR = $(ZLIB_DIR:\=/)
469 GNUTLS_DIR = $(GNUTLS_DIR:\=/)
470 SMI_DIR = $(SMI_DIR:\=/)
471 KFW_DIR = $(KFW_DIR:\=/)
472 LUA_DIR = $(LUA_DIR:\=/)
473 GEOIP_DIR = $(GEOIP_DIR:\=/)
474 WINSPARKLE_DIR = $(WINSPARKLE_DIR:\=/)
476 INTL_DLL = $(INTL_DLL)
478 guilibsdll = $(guilibsdll)
480 HHC_LIBS = $(HHC_LIBS)
482 MSVC_VARIANT = $(MSVC_VARIANT)
483 MSVCR_DLL = "$(MSVCR_DLL:\=/)"
485 QMAKE_CFLAGS *= $(STANDARD_CFLAGS)
486 # NOMINMAX keeps windows.h from defining "min" and "max" via windef.h.
487 # This avoids conflicts with the C++ standard library.
488 QMAKE_CXXFLAGS *= $(STANDARD_CFLAGS) /DNOMINMAX
489 QMAKE_LFLAGS *= /LARGEADDRESSAWARE $(LDFLAGS)
494 # Build the version string
496 !IF EXIST(".svn/wc.db")
497 SVNENTRIES = .svn/wc.db
498 !ELSE IF EXIST(".svn/entries")
499 SVNENTRIES = .svn/entries
503 svnversion.h: $(SVNENTRIES)
505 $(PERL) make-version.pl
508 text2pcap-scanner.c : text2pcap-scanner.l
509 $(LEX) -otext2pcap-scanner.c text2pcap-scanner.l
511 text2pcap-scanner.obj : text2pcap-scanner.c
512 $(CC) $(GENERATED_CFLAGS) -Fd.\ -c $?
515 # The following targets will rebuild their respective objs
516 # if and when svnversion.h should change.
518 text2pcap.obj mergecap.obj capinfos.obj editcap.obj reordercap.obj version_info.obj: svnversion.h
522 rm -f $(wireshark_OBJECTS) $(tshark_OBJECTS) $(dumpcap_OBJECTS) $(rawshark_OBJECTS) \
523 $(EXECUTABLES) *.pdb *.sbr *.exe.manifest \
524 capinfos.obj capinfos.exp capinfos.lib editcap.obj editcap.exp editcap.lib \
525 mergecap.obj text2pcap.obj \
526 reordercap.obj nio-ie5.obj update.obj \
527 text2pcap-scanner.obj text2pcap-scanner.c \
528 config.h ps.c $(LIBS_CHECK) \
529 dftest.obj dftest.exe randpkt.obj randpkt.exe \
531 $(RESOURCES) libwireshark.dll wiretap-$(WTAP_VERSION).dll \
534 rm -rf $(INSTALL_DIR)
535 rm -rf wireshark-qt-release
539 $(MAKE) /$(MAKEFLAGS) -f Makefile.nmake clean
541 $(MAKE) /$(MAKEFLAGS) -f Makefile.nmake clean
543 $(MAKE) /$(MAKEFLAGS) -f Makefile.nmake clean
545 $(MAKE) /$(MAKEFLAGS) -f Makefile.nmake clean
547 $(MAKE) /$(MAKEFLAGS) -f Makefile.nmake clean
549 $(MAKE) /$(MAKEFLAGS) -f Makefile.nmake clean
555 $(MAKE) /$(MAKEFLAGS) -f Makefile.nmake clean
557 $(MAKE) /$(MAKEFLAGS) -f Makefile.nmake clean
559 $(MAKE) /$(MAKEFLAGS) -f Makefile.nmake clean
561 $(MAKE) /$(MAKEFLAGS) -f Makefile.nmake clean
563 $(MAKE) /$(MAKEFLAGS) -f Makefile.nmake clean
565 $(MAKE) /$(MAKEFLAGS) -f Makefile.nmake clean
567 $(MAKE) /$(MAKEFLAGS) -f Makefile.nmake clean
569 $(MAKE) /$(MAKEFLAGS) -f Makefile.nmake clean
571 $(MAKE) /$(MAKEFLAGS) -f Makefile.nmake clean
573 $(MAKE) /$(MAKEFLAGS) -f Makefile.nmake clean
574 cd ../portableapps/win32
575 $(MAKE) /$(MAKEFLAGS) -f Makefile.nmake clean
578 # "distclean" removes all files not part of the distribution.
579 # It does not remove generated files that are part of the distribution.
580 distclean-local: clean-local
582 rm -f $(ADNS_DLL) $(ADNS_LIBS)
585 rm -f $(ZLIB_DLL) $(ZLIB_DIR)\zlib1.dll.manifest \
586 $(ZLIB_DIR)\include\zlib.h $(ZLIB_DIR)\include\zconf.h \
587 $(ZLIB_DIR)\lib\zdll.lib
589 rm -f config.h $(BUILT_SOURCES) wireshark-pdb*.zip
591 distclean: distclean-local
593 $(MAKE) /$(MAKEFLAGS) -f Makefile.nmake distclean
595 $(MAKE) /$(MAKEFLAGS) -f Makefile.nmake distclean
597 $(MAKE) /$(MAKEFLAGS) -f Makefile.nmake distclean
599 $(MAKE) /$(MAKEFLAGS) -f Makefile.nmake distclean
601 $(MAKE) /$(MAKEFLAGS) -f Makefile.nmake distclean
607 $(MAKE) /$(MAKEFLAGS) -f Makefile.nmake distclean
609 $(MAKE) /$(MAKEFLAGS) -f Makefile.nmake distclean
611 $(MAKE) /$(MAKEFLAGS) -f Makefile.nmake distclean
613 $(MAKE) /$(MAKEFLAGS) -f Makefile.nmake distclean
615 $(MAKE) /$(MAKEFLAGS) -f Makefile.nmake distclean
617 $(MAKE) /$(MAKEFLAGS) -f Makefile.nmake distclean
619 $(MAKE) /$(MAKEFLAGS) -f Makefile.nmake distclean
621 $(MAKE) /$(MAKEFLAGS) -f Makefile.nmake distclean
623 $(MAKE) /$(MAKEFLAGS) -f Makefile.nmake distclean
625 $(MAKE) /$(MAKEFLAGS) -f Makefile.nmake distclean
626 cd ../portableapps/win32
627 $(MAKE) /$(MAKEFLAGS) -f Makefile.nmake distclean
630 # Make "maintainer-clean" only if you would like to remove ALL generated
632 # Be sure to have python and perl installed to regenerate them.
633 maintainer-clean-local: distclean-local
634 rm -f $(GENERATED_FILES)
636 maintainer-clean: maintainer-clean-local
638 $(MAKE) /$(MAKEFLAGS) -f Makefile.nmake maintainer-clean
640 $(MAKE) /$(MAKEFLAGS) -f Makefile.nmake maintainer-clean
642 $(MAKE) /$(MAKEFLAGS) -f Makefile.nmake maintainer-clean
644 $(MAKE) /$(MAKEFLAGS) -f Makefile.nmake maintainer-clean
646 $(MAKE) /$(MAKEFLAGS) -f Makefile.nmake maintainer-clean
652 $(MAKE) /$(MAKEFLAGS) -f Makefile.nmake maintainer-clean
654 $(MAKE) /$(MAKEFLAGS) -f Makefile.nmake maintainer-clean
656 $(MAKE) /$(MAKEFLAGS) -f Makefile.nmake maintainer-clean
658 $(MAKE) /$(MAKEFLAGS) -f Makefile.nmake maintainer-clean
660 $(MAKE) /$(MAKEFLAGS) -f Makefile.nmake maintainer-clean
662 $(MAKE) /$(MAKEFLAGS) -f Makefile.nmake maintainer-clean
664 $(MAKE) /$(MAKEFLAGS) -f Makefile.nmake maintainer-clean
666 $(MAKE) /$(MAKEFLAGS) -f Makefile.nmake maintainer-clean
668 $(MAKE) /$(MAKEFLAGS) -f Makefile.nmake maintainer-clean
670 $(MAKE) /$(MAKEFLAGS) -f Makefile.nmake maintainer-clean
671 cd ../portableapps/win32
672 $(MAKE) /$(MAKEFLAGS) -f Makefile.nmake maintainer-clean
677 $(MAKE) /$(MAKEFLAGS) -f Makefile.nmake
682 $(MAKE) /$(MAKEFLAGS) -f Makefile.nmake
686 # MSVC variants supported by Wireshark have to avoid indirectly using msvcrt.dll,
687 # therefore compile the adns dll from source ADNS_DIR package.
688 # To avoid path problems, copy the adns sources to a temp dir,
689 # compile and copy the resulting files back to (source) ADNS_DIR
692 # - we need to "patch" adns_dll.rep and adns_dll.rc (at least for MSVC2005EE)
695 xcopy $(ADNS_DIR) adns.tmp /D /I /E /Y
696 copy adns_dll.dep adns.tmp\adns_win32\adns_dll
697 copy adns_dll.rc adns.tmp\adns_win32\adns_dll
698 cd adns.tmp\adns_win32\adns_dll
699 set CFG=adns_dll - Win32 Release
700 $(MAKE) /$(MAKEFLAGS) -f adns_dll.mak LOC="$(LOCAL_CFLAGS)"
702 !IFDEF MANIFEST_INFO_REQUIRED
703 mt.exe -nologo -manifest "adns_dll.dll.manifest" -outputresource:adns_dll.dll;2
705 if not exist "$(WIRESHARK_LIB_DIR)\$(MSVC_VARIANT)\adns" mkdir "$(WIRESHARK_LIB_DIR)\$(MSVC_VARIANT)\adns"
706 copy adns_dll.dll $(ADNS_DLL)
707 copy adns_dll.lib $(ADNS_LIBS)
713 # MSVC variants supported by Wireshark have to avoid indirectly using msvcrt.dll,
714 # therefore compile the zlib dll from source ZLIB_DIR package.
715 # To avoid path problems, copy the zlib sources to a temp dir,
716 # compile and copy the resulting files back to (source) ZLIB_DIR
718 xcopy $(ZLIB_DIR) zlib.tmp /D /I /E /Y
720 !if "$(WIRESHARK_TARGET_PLATFORM)" == "win32"
721 $(MAKE) /$(MAKEFLAGS) -f win32/Makefile.msc zlib1.dll LOC="-DASMV -DASMINF" OBJA="inffas32.obj match686.obj"
723 $(MAKE) /$(MAKEFLAGS) -f win32/Makefile.msc zlib1.dll AS=ml64 LOC="-DASMV -DASMINF" OBJA="inffasx64.obj gvmat64.obj inffas8664.obj"
725 if not exist $(ZLIB_DIR) mkdir $(ZLIB_DIR)
726 if not exist $(ZLIB_DIR)\lib mkdir $(ZLIB_DIR)\lib
727 if not exist $(ZLIB_DIR)\include mkdir $(ZLIB_DIR)\include
728 !IFDEF MANIFEST_INFO_REQUIRED
729 mt.exe -nologo -manifest "zlib1.dll.manifest" -outputresource:zlib1.dll;2
731 copy zlib1.dll $(ZLIB_DIR)
732 copy zdll.lib $(ZLIB_DIR)\lib
733 copy zconf.h $(ZLIB_DIR)\include
734 copy zlib.h $(ZLIB_DIR)\include
741 $(MAKE) /$(MAKEFLAGS) -f Makefile.nmake
746 $(MAKE) /$(MAKEFLAGS) -f Makefile.nmake
751 $(MAKE) /$(MAKEFLAGS) -f Makefile.nmake
754 ui:: help config.h svnversion.h doxygen
756 $(MAKE) /$(MAKEFLAGS) /f Makefile.nmake libui.lib
759 gtk:: help config.h svnversion.h doxygen
761 $(MAKE) /$(MAKEFLAGS) /f Makefile.nmake libgtkui.lib
764 # The Visual C++ static analyzer currently fails with error C2171
765 # when compiling summary_dialog.cpp. If/when this ever gets fixed
766 # we can remove the ENABLE_CODE_ANALYSIS check.
767 qt:: help config.h svnversion.h doxygen
770 $(QT5_BASE_DIR)\bin\qmake CONFIG+=release QtShark.pro
771 !IFDEF ENABLE_CODE_ANALYSIS
781 $(MAKE) /$(MAKEFLAGS) /f Makefile.nmake libgtkui_win32.lib
784 cli:: help config.h svnversion.h doxygen
786 $(MAKE) /$(MAKEFLAGS) /f Makefile.nmake libcliui.lib
789 epan:: $(RESOURCES) $(ZLIB_DLL) wiretap\wiretap-$(WTAP_VERSION).lib $(BUILT_SOURCES) doxygen
791 $(MAKE) /$(MAKEFLAGS) -f Makefile.nmake
796 $(MAKE) /$(MAKEFLAGS) -f Makefile.nmake
801 $(MAKE) /$(MAKEFLAGS) -f Makefile.nmake
806 $(MAKE) /$(MAKEFLAGS) -f Makefile.nmake
811 $(MAKE) /$(MAKEFLAGS) -f Makefile.nmake
814 doxygen.cfg: config.nmake doxygen.cfg.in
815 sed -e s/@VERSION@/$(VERSION)/ \
816 < doxygen.cfg.in > $@
820 $(DOXYGEN) doxygen.cfg
823 doxygen: doxygen.cfg doxygen-run
825 services: tools\make-services.py
826 $(PYTHON) tools/make-services.py
828 ################################################################################
829 # Prepare build environment by downloading and installing required libraries
830 ################################################################################
832 # The required tools to build Wireshark.
834 # The 'find' tool is available both in \WINNT\System32 and in cygwin's /usr/bin.
835 # We only need the cygwin version (for some shell scripts).
836 # In the PATH, System32 is before cygwin's dir, so explicitly check for /usr/bin/find.
841 !IFDEF MANIFEST_INFO_REQUIRED
849 --cygwinonly /usr/bin/find \
854 --windowsonly $(QT5_BASE_DIR)\bin\qmake \
861 # As win-setup.sh assumes the dir exists create it if it doesn't
862 @if not exist "$(WIRESHARK_LIB_DIR)" md "$(WIRESHARK_LIB_DIR)"
863 @$(SH) $(WIN_SETUP) --appverify $(REQUIRED_TOOLS)
865 # Targets and etc used to verify or download libraries
867 !IFNDEF WIN_SETUP_OPT
868 WIN_SETUP_OPT=--download
871 # Verify that the required library 'package' (zip) files have been downloaded.
872 # (It seems reasonable to assume that if the files have been downloaded
873 # then they have been installed).
875 $(MAKE) /$(MAKEFLAGS) -f Makefile.nmake WIN_SETUP_OPT=--libverify process_libs
877 # Verify library packages:
878 # If $(CHECK_TAG) is non-null then checktag failed; Exit with an error message. (See beginning of this Makefile).
879 # Otherwise do detailed library package files verification only if Makefile.nmake or config.make have been updated
880 # (or dummy file doesn't exist because of 'make clean' or whatever).
881 # Note that the creation/modification time of a file after an svn update of that file
882 # is the time of the update (not the time of the file in the repository).
883 # touch is only called if libverify succeeds.
884 $(LIBS_CHECK): $(CHECK_TAG) config.nmake Makefile.nmake
885 @echo Verifying library package files ...
886 @$(MAKE) /$(MAKEFLAGS) -f Makefile.nmake WIN_SETUP_OPT=--libverify process_libs
889 # Target for "checktag failed" (libraries not up to date).
890 # Defined only if "checktag" failed (see beginning of this Makefile).
891 !IF "$(CHECK_TAG)" != ""
892 $(CHECK_TAG): _FORCE_
893 @echo \? Wireshark Libraries not up-to-date \?
894 @echo \? Do you need to run "nmake -f Makefile.nmake setup" \?
900 # Download (if needed) and install all the required libraries into WIRESHARK_LIB_DIR.
901 # A clean_setup is done first to ensure that the target dirs don't
902 # contain old files remaining from a previous setup run.
903 setup: verify_tools clean_setup process_libs
906 $(SH) $(WIN_SETUP) --download "C:\Qt" \
907 . Qt-5.1.1-MSVC2010-$(WIRESHARK_TARGET_PLATFORM)-ws.zip
909 # The process_libs target when invoked causes either a --libverify or a --download for all the required libraries.
910 # (The choice is determined by the value of the macro WIN_SETUP_OPT).
912 @if not exist "$(WIRESHARK_LIB_DIR)" md "$(WIRESHARK_LIB_DIR)"
913 @$(SH) $(WIN_SETUP) "$(WIN_SETUP_OPT)" "$(WIRESHARK_LIB_DIR)" \
914 . WinPcap_$(PCAP_VERSION).exe
916 !MESSAGE Can't find Qt. This will become a problem at some point.
919 @$(SH) $(WIN_SETUP) "$(WIN_SETUP_OPT)" "$(WIRESHARK_LIB_DIR)" \
920 "$(GTK_NAME)" gtk+-bundle_$(GTK_PKG)_$(WIRESHARK_TARGET_PLATFORM)$(PKG_SUFIX).zip
923 @$(SH) $(WIN_SETUP) "$(WIN_SETUP_OPT)" "$(WIRESHARK_LIB_DIR)" \
924 . kfw-3-2-2-i386-ws-vc6.zip
925 # @$(SH) $(WIN_SETUP) "$(WIN_SETUP_OPT)" "$(WIRESHARK_LIB_DIR)" \
929 @$(SH) $(WIN_SETUP) "$(WIN_SETUP_OPT)" "$(WIRESHARK_LIB_DIR)" \
930 . WpdPack_$(WPD_VERSION).zip
933 @$(SH) $(WIN_SETUP) "$(WIN_SETUP_OPT)" "$(WIRESHARK_LIB_DIR)" \
934 AirPcap_Devpack_4_1_0_1622 AirPcap_Devpack_4_1_0_1622.zip
937 @$(SH) $(WIN_SETUP) "$(WIN_SETUP_OPT)" "$(WIRESHARK_LIB_DIR)" \
938 . c-ares-$(C_ARES_PKG)-$(WIRESHARK_TARGET_PLATFORM)ws.zip
941 @$(SH) $(WIN_SETUP) "$(WIN_SETUP_OPT)" "$(WIRESHARK_LIB_DIR)" \
942 . adns-1.0-win32-05ws.zip
945 @$(SH) $(WIN_SETUP) "$(WIN_SETUP_OPT)" "$(WIRESHARK_LIB_DIR)" \
946 !if "$(WIRESHARK_TARGET_PLATFORM)" == "win32"
947 zlib125 zlib-1.2.5.zip
949 zlib125 zlib125ws.zip
953 @$(SH) $(WIN_SETUP) "$(WIN_SETUP_OPT)" "$(WIRESHARK_LIB_DIR)" \
954 lua5.1.4 lua$(LUA_DIST)_lib.zip
958 @$(SH) $(WIN_SETUP) "$(WIN_SETUP_OPT)" "$(WIRESHARK_LIB_DIR)" \
959 . gnutls-$(GNUTLS_PKG)-$(WIRESHARK_TARGET_PLATFORM)ws.zip
962 @$(SH) $(WIN_SETUP) "$(WIN_SETUP_OPT)" "$(WIRESHARK_LIB_DIR)" \
963 . portaudio_v19_2.zip
966 @$(SH) $(WIN_SETUP) "$(WIN_SETUP_OPT)" "$(WIRESHARK_LIB_DIR)" \
967 . libsmi-$(SMI_PKG)-$(WIRESHARK_TARGET_PLATFORM)ws.zip
970 @$(SH) $(WIN_SETUP) "$(WIN_SETUP_OPT)" "$(WIRESHARK_LIB_DIR)" \
971 GeoIP-$(GEOIP_PKG)-$(WIRESHARK_TARGET_PLATFORM)ws GeoIP-$(GEOIP_PKG)-$(WIRESHARK_TARGET_PLATFORM)ws.zip
973 !IFDEF WINSPARKLE_DIR
974 @$(SH) $(WIN_SETUP) "$(WIN_SETUP_OPT)" "$(WIRESHARK_LIB_DIR)" \
975 . WinSparkle-$(WINSPARKLE_PKG).zip
978 @$(SH) $(WIN_SETUP) "$(WIN_SETUP_OPT)" "$(WIRESHARK_LIB_DIR)" \
979 user-guide user-guide-52567.zip
982 @$(SH) $(WIN_SETUP) "$(WIN_SETUP_OPT)" "$(WIRESHARK_LIB_DIR)" \
986 @$(SH) $(WIN_SETUP) "$(WIN_SETUP_OPT)" "$(WIRESHARK_LIB_DIR)" \
987 . nasm-2.09.08-win32.zip
989 !IF "$(WIN_SETUP_OPT)" == "--download"
990 @$(SH) $(WIN_SETUP) --settag "$(WIRESHARK_LIB_DIR)"
993 @echo Wireshark is ready to build.
995 # Cleanup files installed by the setup target. It will not remove the
996 # downloaded zip files.
997 # WHEN UPDATING LIBRARY VERSIONS, KEEP ALSO ONE FORMER VERSION SO
998 # UPDATING REMOVES THE FORMER USER DIRS
1000 cd "$(WIRESHARK_LIB_DIR)"
1001 rm -r -f adns-1.0-win32-05ws
1002 rm -r -f c-ares-1.5.3ws
1003 rm -r -f c-ares-1.6.0ws
1004 rm -r -f c-ares-1.7.0-win??ws
1005 rm -r -f c-ares-1.7.1-win??ws
1006 rm -r -f c-ares-1.9.1-1-win??ws
1007 rm -r -f gettext-0.14.5
1008 rm -r -f gettext-runtime-0.17
1009 rm -r -f gettext-runtime-0.17-1
1010 rm -r -f gettext-0.17-1 # win64
1012 rm -r -f gnutls-2.8.1-1
1013 rm -r -f gnutls-2.8.5-*-win??ws
1014 rm -r -f gnutls-2.10.3-*-win??ws
1015 rm -r -f gnutls-2.12.18-*-win??ws
1016 !IF "$(GTK_NAME)" == "gtk2"
1024 rm -r -f kfw-3-2-2-final
1025 rm -r -f kfw-3.2.2-ws1
1026 rm -r -f kfw-3-2-2-i386-ws-vc6
1027 rm -r -f libiconv-1.9.1.bin.woe32
1030 rm -r -f libsmi-0.4.5
1031 rm -r -f libsmi-0.4.8
1032 rm -r -f libsmi-svn-40773-win??ws
1035 rm -r -f nasm-2.09.08
1038 rm -r -f portaudio_v19
1039 rm -r -f portaudio_v19_2
1046 rm -r -f zlib123-dll
1047 rm -r -f AirPcap_Devpack_1_0_0_594
1048 rm -r -f AirPcap_Devpack_4_0_0_1480
1049 rm -r -f AirPcap_Devpack_4_1_0_1622
1050 rm -r -f GeoIP-1.4.5ws
1051 rm -r -f GeoIP-1.4.6-win??ws
1052 rm -r -f GeoIP-1.4.8-win??ws
1053 rm -r -f GeoIP-1.4.8-*-win??ws
1054 rm -r -f GeoIP-1.5.1-*-win??ws
1055 rm -r -f WinSparkle-0.3-44-g2c8d9d3-win??ws
1059 ################################################################################
1060 # Prepare the debug trees for running Wireshark/Tshark from there.
1061 ################################################################################
1064 # prepare debugging of Wireshark in INSTALL_DIR
1065 debug-wireshark: wireshark.exe install-generated-files
1067 # prepare debugging of tshark in INSTALL_DIR
1068 debug-tshark: tshark.exe install-generated-files
1070 # prepare debugging of rawshark in INSTALL_DIR
1071 debug-rawshark: rawshark.exe install-generated-files
1073 # prepare debugging of dumpcap in INSTALL_DIR
1074 debug-dumpcap: dumpcap.exe install-generated-files
1077 # install generated files (exe, "our" libs, ...)
1078 install-generated-files: doc
1080 if not exist $(INSTALL_DIR) mkdir $(INSTALL_DIR)
1081 !IF DEFINED (MSVCR_DLL) && "$(MSVC_VARIANT)" == "MSVC2008"
1082 xcopy "$(MSVCR_DLL)" $(INSTALL_DIR)\*.* /d
1084 !IFDEF ENABLE_LIBWIRESHARK
1085 xcopy epan\libwireshark.dll $(INSTALL_DIR) /d
1086 if exist epan\libwireshark.lib xcopy .\epan\libwireshark.lib $(INSTALL_DIR) /d
1087 if exist epan\libwireshark.pdb xcopy .\epan\libwireshark.pdb $(INSTALL_DIR) /d
1089 xcopy ".\wiretap\wiretap-$(WTAP_VERSION).dll" $(INSTALL_DIR) /d
1090 if exist ".\wiretap\wiretap-$(WTAP_VERSION).lib" xcopy ".\wiretap\wiretap-$(WTAP_VERSION).lib" $(INSTALL_DIR) /d
1091 if exist ".\wiretap\wiretap-$(WTAP_VERSION).pdb" xcopy ".\wiretap\wiretap-$(WTAP_VERSION).pdb" $(INSTALL_DIR) /d
1092 xcopy ".\wsutil\libwsutil.dll" $(INSTALL_DIR) /d
1093 if exist ".\wsutil\libwsutil.lib" xcopy ".\wsutil\libwsutil.lib" $(INSTALL_DIR) /d
1094 if exist ".\wsutil\libwsutil.pdb" xcopy ".\wsutil\libwsutil.pdb" $(INSTALL_DIR) /d
1095 if exist $(PROGRAM_NAME).exe xcopy $(PROGRAM_NAME).exe $(INSTALL_DIR) /d
1096 if exist $(PROGRAM_NAME).pdb xcopy $(PROGRAM_NAME).pdb $(INSTALL_DIR) /d
1097 if exist $(PROGRAM_NAME).bsc xcopy $(PROGRAM_NAME).bsc $(INSTALL_DIR) /d
1098 if exist ".\docbook\user-guide.chm" xcopy ".\docbook\user-guide.chm" $(INSTALL_DIR) /d
1099 if exist capinfos.exe xcopy capinfos.exe $(INSTALL_DIR) /d
1100 if exist capinfos.pdb xcopy capinfos.pdb $(INSTALL_DIR) /d
1101 if exist dumpcap.exe xcopy dumpcap.exe $(INSTALL_DIR) /d
1102 if exist dumpcap.pdb xcopy dumpcap.pdb $(INSTALL_DIR) /d
1103 if exist editcap.exe xcopy editcap.exe $(INSTALL_DIR) /d
1104 if exist editcap.pdb xcopy editcap.pdb $(INSTALL_DIR) /d
1105 if exist mergecap.exe xcopy mergecap.exe $(INSTALL_DIR) /d
1106 if exist mergecap.pdb xcopy mergecap.pdb $(INSTALL_DIR) /d
1107 if exist reordercap.exe xcopy reordercap.exe $(INSTALL_DIR) /d
1108 if exist reordercap.pdb xcopy reordercap.pdb $(INSTALL_DIR) /d
1109 if exist rawshark.exe xcopy rawshark.exe $(INSTALL_DIR) /d
1110 if exist rawshark.pdb xcopy rawshark.pdb $(INSTALL_DIR) /d
1111 if exist text2pcap.exe xcopy text2pcap.exe $(INSTALL_DIR) /d
1112 if exist text2pcap.pdb xcopy text2pcap.pdb $(INSTALL_DIR) /d
1113 if exist tshark.exe xcopy tshark.exe $(INSTALL_DIR) /d
1114 if exist tshark.pdb xcopy tshark.pdb $(INSTALL_DIR) /d
1115 xcopy "doc\AUTHORS-SHORT" $(INSTALL_DIR) /d
1116 xcopy ".\manuf" $(INSTALL_DIR) /d
1117 xcopy ".\services" $(INSTALL_DIR) /d
1118 xcopy ".\pdml2html.xsl" $(INSTALL_DIR) /d
1119 $(TEXTIFY) "./COPYING" $(INSTALL_DIR)
1120 $(TEXTIFY) "./NEWS" $(INSTALL_DIR)
1121 $(TEXTIFY) "./README" $(INSTALL_DIR)
1122 $(TEXTIFY) "./README.windows" $(INSTALL_DIR)
1123 xcopy ".\cfilters" $(INSTALL_DIR) /d
1124 xcopy ".\colorfilters" $(INSTALL_DIR) /d
1125 xcopy ".\dfilters" $(INSTALL_DIR) /d
1126 xcopy ".\smi_modules" $(INSTALL_DIR) /d
1128 xcopy ".\epan\wslua\init.lua" $(INSTALL_DIR) /d
1129 xcopy ".\epan\wslua\console.lua" $(INSTALL_DIR) /d
1132 if not exist $(INSTALL_DIR)\python mkdir $(INSTALL_DIR)\python
1133 xcopy ".\epan\wspython\register-dissector.py" $(INSTALL_DIR)\python /d
1134 xcopy ".\epan\wspython\wspy_dissector.py" $(INSTALL_DIR)\python /d
1135 xcopy ".\epan\wspython\wspy_libws.py" $(INSTALL_DIR)\python /d
1137 xcopy ipmap.html $(INSTALL_DIR) /d
1138 xcopy doc\*.html $(INSTALL_DIR) /d
1139 if not exist $(INSTALL_DIR)\help mkdir $(INSTALL_DIR)\help
1140 xcopy ".\help\*.*" $(INSTALL_DIR)\help /d
1141 # you can't reliably use xcopy to rename files "on the fly" (so copy first, then rename)
1142 xcopy ".\help\faq.txt" $(INSTALL_DIR) /d
1143 $(UNIX2DOS) $(INSTALL_DIR)/help/*.txt
1144 if not exist $(INSTALL_DIR)\dtds mkdir $(INSTALL_DIR)\dtds
1145 xcopy ".\dtds\*.*" $(INSTALL_DIR)\dtds /d
1146 if not exist $(INSTALL_DIR)\asn1 mkdir $(INSTALL_DIR)\asn1
1147 echo create empty asn1 default.tt file to prevent problems 2> $(INSTALL_DIR)\asn1\default.tt
1148 if not exist $(INSTALL_DIR)\radius mkdir $(INSTALL_DIR)\radius
1149 xcopy ".\radius\*.*" $(INSTALL_DIR)\radius /d
1150 if not exist $(INSTALL_DIR)\diameter mkdir $(INSTALL_DIR)\diameter
1151 xcopy ".\diameter\*.dtd" $(INSTALL_DIR)\diameter /d
1152 xcopy ".\diameter\*.xml" $(INSTALL_DIR)\diameter /d
1153 if not exist $(INSTALL_DIR)\tpncp mkdir $(INSTALL_DIR)\tpncp
1154 xcopy ".\tpncp\*.dat" $(INSTALL_DIR)\tpncp /d
1155 if not exist $(INSTALL_DIR)\wimaxasncp mkdir $(INSTALL_DIR)\wimaxasncp
1156 xcopy ".\wimaxasncp\*.*" $(INSTALL_DIR)\wimaxasncp /d
1157 if not exist $(INSTALL_DIR)\plugins mkdir $(INSTALL_DIR)\plugins
1158 if not exist $(INSTALL_DIR)\plugins\$(VERSION) mkdir $(INSTALL_DIR)\plugins\$(VERSION)
1160 $(MAKE) /$(MAKEFLAGS) -f Makefile.nmake install-plugins
1162 if not exist $(INSTALL_DIR)\profiles mkdir $(INSTALL_DIR)\profiles
1163 if not exist $(INSTALL_DIR)\profiles\Bluetooth mkdir $(INSTALL_DIR)\profiles\Bluetooth
1164 xcopy ".\profiles\Bluetooth\colorfilters" $(INSTALL_DIR)\profiles\Bluetooth /d
1165 if not exist $(INSTALL_DIR)\profiles\Classic mkdir $(INSTALL_DIR)\profiles\Classic
1166 xcopy ".\profiles\Classic\colorfilters" $(INSTALL_DIR)\profiles\Classic /d
1168 # "install-all" will copy all files needed to run Wireshark/Tshark
1169 # to the INSTALL_DIR, so you can run/debug Wireshark/Tshark from there.
1170 install-all: install-generated-files
1172 if not exist $(INSTALL_DIR) mkdir $(INSTALL_DIR)
1173 !IF "$(GTK_INST_VERSION)" == "3.4"
1174 xcopy $(GTK_DIR)\bin\libgdk-3-0.dll $(INSTALL_DIR) /d
1175 xcopy $(GTK_DIR)\bin\libgtk-3-0.dll $(INSTALL_DIR) /d
1177 xcopy $(GTK_DIR)\bin\libgdk-win32-2.0-0.dll $(INSTALL_DIR) /d
1178 xcopy $(GTK_DIR)\bin\libgtk-win32-2.0-0.dll $(INSTALL_DIR) /d
1180 xcopy $(GTK_DIR)\bin\libgdk_pixbuf-2.0-0.dll $(INSTALL_DIR) /d
1181 xcopy $(GTK_DIR)\bin\libatk-1.0-0.dll $(INSTALL_DIR) /d
1182 xcopy $(GTK_DIR)\bin\libpango-1.0-0.dll $(INSTALL_DIR) /d
1183 xcopy $(GTK_DIR)\bin\libpangowin32-1.0-0.dll $(INSTALL_DIR) /d
1184 if not exist $(INSTALL_DIR)\lib mkdir $(INSTALL_DIR)\lib
1185 if not exist $(INSTALL_DIR)\etc mkdir $(INSTALL_DIR)\etc
1186 if not exist $(INSTALL_DIR)\$(GTK_ETC_DIR) mkdir $(INSTALL_DIR)\$(GTK_ETC_DIR)
1187 xcopy $(GTK_DIR)\$(GTK_ETC_DIR)\*.* $(INSTALL_DIR)\$(GTK_ETC_DIR) /d
1188 # if not exist $(INSTALL_DIR)\etc\pango mkdir $(INSTALL_DIR)\etc\pango
1189 # xcopy $(GTK_DIR)\etc\pango\pango.* $(INSTALL_DIR)\etc\pango /d
1190 !IF "$(GTK_INST_VERSION)" == "3.4"
1191 if not exist $(INSTALL_DIR)\lib\gtk-3.0 mkdir $(INSTALL_DIR)\lib\gtk-3.0
1192 if not exist $(INSTALL_DIR)\lib\gtk-3.0\$(GTK_LIB_DIR) mkdir $(INSTALL_DIR)\lib\gtk-3.0\$(GTK_LIB_DIR)
1193 xcopy ".\ui\win32\settings.ini" $(INSTALL_DIR)\$(GTK_ETC_DIR) /d
1195 if not exist $(INSTALL_DIR)\lib\gtk-2.0 mkdir $(INSTALL_DIR)\lib\gtk-2.0
1196 if not exist $(INSTALL_DIR)\lib\gtk-2.0\$(GTK_LIB_DIR) mkdir $(INSTALL_DIR)\lib\gtk-2.0\$(GTK_LIB_DIR)
1197 if not exist $(INSTALL_DIR)\lib\gtk-2.0\$(GTK_LIB_DIR)\loaders mkdir $(INSTALL_DIR)\lib\gtk-2.0\$(GTK_LIB_DIR)\loaders
1198 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
1200 !IFDEF GTK_ENGINES_DIR
1201 if not exist $(INSTALL_DIR)\$(GTK_ENGINES_DIR) mkdir $(INSTALL_DIR)\$(GTK_ENGINES_DIR)
1202 xcopy $(GTK_DIR)\$(GTK_ENGINES_DIR)\libpixmap.dll $(INSTALL_DIR)\$(GTK_ENGINES_DIR) /d
1203 xcopy $(GTK_DIR)\$(GTK_ENGINES_DIR)\libwimp.dll $(INSTALL_DIR)\$(GTK_ENGINES_DIR) /d
1205 !IFDEF GTK_THEMES_DIR
1206 xcopy "$(GTK_DIR)\$(GTK_THEMES_DIR)\gtkrc" $(INSTALL_DIR)\$(GTK_ETC_DIR) /d
1208 !IFDEF GTK_MODULES_DIR
1209 if not exist $(INSTALL_DIR)\$(GTK_MODULES_DIR) mkdir $(INSTALL_DIR)\$(GTK_MODULES_DIR)
1210 xcopy $(GTK_DIR)\$(GTK_MODULES_DIR)\libgail.dll $(INSTALL_DIR)\$(GTK_MODULES_DIR) /d
1212 !IFDEF NEED_CAIRO_GOBJECT_DLL
1213 xcopy $(GTK_DIR)\bin\libcairo-gobject-2.dll $(INSTALL_DIR) /d
1215 !IFDEF NEED_CAIRO_DLL
1216 xcopy $(GTK_DIR)\bin\libcairo-2.dll $(INSTALL_DIR) /d
1217 xcopy $(GTK_DIR)\bin\libpangocairo-1.0-0.dll $(INSTALL_DIR) /d
1219 !IFDEF NEED_EXPAT_DLL
1220 xcopy $(GTK_DIR)\bin\$(EXPAT_DLL) $(INSTALL_DIR) /d
1223 xcopy $(GTK_DIR)\bin\$(FFI_DLL) $(INSTALL_DIR) /d
1225 !IFDEF NEED_FONTCONFIG_DLL
1226 xcopy $(GTK_DIR)\bin\$(FONTCONFIG_DLL) $(INSTALL_DIR) /d
1228 !IFDEF NEED_FREETYPE_DLL
1229 xcopy $(GTK_DIR)\bin\libpangoft2-1.0-0.dll $(INSTALL_DIR) /d
1230 xcopy $(GTK_DIR)\bin\$(FREETYPE_DLL) $(INSTALL_DIR) /d
1232 !IFDEF NEED_JASPER_DLL
1233 xcopy $(GTK_DIR)\bin\$(JASPER_DLL) $(INSTALL_DIR) /d
1235 !IFDEF NEED_JPEG_DLL
1236 xcopy $(GTK_DIR)\bin\$(JPEG_DLL) $(INSTALL_DIR) /d
1238 !IFDEF NEED_LZMA_DLL
1239 xcopy $(GTK_DIR)\bin\$(LZMA_DLL) $(INSTALL_DIR) /d
1241 !IFDEF NEED_PIXMAN_DLL
1242 xcopy $(GTK_DIR)\bin\$(PIXMAN_DLL) $(INSTALL_DIR) /d
1245 xcopy $(GTK_DIR)\bin\$(PNG_DLL) $(INSTALL_DIR) /d
1247 !IFDEF NEED_TIFF_DLL
1248 xcopy $(GTK_DIR)\bin\$(TIFF_DLL) $(INSTALL_DIR) /d
1251 xcopy $(GTK_DIR)\bin\$(XML_DLL) $(INSTALL_DIR) /d
1253 !IFDEF GTK_SCHEMAS_DIR
1254 if not exist $(INSTALL_DIR)\$(GTK_SCHEMAS_DIR) mkdir $(INSTALL_DIR)\$(GTK_SCHEMAS_DIR)
1255 if not exist $(GTK_DIR)\$(GTK_SCHEMAS_DIR)\gschemas.compiled $(GTK_DIR)\bin\glib-compile-schemas $(GTK_DIR)\$(GTK_SCHEMAS_DIR)
1256 xcopy $(GTK_DIR)\$(GTK_SCHEMAS_DIR)\gschemas.compiled $(INSTALL_DIR)\$(GTK_SCHEMAS_DIR) /d
1258 xcopy $(GTK_DIR)\bin\libgio-2.0-0.dll $(INSTALL_DIR) /d
1259 xcopy $(GTK_DIR)\bin\libglib-2.0-0.dll $(INSTALL_DIR) /d
1260 xcopy $(GTK_DIR)\bin\libgmodule-2.0-0.dll $(INSTALL_DIR) /d
1261 xcopy $(GTK_DIR)\bin\libgobject-2.0-0.dll $(INSTALL_DIR) /d
1262 xcopy $(GTK_DIR)\bin\libgthread-2.0-0.dll $(INSTALL_DIR) /d
1263 xcopy $(GTK_DIR)\bin\$(INTL_DLL) $(INSTALL_DIR) /d
1265 xcopy $(ZLIB_DLL) $(INSTALL_DIR) /d
1268 xcopy $(C_ARES_DLL) $(INSTALL_DIR) /d
1271 xcopy $(ADNS_DLL) $(INSTALL_DIR) /d
1274 xcopy $(KFW_PATH)\comerr32.dll $(INSTALL_DIR) /d
1275 xcopy $(KFW_PATH)\krb5_32.dll $(INSTALL_DIR) /d
1276 xcopy $(KFW_PATH)\k5sprt32.dll $(INSTALL_DIR) /d
1279 xcopy $(GNUTLS_DIR)\bin\libgcrypt-11.dll $(INSTALL_DIR) /d
1280 xcopy $(GNUTLS_DIR)\bin\libgnutls-26.dll $(INSTALL_DIR) /d
1281 xcopy $(GNUTLS_DIR)\bin\libgpg-error-0.dll $(INSTALL_DIR) /d
1282 xcopy $(GNUTLS_DIR)\bin\libtasn1-3.dll $(INSTALL_DIR) /d
1283 ! IF "$(INTL_DLL)" != "libintl-8.dll"
1284 # The gtk+ bundle doesn't provide libintl-8.dll (which is the case
1285 # with the 32-bit package); use the GNUTLS version.
1286 xcopy $(GNUTLS_DIR)\bin\libintl-8.dll $(INSTALL_DIR) /d
1290 xcopy "$(LUA_DIR)\lua5.1.dll" $(INSTALL_DIR) /d
1293 if not exist $(INSTALL_DIR)\snmp mkdir $(INSTALL_DIR)\snmp
1294 if not exist $(INSTALL_DIR)\snmp\mibs mkdir $(INSTALL_DIR)\snmp\mibs
1295 xcopy "$(SMI_DIR)\bin\libsmi-2.dll" $(INSTALL_DIR) /d
1296 xcopy "$(SMI_DIR)\share\mibs\iana\*" $(INSTALL_DIR)\snmp\mibs /d
1297 xcopy "$(SMI_DIR)\share\mibs\ietf\*" $(INSTALL_DIR)\snmp\mibs /d
1298 xcopy "$(SMI_DIR)\share\mibs\irtf\*" $(INSTALL_DIR)\snmp\mibs /d
1299 xcopy "$(SMI_DIR)\share\mibs\site\*" $(INSTALL_DIR)\snmp\mibs /d
1300 xcopy "$(SMI_DIR)\share\mibs\tubs\*" $(INSTALL_DIR)\snmp\mibs /d
1301 xcopy "$(SMI_DIR)\share\pibs\*" $(INSTALL_DIR)\snmp\mibs /d
1302 xcopy "$(SMI_DIR)\share\yang\*.yang" $(INSTALL_DIR)\snmp\mibs /d
1305 xcopy "$(GEOIP_DIR)\bin\libGeoip-1.dll" $(INSTALL_DIR) /d
1307 !IFDEF WINSPARKLE_DIR
1308 xcopy "$(WINSPARKLE_DIR)\WinSparkle.dll" $(INSTALL_DIR) /d
1311 peflags --dynamicbase=true --nxcompat=true *.dll
1312 !IF "$(GTK_INST_VERSION)" == "3.4"
1314 peflags --dynamicbase=true --nxcompat=true lib/gtk-2.0/*/engines/*.dll
1315 peflags --dynamicbase=true --nxcompat=true lib/gtk-2.0/modules/*.dll
1320 $(PERL) tools/checkAPIs.pl -build \
1321 $(WIRESHARK_COMMON_SRC) \
1323 # $(EXTRA_wireshark_SOURCES)
1325 checkapi: checkapi_local
1327 $(MAKE) /$(MAKEFLAGS) -f Makefile.nmake checkapi
1329 $(MAKE) /$(MAKEFLAGS) -f Makefile.nmake checkapi
1331 $(MAKE) /$(MAKEFLAGS) -f Makefile.nmake checkapi
1333 $(MAKE) /$(MAKEFLAGS) -f Makefile.nmake checkapi
1335 $(MAKE) /$(MAKEFLAGS) -f Makefile.nmake checkapi
1337 ## $(MAKE) /$(MAKEFLAGS) -f Makefile.nmake checkapi
1339 ## $(MAKE) /$(MAKEFLAGS) -f Makefile.nmake checkapi
1341 $(MAKE) /$(MAKEFLAGS) -f Makefile.nmake checkapi
1343 ## $(MAKE) /$(MAKEFLAGS) -f Makefile.nmake checkapi
1345 ## $(MAKE) /$(MAKEFLAGS) -f Makefile.nmake checkapi
1347 $(MAKE) /$(MAKEFLAGS) -f Makefile.nmake checkapi
1350 $(MAKE) /$(MAKEFLAGS) -f Makefile.nmake checkapi
1352 $(MAKE) /$(MAKEFLAGS) -f Makefile.nmake checkapi
1355 _FORCE_: ## Assumption: no file named _FORCE_ exists in the current directory