VirtualBox

source: vbox/trunk/Makefile.kmk@ 74942

Last change on this file since 74942 was 74235, checked in by vboxsync, 6 years ago

Config.kmk,Makefile.kmk,iprt: extpack solaris build hacking.

  • Property svn:eol-style set to native
  • Property svn:keywords set to Author Date Id Revision
File size: 79.5 KB
RevLine 
[2478]1# $Id: Makefile.kmk 74235 2018-09-13 12:24:33Z vboxsync $
2## @file
[1]3# Top level makefile.
4#
[2478]5
[1]6#
[69111]7# Copyright (C) 2006-2017 Oracle Corporation
[4398]8#
[5999]9# This file is part of VirtualBox Open Source Edition (OSE), as
10# available from http://www.virtualbox.org. This file is free software;
11# you can redistribute it and/or modify it under the terms of the GNU
12# General Public License (GPL) as published by the Free Software
13# Foundation, in version 2 as it comes in the "COPYING" file of the
14# VirtualBox OSE distribution. VirtualBox OSE is distributed in the
15# hope that it will be useful, but WITHOUT ANY WARRANTY of any kind.
16#
[1]17
[10195]18SUB_DEPTH = .
19include $(KBUILD_PATH)/subheader.kmk
[1]20
[12243]21#
22# Sub-makefiles / Sub-directories.
23#
[51770]24ifndef VBOX_ONLY_ROOT_MAKEFILE
[56347]25 if (defined(VBOX_WITH_DOCS) || defined(VBOX_WITH_MAIN)) \
[56346]26 && (!defined(VBOX_ONLY_BUILD) || defined(VBOX_ONLY_DOCS) || defined(VBOX_ONLY_SDK))
[51770]27 include $(PATH_SUB_CURRENT)/doc/manual/Makefile.kmk
28 endif
29 include $(PATH_SUB_CURRENT)/src/Makefile.kmk
[68676]30 ifdef VBOX_WITH_INCLUDE_SYNTAX_CHECKING
31 include $(PATH_SUB_CURRENT)/include/Makefile.kmk
32 endif
[10195]33endif
[1]34
[48584]35#
36# Below we might need TOOL_ZIP_UNPACK (for the additions/docs/efifw packages
37# from the build server), and it's not really worth the effort of dragging in
38#q this tool only if absolutely needed.
39#
40## @todo Hack to get at TOOL_ZIP_UNPACK; see if this can be integrated somehow...
41include $(KBUILD_PATH)/tools/ZIP.kmk
42ifndef TOOL_ZIP_PACK
43 TOOL_ZIP_PACK = zip
44endif
[12243]45
[48584]46
[42276]47## @todo split up this file!
48
49
[15800]50#
51# Clean up global stuff that Config.kmk generates.
52#
53OTHER_CLEAN += \
54 $(VBOX_PACKAGE_HEADER) \
55 $(VBOX_LICENSE_VER_KMK) \
56 $(VBOX_VERSION_MK) \
57 $(VBOX_VERSION_HEADER) \
58 $(VBOX_VERSION_STAMP) \
59 $(wildcard $(PATH_OUT)/version-stamp-*.*.*) \
60 $(VBOX_SVN_REV_KMK).ts \
[15802]61 $(VBOX_SVN_REV_KMK) \
[47046]62 $(PATH_OUT)/DynamicConfig.kmk
[15800]63
64
[34482]65if !defined(VBOX_ONLY_ADDITIONS) \
66 && !defined(VBOX_ONLY_DOCS) \
67 && !defined(VBOX_ONLY_EXTPACKS) \
[51346]68 && !defined(VBOX_ONLY_VALIDATIONKIT) # -> line 426b ;-)
[12576]69
[42276]70 if !defined(VBOX_OSE) && defined(VBOX_LICENSE_FILES)
71 #
72 # Install the license (and misc non-executable stuff).
73 #
74 INSTALLS += InstallLicenseFiles
75 InstallLicenseFiles_INST = $(INST_BIN)
76 InstallLicenseFiles_MODE = 0644
77 InstallLicenseFiles_SOURCES =
78 InstallLicenseFiles_SOURCES += \
[13264]79 $(VBOX_BRAND_LICENSE_HTML)=>License-$(VBOX_LICENSE_VER).html \
[42276]80 $(foreach f,$(VBOX_INSTALLER_ADD_LANGUAGES),$(VBOX_BRAND_$(f)_LICENSE_HTML)=>License-$(VBOX_LICENSE_VER)-$(f).html)
[12576]81 endif
82
83
[1]84#
85# Install external binaries (mostly redistributable parts of tools we use).
86#
87# To avoid dragging in unnecessary tools and sdks here, we don't use the .win
88# and .linux property suffixes.
89#
[42276]90INSTALLS += InstallExternalLibs
[1]91
[42276]92InstallExternalLibs_INST = $(INST_BIN)
[1]93
94# The SDL DLLs
[8758]95if1of ($(KBUILD_TARGET), win os2)
[44580]96 ifdef VBOX_WITH_VBOXSDL
[8760]97 include $(KBUILD_PATH)/sdks/LIBSDL.kmk
[42276]98 InstallExternalLibs_SOURCES += \
[51770]99 $(call VBOX_RE_SIGN_DLL_FN,InstallExternalLibs,$(DLL_SDK_LIBSDL_SDL))
[1]100 ifdef VBOX_WITH_SECURELABEL
[42276]101 InstallExternalLibs_SOURCES += \
[51770]102 $(call VBOX_RE_SIGN_DLL_FN,InstallExternalLibs,$(DLL_SDK_LIBSDL_SDLTTF))
[1]103 endif
[8758]104 ifeq ($(KBUILD_TARGET),os2)
[42276]105 InstallExternalLibs_SOURCES += \
[1]106 $(DLL_SDK_LIBSDL_FSLIB)
107 endif
108 endif
109endif
110
[3405]111
[1]112# The compiler runtime DLLs.
[8758]113ifeq ($(KBUILD_TARGET).$(VBOX_WITHOUT_COMPILER_REDIST),win.)
[51770]114 include $(KBUILD_PATH)/tools/$(VBOX_VCC_TOOL).kmk
115 include $(KBUILD_PATH)/tools/$(VBOX_VCC_TOOL_STEM)X86.kmk
[66834]116 VBOX_VCC_REDIR_BASE := Microsoft.VC$(substr $(VBOX_VCC_TOOL),4,3)
[51770]117 VBOX_PATH_VCC_REDIST = $(PATH_TOOL_$(VBOX_VCC_TOOL))/redist/
[66834]118 VBOX_PATH_VCC_REDIST_CRT = $(VBOX_PATH_VCC_REDIST)/$(subst amd64,x64,$(KBUILD_TARGET_ARCH))/$(VBOX_VCC_REDIR_BASE).CRT
119 VBOX_PATH_VCC_REDIST_CRT_DBG = $(VBOX_PATH_VCC_REDIST)/Debug_NonRedist/$(subst amd64,x64,$(KBUILD_TARGET_ARCH))/$(VBOX_VCC_REDIR_BASE).DebugCRT
120 VBOX_PATH_VCC_REDIST_CRT_X86 = $(VBOX_PATH_VCC_REDIST)/x86/$(VBOX_VCC_REDIR_BASE).CRT
121 VBOX_PATH_VCC_REDIST_CRT_DBG_X86 = $(VBOX_PATH_VCC_REDIST)/Debug_NonRedist/x86/$(VBOX_VCC_REDIR_BASE).DebugCRT
[51770]122
123 InstallExternalLibs_SOURCES += \
124 $(call VBOX_RE_SIGN_DLL_FN,InstallExternalLibs,$(VBOX_PATH_VCC_REDIST_CRT)/msvcr$(substr $(VBOX_VCC_TOOL_STEM),4).dll) \
125 $(call VBOX_RE_SIGN_DLL_FN,InstallExternalLibs,$(VBOX_PATH_VCC_REDIST_CRT)/msvcp$(substr $(VBOX_VCC_TOOL_STEM),4).dll) \
126 $(call VBOX_RE_SIGN_DLL_FN,InstallExternalLibs,$(VBOX_PATH_VCC_REDIST_CRT)/msvcr$(substr $(VBOX_VCC_TOOL_STEM),4).dll)=>testcase/msvcr$(substr $(VBOX_VCC_TOOL_STEM),4).dll \
127 $(call VBOX_RE_SIGN_DLL_FN,InstallExternalLibs,$(VBOX_PATH_VCC_REDIST_CRT)/msvcp$(substr $(VBOX_VCC_TOOL_STEM),4).dll)=>testcase/msvcp$(substr $(VBOX_VCC_TOOL_STEM),4).dll
[49537]128 ifdef VBOX_WITH_32_ON_64_MAIN_API
129 InstallExternalLibs_SOURCES += \
[59355]130 $(call VBOX_RE_SIGN_DLL_FN,InstallExternalLibs,$(VBOX_PATH_VCC_REDIST_CRT_X86)/msvcr$(substr $(VBOX_VCC_TOOL_STEM),4).dll,x86_)=>x86/msvcr$(substr $(VBOX_VCC_TOOL_STEM),4).dll \
131 $(call VBOX_RE_SIGN_DLL_FN,InstallExternalLibs,$(VBOX_PATH_VCC_REDIST_CRT_X86)/msvcp$(substr $(VBOX_VCC_TOOL_STEM),4).dll,x86_)=>x86/msvcp$(substr $(VBOX_VCC_TOOL_STEM),4).dll
[49537]132 endif
[42288]133 ifeq ($(VBOX_VCC_CRT_TYPE),d)
[49537]134 InstallExternalLibs_SOURCES += \
[58227]135 $(call VBOX_RE_SIGN_DLL_FN,InstallExternalLibs,$(VBOX_PATH_VCC_REDIST_CRT_DBG)/msvcr$(substr $(VBOX_VCC_TOOL_STEM),4)d.dll) \
136 $(call VBOX_RE_SIGN_DLL_FN,InstallExternalLibs,$(VBOX_PATH_VCC_REDIST_CRT_DBG)/msvcp$(substr $(VBOX_VCC_TOOL_STEM),4)d.dll) \
137 $(call VBOX_RE_SIGN_DLL_FN,InstallExternalLibs,$(VBOX_PATH_VCC_REDIST_CRT_DBG)/msvcr$(substr $(VBOX_VCC_TOOL_STEM),4)d.dll)=>testcase/msvcr$(substr $(VBOX_VCC_TOOL_STEM),4)d.dll \
138 $(call VBOX_RE_SIGN_DLL_FN,InstallExternalLibs,$(VBOX_PATH_VCC_REDIST_CRT_DBG)/msvcp$(substr $(VBOX_VCC_TOOL_STEM),4)d.dll)=>testcase/msvcp$(substr $(VBOX_VCC_TOOL_STEM),4)d.dll
[49537]139 ifdef VBOX_WITH_32_ON_64_MAIN_API
140 InstallExternalLibs_SOURCES += \
[59355]141 $(call VBOX_RE_SIGN_DLL_FN,InstallExternalLibs,$(VBOX_PATH_VCC_REDIST_CRT_DBG_X86)/msvcr$(substr $(VBOX_VCC_TOOL_STEM)d,4).dll,x86_)=>x86/msvcr$(substr $(VBOX_VCC_TOOL_STEM),4)d.dll \
142 $(call VBOX_RE_SIGN_DLL_FN,InstallExternalLibs,$(VBOX_PATH_VCC_REDIST_CRT_DBG_X86)/msvcp$(substr $(VBOX_VCC_TOOL_STEM)d,4).dll,x86_)=>x86/msvcp$(substr $(VBOX_VCC_TOOL_STEM),4)d.dll
[49537]143 endif
[42221]144 endif
[1]145endif
146
[1648]147#
[12173]148# Install our Qt DLLs / Shared Objects / Frameworks.
[12952]149# Note: The installer fixes the darwin .dylibs when hardening is enabled.
[54680]150# Note: Contents/Info.plist is where it's in 4.7.x, not sure if the location is kosher... According to
151# https://developer.apple.com/library/mac/documentation/MacOSX/Conceptual/BPFrameworks/Concepts/FrameworkAnatomy.html
152# the Info.plist file goes into Resources.
[12173]153#
[67067]154ifeq ($(KBUILD_TARGET),darwin)
155 include $(KBUILD_PATH)/units/qt5.kmk
156 INSTALLS += qt5-bin
157 qt5-bin_MODE = 755
158 qt5-bin_INST = $(INST_VIRTUALBOX)Contents/
159 qt5-bin_SOURCES = $(foreach qtmod,$(VBOX_QT_MOD_NAMES), \
160 $(PATH_SDK_QT5_LIB)/$(qtmod).framework/Versions/5/$(qtmod)=>Frameworks/$(qtmod).framework/Versions/5/$(qtmod) \
161 $(PATH_SDK_QT5_LIB)/$(qtmod).framework/Versions/5/Resources/Info.plist=>Frameworks/$(qtmod).framework/Versions/5/Resources/Info.plist)
162 qt5-bin_SOURCES += \
163 $(PATH_SDK_QT5)/plugins/platforms/libqcocoa$(SUFF_DLL)=>plugins/platforms/libqcocoa$(SUFF_DLL) \
164 $(PATH_SDK_QT5)/plugins/platforms/libqminimal$(SUFF_DLL)=>plugins/platforms/libqminimal$(SUFF_DLL) \
165 $(PATH_SDK_QT5)/plugins/platforms/libqoffscreen$(SUFF_DLL)=>plugins/platforms/libqoffscreen$(SUFF_DLL)
166 qt5-bin_SYMLINKS = $(foreach qtmod, $(VBOX_QT_MOD_NAMES), \
167 Frameworks/$(qtmod).framework/Versions/Current=>5 \
168 Frameworks/$(qtmod).framework/$(qtmod)=>Versions/5/$(qtmod) \
169 Frameworks/$(qtmod).framework/Resources=>Versions/5/Resources)
170else # win x11
171 if1of ($(KBUILD_TARGET), linux solaris)
172 ifndef VBOX_ONLY_BUILD
173 ifneq ($(VBOX_GCC_VERSION_CXX),)
174 ifeq ($(int-ge $(VBOX_GCC_VERSION_CXX),40400),)
175 $(error gcc >= 4.4 required when compiling against Qt5!)
[59509]176 endif
[52609]177 endif
[67067]178 endif
[59509]179 endif
[67067]180 if defined(VBOX_WITH_ORACLE_QT) || defined(VBOX_WITH_QT_PAYLOAD)
[59509]181 include $(KBUILD_PATH)/units/qt5.kmk
[67067]182 ifeq ($(KBUILD_TARGET),win)
183 INSTALLS += qt5-bin
184 qt5-bin_MODE = 755
185 qt5-bin_INST = $(INST_BIN)
186 qt5-bin_SOURCES = \
187 $(foreach qtmod,$(VBOX_QT_MOD_NAMES),$(call VBOX_RE_SIGN_DLL_FN,qt5-bin,$(PATH_SDK_QT5)/bin/$(qtmod)$(SUFF_DLL)))
188 qt5-bin_SOURCES += \
189 $(call VBOX_RE_SIGN_DLL_FN,qt5-bin,$(PATH_SDK_QT5)/plugins/platforms/qwindows$(SUFF_DLL))=>platforms/qwindows$(SUFF_DLL) \
190 $(call VBOX_RE_SIGN_DLL_FN,qt5-bin,$(PATH_SDK_QT5)/plugins/platforms/qminimal$(SUFF_DLL))=>platforms/qminimal$(SUFF_DLL) \
191 $(call VBOX_RE_SIGN_DLL_FN,qt5-bin,$(PATH_SDK_QT5)/plugins/platforms/qoffscreen$(SUFF_DLL))=>platforms/qoffscreen$(SUFF_DLL)
192 ifdef VBOX_WITH_QT_PDBS
193 qt5-bin_SOURCES += \
194 $(foreach qtmod,$(VBOX_QT_MOD_NAMES),$(wildcard $(PATH_SDK_QT5)/qt*/$(VBOX_PATH_QT_LIB)/$(qtmod).pdb))
195 endif # VBOX_WITH_QT_PDBS
196 else # x11
197 INSTALLS += qt5-bin
198 qt5-bin_MODE = 755
199 qt5-bin_INST = $(INST_BIN)
200 ifdef VBOX_WITH_HARDENING
201 # The wildcards are necessary to install the libs instead of the symlinks
202 qt5-bin_SOURCES = \
203 $(foreach qtmod,$(VBOX_QT_MOD_NAMES),$(wildcard $(VBOX_PATH_QT_LIB)/lib$(qtmod).so.*.*.*)=>lib$(qtmod).so.5) \
204 $(foreach lib,$(VBOX_QT_PLUGINS),$(VBOX_PATH_QT)/$(lib)=>$(lib))
205 ifneq ($(KBUILD_TARGET),solaris)
206 qt5-bin_SOURCES += \
207 $(foreach lib,$(VBOX_QT_LEGACY_LIBS),$(wildcard $(VBOX_PATH_QT_LIB)/legacy/$(lib).*.*)=>legacy/$(lib))
208 endif # solaris
209 else # !VBOX_WITH_HARDENING
210 # For non-hardened builds we need to remove the RUNPATH. This stuff is
211 # ugly but we need to prevent kBuild from hard-linking otherwise we
212 # (indirectly) change the binaries in tools
213 ifneq ($(KBUILD_TARGET),solaris)
214 QT5_VERSION = 5.6.1
215 else
[67125]216 QT5_VERSION = 5.6.2
[62313]217 endif
[59509]218 qt5-bin_SOURCES = \
[67067]219 $(foreach qtmod,$(VBOX_QT_MOD_NAMES),$(qt5-bin_0_OUTDIR)/lib$(qtmod).so.$(QT5_VERSION)=>lib$(qtmod).so.5) \
220 $(foreach lib,$(VBOX_QT_PLUGINS),$(qt5-bin_0_OUTDIR)/$(lib)=>$(lib))
[62828]221 ifneq ($(KBUILD_TARGET),solaris)
[67067]222 qt5-bin_SOURCES += \
223 $(foreach lib,$(VBOX_QT_LEGACY_LIBS),$(qt5-bin_0_OUTDIR)/$(lib)=>legacy/$(lib))
224 endif # solaris
[60081]225
[62828]226$(foreach qtmod,$(VBOX_QT_MOD_NAMES),$$(qt5-bin_0_OUTDIR)/lib$(qtmod).so.$(QT5_VERSION)): \
[67126]227 $$(qt5-bin_0_OUTDIR)/% : $(VBOX_PATH_QT_LIB)/% | $$(qt5-bin_0_OUTDIR)/
228 $(call MSG_INST_FILE,$^,$@)
229 $(QUIET)$(CP) $^ $@
230 $(QUIET)chrpath --delete $@
[62472]231
[69134]232 ifn1of ($(KBUILD_TARGET),solaris linux)
[60117]233$(foreach lib,$(VBOX_QT_PLUGINS),$$(qt5-bin_0_OUTDIR)/$(lib)): \
[67126]234 $$(qt5-bin_0_OUTDIR)/% : $(VBOX_PATH_QT)/% | $$(qt5-bin_0_OUTDIR)/
235 $(call MSG_INST_FILE,$^,$@)
236 $(QUIET)$(MKDIR) -p $(@D)
237 $(QUIET)$(CP) $^ $@
238 $(QUIET)chrpath --delete $@
[69134]239 endif # !solaris and !linux
[60081]240
[69134]241 # @todo For solaris and some linuxes dlopen fails to navigate executable rpath to dependent libraries,
[67067]242 # so add explicit rpath for libqxcb.so, find better solution later.
[69134]243 if1of ($(KBUILD_TARGET),solaris linux)
[60690]244$(foreach lib,$(VBOX_QT_PLUGINS),$$(qt5-bin_0_OUTDIR)/$(lib)): \
[67126]245 $$(qt5-bin_0_OUTDIR)/% : $(VBOX_PATH_QT)/% | $$(qt5-bin_0_OUTDIR)/
246 $(call MSG_INST_FILE,$^,$@)
247 $(QUIET)$(MKDIR) -p $(@D)
248 $(QUIET)$(CP) $^ $@
249 $(QUIET)chrpath --replace "\$$ORIGIN/../../" $@
[69134]250 endif # solaris linux
[60690]251
[60117]252$(foreach lib,$(VBOX_QT_LEGACY_LIBS),$$(qt5-bin_0_OUTDIR)/$(lib)): \
[67126]253 $$(qt5-bin_0_OUTDIR)/% : $(VBOX_PATH_QT_LIB)/legacy/% | $$(qt5-bin_0_OUTDIR)/
254 $(call MSG_INST_FILE,$^,$@)
255 $(QUIET)$(CP) $^ $@
256 $(QUIET)chrpath --delete $@
[60093]257
[67067]258 endif # !VBOX_WITH_HARDENING
259 endif # x11
260 endif # VBOX_WITH_ORACLE_QT || VBOX_WITH_QT_PAYLOAD
261endif # win x11
[12173]262
[61846]263
[12173]264#
[61846]265# Install additions iso from the build server if configured to do so.
[17250]266#
[61846]267# Note! For building the combined package, just get the additions .ISO
268# once for amd64 to prevent version inconsistences. In all other
269# cases we get the .ISO per target architecture.
[17250]270#
[61846]271if defined(VBOX_WITH_ADDITIONS_FROM_BUILD_SERVER) \
272 && ( !defined(VBOX_WITH_COMBINED_PACKAGE) \
273 || "$(KBUILD_TARGET_ARCH)" == "amd64" )
274 INSTALLS += buildserver-additions
275 buildserver-additions_INST = $(INST_ADDITIONS_ISO)
276 buildserver-additions_MODE = 0644
277 buildserver-additions_SOURCES = $(PATH_TARGET)/VBoxGuestAdditions.iso
278 buildserver-additions_CLEANS = \
279 $(buildserver-additions_0_OUTDIR)/unpacked.ts \
280 $(buildserver-additions_0_OUTDIR)/VBoxGuestAdditions.zip \
281 $(buildserver-additions_0_OUTDIR)/VBoxGuestAdditions.zip.tmp \
282 $(PATH_TARGET)/VBoxGuestAdditions.iso
[6129]283
[61846]284 $$(buildserver-additions_0_OUTDIR)/unpacked.ts +| $(PATH_TARGET)/VBoxGuestAdditions.iso: \
285 $$(buildserver-additions_0_OUTDIR)/VBoxGuestAdditions.zip
[45056]286 $(call MSG_L1,Unpacking additions archive)
[68790]287 $(QUIET)$(TOOL_ZIP_UNPACK) $(TOOL_ZIP_UNPACKFLAGS) -o $< -d $(PATH_TARGET)
[69094]288 $(TOUCH) -c -- $(PATH_TARGET)/VBoxGuestAdditions.iso
[45056]289 $(APPEND) -t $@ "done"
290
[61846]291 $$(buildserver-additions_0_OUTDIR)/VBoxGuestAdditions.zip: $(VBOX_SVN_REV_KMK) $(PATH_DEVTOOLS)/bin/additions.sh | $$(dir $$@)
[58530]292 $(RM) -f -- "$@" "$@.tmp"
[69376]293 $(SHELL) $(PATH_DEVTOOLS)/bin/additions.sh --cmd fetch --filename "$@.tmp" $(if $(VBOX_USE_PROXY_FOR_BUILD_SERVER),--default-proxy,)
[58530]294 $(MV) -f -- "$@.tmp" "$@"
[6129]295
[61846]296endif # VBOX_WITH_ADDITIONS_FROM_BUILD_SERVER unless win.x86+combined
[6129]297
298
299#
[11686]300# Install documentation files (at the moment the .chm) from the build server.
301#
302ifdef VBOX_WITH_DOCS_FROM_BUILD_SERVER
[13348]303## @todo r=bird: Too much mess now for $(PATH_TARGET); move to doc/manual/.
[11686]304INSTALLS += buildserver-docs
305buildserver-docs_INST = $(INST_BIN)
306buildserver-docs_MODE = 0644
[13228]307buildserver-docs_SOURCES = \
[13246]308 $(addprefix $(PATH_TARGET)/, \
[13244]309 VirtualBox.chm UserManual.pdf \
310 $(foreach f,$(VBOX_MANUAL_ADD_LANGUAGES),VirtualBox_$(f).chm UserManual_$(f).pdf))
[13228]311buildserver-docs_CLEANS = \
[21925]312 $(buildserver-docs_0_OUTDIR)/unpacked.ts \
313 $(buildserver-docs_0_OUTDIR)/VBoxDocumentation.zip \
314 $(buildserver-docs_0_OUTDIR)/VBoxDocumentation.zip.tmp \
[13246]315 $(addprefix $(PATH_TARGET)/, \
[13244]316 VirtualBox.chm UserManual.pdf \
317 $(foreach f,$(VBOX_MANUAL_ADD_LANGUAGES),VirtualBox_$(f).chm UserManual_$(f).pdf))
[11686]318
[21925]319$$(buildserver-docs_0_OUTDIR)/unpacked.ts +| $(PATH_TARGET)/VirtualBox.chm $(PATH_TARGET)/UserManual.pdf \
320$(foreach f,$(VBOX_MANUAL_ADD_LANGUAGES),$(PATH_TARGET)/VirtualBox_$(f).chm $(PATH_TARGET)/UserManual_$(f).pdf): \
321 $$(buildserver-docs_0_OUTDIR)/VBoxDocumentation.zip
[11686]322 $(call MSG_L1,Unpacking documentation)
[68790]323 $(QUIET)$(TOOL_ZIP_UNPACK) $(TOOL_ZIP_UNPACKFLAGS) -o $< -d $(PATH_TARGET)
[69094]324 $(TOUCH) -c -- $(PATH_TARGET)/VirtualBox.chm \
325 $(PATH_TARGET)/UserManual.pdf \
[69071]326 $(foreach f,$(VBOX_MANUAL_ADD_LANGUAGES),$(PATH_TARGET)/VirtualBox_$(f).chm $(PATH_TARGET)/UserManual_$(f).pdf)
[21925]327 $(APPEND) -t $@ "done"
[11686]328
[21925]329$$(buildserver-docs_0_OUTDIR)/VBoxDocumentation.zip: $(VBOX_SVN_REV_KMK) $(PATH_DEVTOOLS)/bin/documentation.sh | $$(dir $$@)
[58530]330 $(RM) -f -- "$@" "$@.tmp"
[69376]331 $(SHELL) $(PATH_DEVTOOLS)/bin/documentation.sh --cmd fetch --filename "$@.tmp" $(if $(VBOX_USE_PROXY_FOR_BUILD_SERVER),--default-proxy,)
[58530]332 $(MV) -f -- "$@.tmp" "$@"
[11686]333
[13348]334endif # VBOX_WITH_DOCS_FROM_BUILD_SERVER
[11686]335
336
[29079]337 ifdef VBOX_WITH_EFI
338 #
339 # Install EFI firmware image
340 #
341 ifdef VBOX_WITH_EFIFW_FROM_BUILD_SERVER
342 #
343 # Either from the build server.
344 #
[58529]345 ifndef VBOX_EFI_FIRMWARE_EFI_MODULES_KMK_INCLUDED
346 include $(PATH_ROOT)/src/VBox/Devices/EFI/Firmware/EfiModules.kmk
[58528]347 endif
[29079]348 INSTALLS += buildserver-efifw
349 buildserver-efifw_INST = $(INST_BIN)
350 buildserver-efifw_MODE = 0644
351 buildserver-efifw_SOURCES = \
[48584]352 $(buildserver-efifw_0_OUTDIR)/VBoxEFI32.fd \
353 $(buildserver-efifw_0_OUTDIR)/VBoxEFI64.fd
[29079]354 buildserver-efifw_CLEANS = \
355 $(buildserver-efifw_0_OUTDIR)/unpacked.ts \
[48584]356 $(buildserver-efifw_0_OUTDIR)/VBoxEFI32.fd \
357 $(buildserver-efifw_0_OUTDIR)/VBoxEFI64.fd \
[29079]358 $(buildserver-efifw_0_OUTDIR)/VBoxEfiFirmware.zip \
[58528]359 $(buildserver-efifw_0_OUTDIR)/VBoxEfiFirmware.zip.tmp \
360 $(foreach arch, amd64 x86, $(foreach mod,$(VBOX_EFI_MODULES_FLAT),$$(buildserver-efifw_0_OUTDIR)/$(arch)/$(mod).pdb))
[23650]361
[58528]362 INSTALLS += buildserver-efifw-dbg-amd64
363 buildserver-efifw-dbg-amd64_INST = $(INST_VBOXDBG_SYMS)amd64/
364 buildserver-efifw-dbg-amd64_MODE = 0644
365 buildserver-efifw-dbg-amd64_SOURCES = \
366 $(foreach mod,$(VBOX_EFI_MODULES_FLAT),$(buildserver-efifw_0_OUTDIR)/amd64/$(mod).pdb)
367
368 INSTALLS += buildserver-efifw-dbg-x86
369 buildserver-efifw-dbg-x86_INST = $(INST_VBOXDBG_SYMS)x86/
370 buildserver-efifw-dbg-x86_MODE = 0644
371 buildserver-efifw-dbg-x86_SOURCES = \
372 $(foreach mod,$(VBOX_EFI_MODULES_FLAT),$(buildserver-efifw_0_OUTDIR)/x86/$(mod).pdb)
373
[29079]374 $$(buildserver-efifw_0_OUTDIR)/unpacked.ts \
[48584]375 +| $$(buildserver-efifw_0_OUTDIR)/VBoxEFI32.fd \
[58528]376 $$(buildserver-efifw_0_OUTDIR)/VBoxEFI64.fd \
377 $(foreach arch, amd64 x86, $(foreach mod,$(VBOX_EFI_MODULES_FLAT),$$(buildserver-efifw_0_OUTDIR)/$(arch)/$(mod).pdb)): \
[29079]378 $$(buildserver-efifw_0_OUTDIR)/VBoxEfiFirmware.zip
[25706]379 $(call MSG_L1,Unpacking EFI firmware)
[68790]380 $(QUIET)$(TOOL_ZIP_UNPACK) $(TOOL_ZIP_UNPACKFLAGS) -o $< -d $(buildserver-efifw_0_OUTDIR)
[58528]381 $(foreach arch, amd64 x86, \
[58533]382 $(NLTAB) $(QUIET)$(TEST) '!' -d $(dir $@)/$(arch) -- $(MKDIR_EXT) -- $(dir $@)/$(arch) \
[58528]383 $(foreach mod,$(VBOX_EFI_MODULES_FLAT) \
[58533]384 ,$(NLTAB) $(QUIET)$(TEST) '!' -f $(dir $@)/$(arch)/$(mod).pdb -- $(APPEND_EXT) $(dir $@)/$(arch)/$(mod).pdb ))
[69094]385 $(TOUCH) -c -- $(buildserver-efifw_0_OUTDIR)/VBoxEFI32.fd \
[69071]386 $(buildserver-efifw_0_OUTDIR)/VBoxEFI64.fd
[25706]387 $(APPEND) -t $@ "done"
[23656]388
[29079]389 $$(buildserver-efifw_0_OUTDIR)/VBoxEfiFirmware.zip: \
390 $(VBOX_SVN_REV_KMK) $(PATH_DEVTOOLS)/bin/efi_firmware.sh | $$(dir $$@)
[58528]391 $(RM) -f -- "$@" "$@.tmp"
[69376]392 $(SHELL) $(PATH_DEVTOOLS)/bin/efi_firmware.sh --cmd fetch --filename "$@.tmp" $(if $(VBOX_USE_PROXY_FOR_BUILD_SERVER),--default-proxy,)
[58528]393 $(MV) -f -- "$@.tmp" "$@"
[23650]394
[29079]395 else # !VBOX_WITH_EFIFW_FROM_BUILD_SERVER
396 #
[58528]397 # Or from the local copy (no debug).
[29079]398 #
399 INSTALLS += local-efifw
400 local-efifw_INST = $(INST_BIN)
401 local-efifw_MODE = 0644
402 local-efifw_SOURCES = \
403 $(PATH_ROOT)/src/VBox/Devices/EFI/FirmwareBin/VBoxEFI32.fd=>VBoxEFI32.fd \
404 $(PATH_ROOT)/src/VBox/Devices/EFI/FirmwareBin/VBoxEFI64.fd=>VBoxEFI64.fd
405 endif # !VBOX_WITH_EFIFW_FROM_BUILD_SERVER
406 endif # VBOX_WITH_EFI
[23658]407
408
[44272]409ifdef VBOX_WITH_EXTPACKS_FROM_BUILD_SERVER
[11686]410#
[44272]411# Get the extension pack from from the build server to facility the automatic
412# testing (everything in one tarball (VBoxAll-*)).
413#
414# Note! Using the plural here as we might be downloading more packages eventually.
415#
416INSTALLS += buildserver-extpacks
417buildserver-extpacks_INST = $(INST_DIST)
418buildserver-extpacks_MODE = 0644
419buildserver-extpacks_SOURCES = \
420 $(buildserver-extpacks_0_OUTDIR)/Oracle_VM_VirtualBox_Extension_Pack.vbox-extpack
421buildserver-extpacks_CLEANS = \
422 $(buildserver-extpacks_0_OUTDIR)/Oracle_VM_VirtualBox_Extension_Pack.vbox-extpack \
423 $(buildserver-extpacks_0_OUTDIR)/Oracle_VM_VirtualBox_Extension_Pack.vbox-extpack.tmp
424
425$$(buildserver-extpacks_0_OUTDIR)/Oracle_VM_VirtualBox_Extension_Pack.vbox-extpack: \
426 $(VBOX_SVN_REV_KMK) $(PATH_DEVTOOLS)/bin/extpacks.sh | $$(dir $$@)
427 $(RM) -f -- "$@.tmp" "$@"
[72069]428 $(SHELL) $(PATH_DEVTOOLS)/bin/extpacks.sh --cmd fetch --filename "$@.tmp" --vbox-version "$(VBOX_VERSION_STRING_NO_PUB)" \
429 $(if $(VBOX_USE_PROXY_FOR_BUILD_SERVER),--default-proxy,)
[44272]430 $(MV) -f -- "$@.tmp" "$@"
[69096]431 $(TOUCH) -- "$@"
[44272]432
433endif
434
435
436#
[4398]437# Install staged binaries on platforms where we can't cross
[1648]438# compile things.
439#
[46035]440ifn1of ($(KBUILD_TARGET), linux win)
[1648]441 VBOX_PATH_STAGED ?= .
442
443 # Additions.
444 ifndef VBOX_WITH_LINUX_ADDITIONS
445 ifndef VBOX_WITH_WIN32_ADDITIONS
446 ifneq ($(wildcard $(VBOX_PATH_STAGED)/VBoxGuestAdditions.iso),)
447 INSTALLS += staged-additions
[16957]448 staged-additions_INST = $(INST_ADDITIONS_ISO)
[1648]449 staged-additions_MODE = 0644
450 staged-additions_SOURCES = $(VBOX_PATH_STAGED)/VBoxGuestAdditions.iso
451 endif
452 endif
453 endif
454
455 # guesttool.exe
456 ifndef VBOX_WITH_WIN32_ADDITIONS
457 ifneq ($(wildcard $(VBOX_PATH_STAGED)/guesttool.exe),)
458 INSTALLS += staged-guesttool
459 staged-guesttool_INST = $(INST_BIN)
460 staged-guesttool_SOURCES = $(VBOX_PATH_STAGED)/guesttool.exe
461 endif
462 endif
463
464endif
465
[51346]466endif # !VBOX_ONLY_ADDITIONS && !VBOX_ONLY_DOCS && !VBOX_ONLY_EXTPACKS && !VBOX_ONLY_VALIDATIONKIT
[1648]467
468
[12780]469ifdef VBOX_ONLY_DOCS
470# It may sound a bit odd, but for preparing the documentation package the
471# doxygen documentation isn't needed and increases the build time a lot.
[12781]472docs:
[12780]473else # !VBOX_ONLY_DOCS
[1]474#
475# Generate documentation.
476# (This should be converted into a separate pass or merged with an existing one later.)
477#
[34609]478 ifdef VBOX_WITH_ALL_DOXYGEN_TARGETS
[12780]479docs: docs.Core
[34609]480 endif
[11703]481endif # !VBOX_ONLY_DOCS
[1]482
483#
[6288]484# The core (VMM+REM+Devices+Main) documentation.
[1]485#
[6288]486# This includes so much because we wish to have the complete CFGM
487# and GCFGM lists.
488#
[65153]489VBOX_CORE_DOXYFILE_OUTPUT = $(PATH_OUT)/docs/Core
490BLDDIRS += $(VBOX_CORE_DOXYFILE_OUTPUT)
[6288]491OTHER_CLEAN += \
[65138]492 $(VBOX_CORE_DOXYFILE_OUTPUT)/Doxyfile.Core \
493 $(VBOX_CORE_DOXYFILE_OUTPUT)/Doxyfile.Core.dep
[1]494
[10226]495VBOX_CORE_DOXYFILE_INPUT_DIRS = \
[6288]496 include/iprt \
[25647]497 include/iprt/cpp \
[58341]498 include/iprt/crypto \
499 include/iprt/formats \
[25647]500 include/iprt/linux \
[58341]501 include/iprt/nt \
502 include/iprt/solaris \
503 include/iprt/win \
504 include/iprt/nocrt \
[6288]505 include/VBox \
[35350]506 include/VBox/vmm \
[6288]507 include/VBox/com \
[35350]508 include/VBox/ExtPack \
[6288]509 include/VBox/HostServices \
[25647]510 include/VBox/GuestHost \
511 include/VBox/HGSMI \
[6288]512 src/VBox/VMM \
513 src/VBox/VMM/VMMR0 \
[35350]514 src/VBox/VMM/VMMRC \
515 src/VBox/VMM/VMMR3 \
[6288]516 src/VBox/VMM/VMMAll \
517 src/VBox/VMM/VMMSwitcher \
[58127]518 src/VBox/VMM/include \
[6288]519 src/VBox/Debugger \
[10029]520 src/VBox/Devices \
[6288]521 src/VBox/Devices/Audio \
522 src/VBox/Devices/Bus \
523 src/VBox/Devices/Graphics \
524 src/VBox/Devices/Graphics/BIOS \
[58132]525 src/VBox/Devices/Graphics/shaderlib \
[6288]526 src/VBox/Devices/Input \
527 src/VBox/Devices/Networking \
528 src/VBox/Devices/PC \
529 src/VBox/Devices/PC/BIOS \
530 src/VBox/Devices/Parallel \
531 src/VBox/Devices/Serial \
532 src/VBox/Devices/Storage \
533 src/VBox/Devices/USB \
534 src/VBox/Devices/USB/darwin \
535 src/VBox/Devices/USB/linux \
536 src/VBox/Devices/USB/os2 \
537 src/VBox/Devices/USB/solaris \
538 src/VBox/Devices/USB/vrdp \
539 src/VBox/Devices/USB/win32 \
540 src/VBox/Devices/VMMDev \
541 src/VBox/Main/include \
542 src/VBox/Main/include/hgcm \
[10029]543 src/VBox/Main \
[6288]544 src/VBox/Main/glue \
545 src/VBox/Main/webservice \
546 src/VBox/Main/xml \
[35379]547 src/VBox/Main/src-all \
548 src/VBox/Main/src-all/win \
549 src/VBox/Main/src-client \
550 src/VBox/Main/src-client/win \
551 src/VBox/Main/src-client/xpcom \
552 src/VBox/Main/src-server \
553 src/VBox/Main/src-server/darwin \
554 src/VBox/Main/src-server/linux \
555 src/VBox/Main/src-server/os2 \
556 src/VBox/Main/src-server/solaris \
557 src/VBox/Main/src-server/win \
558 src/VBox/Main/src-server/xpcom \
[10029]559 src/VBox/HostServices \
[39687]560 src/VBox/HostServices/DragAndDrop \
561 src/VBox/HostServices/GuestControl \
562 src/VBox/HostServices/GuestProperties \
[6307]563 src/VBox/HostServices/SharedClipboard \
564 src/VBox/HostServices/SharedFolders \
565 src/VBox/HostServices/SharedOpenGL \
[39689]566 src/VBox/HostServices/SharedOpenGL/crserver \
567 src/VBox/HostServices/SharedOpenGL/crserverlib \
568 src/VBox/HostServices/SharedOpenGL/render \
569 src/VBox/HostServices/SharedOpenGL/unpacker \
[39687]570 src/VBox/HostServices/auth \
[39689]571 src/VBox/HostServices/auth/directoryservice \
572 src/VBox/HostServices/auth/pam \
573 src/VBox/HostServices/auth/simple \
574 src/VBox/HostServices/auth/winlogon \
[6307]575 src/VBox/HostDrivers/Support \
576 src/VBox/HostDrivers/Support/darwin \
577 src/VBox/HostDrivers/Support/freebsd \
578 src/VBox/HostDrivers/Support/linux \
579 src/VBox/HostDrivers/Support/os2 \
580 src/VBox/HostDrivers/Support/solaris \
581 src/VBox/HostDrivers/Support/win \
[10029]582 src/VBox/HostDrivers/VBoxNetFlt \
[10020]583 src/VBox/HostDrivers/VBoxNetFlt/darwin \
584 src/VBox/HostDrivers/VBoxNetFlt/linux \
585 src/VBox/HostDrivers/VBoxNetFlt/solaris \
586 src/VBox/HostDrivers/VBoxNetFlt/win \
[10029]587 src/VBox/HostDrivers/VBoxNetNat \
[10020]588 src/VBox/HostDrivers/VBoxNetNat/darwin \
589 src/VBox/HostDrivers/VBoxNetNat/linux \
590 src/VBox/HostDrivers/VBoxNetNat/solaris \
591 src/VBox/HostDrivers/VBoxNetNat/win \
[17850]592 src/VBox/HostDrivers/VBoxNetAdp \
593 src/VBox/HostDrivers/VBoxNetAdp/darwin \
594 src/VBox/HostDrivers/VBoxNetAdp/linux \
595 src/VBox/HostDrivers/VBoxNetAdp/solaris \
596 src/VBox/HostDrivers/VBoxNetAdp/win \
[39687]597 src/VBox/HostDrivers/VBoxPci \
598 src/VBox/HostDrivers/VBoxPci/darwin \
599 src/VBox/HostDrivers/VBoxPci/linux \
600 src/VBox/HostDrivers/VBoxPci/solaris \
601 src/VBox/HostDrivers/VBoxPci/win \
[10029]602 src/VBox/HostDrivers/VBoxUSB \
[6307]603 src/VBox/HostDrivers/VBoxUSB/darwin \
604 src/VBox/HostDrivers/VBoxUSB/os2 \
[10020]605 src/VBox/HostDrivers/VBoxUSB/solaris \
[6307]606 src/VBox/HostDrivers/VBoxUSB/win \
607 src/VBox/HostDrivers/VBoxUSB/win/Device \
608 src/VBox/HostDrivers/VBoxUSB/win/Device/amd64 \
609 src/VBox/HostDrivers/VBoxUSB/win/Device/x86 \
610 src/VBox/HostDrivers/VBoxUSB/win/Filter \
611 src/VBox/HostDrivers/VBoxUSB/win/Install \
612 src/VBox/HostDrivers/VBoxUSB/win/Monitor \
613 src/VBox/HostDrivers/VBoxUSB/win/Monitor/win32 \
614 src/VBox/HostDrivers/VBoxUSB/win/Monitor/win64 \
615 src/VBox/HostDrivers/VBoxUSB/win/usbd \
[39687]616 src/VBox/Additions \
[39689]617 src/VBox/Additions/WINNT \
618 src/VBox/Additions/WINNT/Graphics \
619 src/VBox/Additions/WINNT/Graphics/Video \
620 src/VBox/Additions/WINNT/Graphics/Video/common \
621 src/VBox/Additions/WINNT/Graphics/Video/common/wddm \
622 src/VBox/Additions/WINNT/Graphics/Video/common/xpdm \
623 src/VBox/Additions/WINNT/Graphics/Video/disp \
624 src/VBox/Additions/WINNT/Graphics/Video/disp/common \
625 src/VBox/Additions/WINNT/Graphics/Video/disp/wddm \
626 src/VBox/Additions/WINNT/Graphics/Video/disp/wddm/dbg \
627 src/VBox/Additions/WINNT/Graphics/Video/disp/xpdm \
628 src/VBox/Additions/WINNT/Graphics/Video/mp \
629 src/VBox/Additions/WINNT/Graphics/Video/mp/common \
630 src/VBox/Additions/WINNT/Graphics/Video/mp/wddm \
631 src/VBox/Additions/WINNT/Graphics/Video/mp/xpdm \
[55708]632 src/VBox/Additions/WINNT/Graphics/Wine_new \
633 src/VBox/Additions/WINNT/Graphics/Wine_new/d3d8 \
634 src/VBox/Additions/WINNT/Graphics/Wine_new/d3d9 \
635 src/VBox/Additions/WINNT/Graphics/Wine_new/libWine \
636 src/VBox/Additions/WINNT/Graphics/Wine_new/switcher \
637 src/VBox/Additions/WINNT/Graphics/Wine_new/vbox \
638 src/VBox/Additions/WINNT/Graphics/Wine_new/wined3d \
[39689]639 src/VBox/Additions/WINNT/Installer \
640 src/VBox/Additions/WINNT/Installer/ISO \
641 src/VBox/Additions/WINNT/Installer/InstallHelper \
642 src/VBox/Additions/WINNT/Installer/Languages \
643 src/VBox/Additions/WINNT/Installer/Loader \
644 src/VBox/Additions/WINNT/Mouse \
645 src/VBox/Additions/WINNT/Mouse/NT5 \
646 src/VBox/Additions/WINNT/Mouse/common \
647 src/VBox/Additions/WINNT/SharedFolders \
648 src/VBox/Additions/WINNT/SharedFolders/redirector \
649 src/VBox/Additions/WINNT/SharedFolders/redirector/dll \
650 src/VBox/Additions/WINNT/SharedFolders/redirector/sys \
651 src/VBox/Additions/WINNT/SharedFolders/redirector/sys/rdbss \
652 src/VBox/Additions/WINNT/VBoxCredProv \
653 src/VBox/Additions/WINNT/VBoxGINA \
654 src/VBox/Additions/WINNT/VBoxHook \
655 src/VBox/Additions/WINNT/VBoxTray \
656 src/VBox/Additions/WINNT/VBoxUSB \
657 src/VBox/Additions/WINNT/i8042prt \
658 src/VBox/Additions/WINNT/i8042prt/i386 \
659 src/VBox/Additions/WINNT/i8042prt/include \
660 src/VBox/Additions/WINNT/include \
[39687]661 src/VBox/Additions/common \
[39689]662 src/VBox/Additions/common/VBoxControl \
[39687]663 src/VBox/Additions/common/VBoxGuest \
[39689]664 src/VBox/Additions/common/VBoxGuest/freebsd \
665 src/VBox/Additions/common/VBoxGuest/linux \
666 src/VBox/Additions/common/VBoxGuest/win \
[39687]667 src/VBox/Additions/common/VBoxGuestLib \
668 src/VBox/Additions/common/VBoxService \
669 src/VBox/Additions/common/VBoxVideo \
670 src/VBox/Additions/common/crOpenGL \
[39689]671 src/VBox/Additions/common/crOpenGL/array \
672 src/VBox/Additions/common/crOpenGL/feedback \
673 src/VBox/Additions/common/crOpenGL/pack \
674 src/VBox/Additions/common/crOpenGL/passthrough \
[39687]675 src/VBox/Additions/common/pam \
[39689]676 src/VBox/Additions/darwin \
677 src/VBox/Additions/freebsd \
678 src/VBox/Additions/freebsd/Installer \
679 src/VBox/Additions/freebsd/drm \
680 src/VBox/Additions/freebsd/vboxvfs \
681 src/VBox/Additions/linux \
682 src/VBox/Additions/linux/drm \
683 src/VBox/Additions/linux/installer \
684 src/VBox/Additions/linux/selinux-fedora \
685 src/VBox/Additions/linux/sharedfolders \
686 src/VBox/Additions/os2 \
687 src/VBox/Additions/os2/VBoxGradd \
688 src/VBox/Additions/os2/VBoxGradd/graddlib \
689 src/VBox/Additions/os2/VBoxGrext \
690 src/VBox/Additions/os2/VBoxMouse \
691 src/VBox/Additions/os2/VBoxSF \
692 src/VBox/Additions/solaris \
693 src/VBox/Additions/solaris/DRM \
694 src/VBox/Additions/solaris/Installer \
695 src/VBox/Additions/solaris/SharedFolders \
696 src/VBox/Additions/solaris/SharedFolders/solaris10 \
697 src/VBox/Additions/solaris/SharedFolders/solaris10/sys \
698 src/VBox/Additions/solaris/Virtio \
699 src/VBox/Additions/x11 \
700 src/VBox/Additions/x11/Installer \
701 src/VBox/Additions/x11/VBoxClient \
702 src/VBox/Additions/x11/vboxmouse \
703 src/VBox/Additions/x11/vboxmouse/xorg70 \
704 src/VBox/Additions/x11/vboxmouse/xorg71 \
705 src/VBox/Additions/x11/vboxvideo \
[39688]706 src/VBox/NetworkServices \
707 src/VBox/NetworkServices/DHCP \
708 src/VBox/NetworkServices/NAT \
709 src/VBox/NetworkServices/NetLib \
[58167]710 src/VBox/Storage \
711 src/VBox/ValidationKit/ \
712 src/VBox/ValidationKit/docs/ \
713 src/VBox/ValidationKit/testdriver/ \
714 src/VBox/ValidationKit/bootsectors/ \
[58629]715 src/VBox/ValidationKit/bootsectors/bs3kit/ \
[58167]716 src/VBox/ValidationKit/tests/ \
717 src/VBox/ValidationKit/tests/additions/ \
718 src/VBox/ValidationKit/tests/api/ \
719 src/VBox/ValidationKit/tests/autostart/ \
720 src/VBox/ValidationKit/tests/benchmarks/ \
721 src/VBox/ValidationKit/tests/cpu/ \
722 src/VBox/ValidationKit/tests/installation/ \
723 src/VBox/ValidationKit/tests/network/ \
724 src/VBox/ValidationKit/tests/selftests/ \
725 src/VBox/ValidationKit/tests/smoketests/ \
726 src/VBox/ValidationKit/tests/storage/ \
727 src/VBox/ValidationKit/tests/teleportation/ \
728 src/VBox/ValidationKit/tests/unittests/ \
729 src/VBox/ValidationKit/tests/usb/ \
730 src/VBox/ValidationKit/common/ \
731 src/VBox/ValidationKit/utils/ \
732 src/VBox/ValidationKit/utils/TestExecServ/ \
733 src/VBox/ValidationKit/utils/cpu/ \
734 src/VBox/ValidationKit/utils/misc/ \
735 src/VBox/ValidationKit/utils/network/ \
736 src/VBox/ValidationKit/utils/nt/ \
737 src/VBox/ValidationKit/utils/usb/ \
738 src/VBox/ValidationKit/vms/ \
739 src/VBox/ValidationKit/testmanager/ \
740 src/VBox/ValidationKit/testmanager/core/ \
741 src/VBox/ValidationKit/testmanager/db/ \
742 src/VBox/ValidationKit/testmanager/debug/ \
743 src/VBox/ValidationKit/testmanager/cgi/ \
744 src/VBox/ValidationKit/testmanager/webui/ \
745 src/VBox/ValidationKit/testboxscript/ \
[6288]746
747# These must come first in order to make things look nice.
[10226]748VBOX_CORE_DOXYFILE_INPUT_FIRST =\
[6288]749 $(PATH_ROOT)/doc/VBox-doc.c \
750 $(PATH_ROOT)/doc/VBox-CodingGuidelines.cpp \
[19010]751 $(PATH_ROOT)/doc/VBox-MakefileGuidelines.cpp \
[35350]752 $(PATH_ROOT)/src/VBox/VMM/Docs-CodingGuidelines.cpp \
753 $(PATH_ROOT)/src/VBox/VMM/Docs-RawMode.cpp \
[6288]754 $(PATH_ROOT)/include/VBox/cdefs.h \
[58114]755 $(PATH_ROOT)/include/VBox/vmm/vmm.h \
[35350]756 $(PATH_ROOT)/include/VBox/vmm/vmapi.h \
757 $(PATH_ROOT)/include/VBox/vmm/cpum.h \
758 $(PATH_ROOT)/include/VBox/vmm/mm.h \
759 $(PATH_ROOT)/include/VBox/vmm/pgm.h \
760 $(PATH_ROOT)/include/VBox/vmm/selm.h \
761 $(PATH_ROOT)/include/VBox/vmm/trpm.h \
762 $(PATH_ROOT)/include/VBox/vmm/patm.h \
763 $(PATH_ROOT)/include/VBox/vmm/dbgf.h \
764 $(PATH_ROOT)/include/VBox/vmm/stam.h \
765 $(PATH_ROOT)/include/VBox/vmm/em.h \
[58127]766 $(PATH_ROOT)/include/VBox/vmm/hm.h \
767 $(PATH_ROOT)/include/VBox/vmm/hm_svm.h \
768 $(PATH_ROOT)/include/VBox/vmm/hm_vmx.h \
769 $(PATH_ROOT)/include/VBox/vmm/iem.h \
[70918]770 $(PATH_ROOT)/include/VBox/vmm/nem.h \
[35350]771 $(PATH_ROOT)/include/VBox/vmm/pdm.h \
772 $(PATH_ROOT)/include/VBox/vmm/rem.h \
773 $(PATH_ROOT)/include/VBox/vmm/iom.h \
774 $(PATH_ROOT)/include/VBox/vmm/cfgm.h \
[58127]775 $(PATH_ROOT)/include/VBox/vmm/gim.h \
[35350]776 $(PATH_ROOT)/include/VBox/vmm/tm.h \
777 $(PATH_ROOT)/include/VBox/vmm/csam.h \
778 $(PATH_ROOT)/include/VBox/vmm/ssm.h \
[10029]779 \
[35338]780 $(PATH_ROOT)/src/VBox/VMM/include/CFGMInternal.h \
781 $(PATH_ROOT)/src/VBox/VMM/include/CPUMInternal.h \
782 $(PATH_ROOT)/src/VBox/VMM/include/DBGFInternal.h \
783 $(PATH_ROOT)/src/VBox/VMM/include/EMInternal.h \
[43387]784 $(PATH_ROOT)/src/VBox/VMM/include/HMInternal.h \
[58127]785 $(PATH_ROOT)/src/VBox/VMM/include/IEMInternal.h \
[35338]786 $(PATH_ROOT)/src/VBox/VMM/include/IOMInternal.h \
787 $(PATH_ROOT)/src/VBox/VMM/include/MMInternal.h \
[70918]788 $(PATH_ROOT)/src/VBox/VMM/include/NEMInternal.h \
[35338]789 $(PATH_ROOT)/src/VBox/VMM/include/PDMInternal.h \
790 $(PATH_ROOT)/src/VBox/VMM/include/PGMInternal.h \
[58127]791 $(PATH_ROOT)/src/VBox/VMM/include/GIMInternal.h \
[35350]792 $(PATH_ROOT)/src/VBox/VMM/include/CSAMInternal.h \
793 $(PATH_ROOT)/src/VBox/VMM/include/PATMInternal.h \
[35338]794 $(PATH_ROOT)/src/VBox/VMM/include/REMInternal.h \
795 $(PATH_ROOT)/src/VBox/VMM/include/SELMInternal.h \
796 $(PATH_ROOT)/src/VBox/VMM/include/SSMInternal.h \
797 $(PATH_ROOT)/src/VBox/VMM/include/STAMInternal.h \
798 $(PATH_ROOT)/src/VBox/VMM/include/TMInternal.h \
799 $(PATH_ROOT)/src/VBox/VMM/include/TRPMInternal.h \
800 $(PATH_ROOT)/src/VBox/VMM/include/VMInternal.h \
801 $(PATH_ROOT)/src/VBox/VMM/include/VMMInternal.h \
[10029]802 \
[35350]803 $(PATH_ROOT)/include/VBox/vmm/vm.h \
[6288]804 \
805 $(PATH_ROOT)/include/VBox/sup.h \
[33573]806 $(PATH_ROOT)/include/VBox/vd.h \
[6288]807 $(PATH_ROOT)/include/VBox/types.h \
808 $(PATH_ROOT)/include/VBox/err.h \
[35350]809 $(PATH_ROOT)/include/VBox/vmm/cpumdis.h \
[6288]810 $(PATH_ROOT)/include/VBox/dbggui.h \
811 $(PATH_ROOT)/include/VBox/dis.h \
812 $(PATH_ROOT)/include/VBox/disopcode.h \
813 $(PATH_ROOT)/include/VBox/intnet.h \
814 $(PATH_ROOT)/include/VBox/settings.h \
815 $(PATH_ROOT)/include/VBox/pci.h \
816 $(PATH_ROOT)/include/VBox/scsi.h \
817 $(PATH_ROOT)/include/VBox/shflsvc.h \
818 $(PATH_ROOT)/include/VBox/hgcmsvc.h \
819 $(PATH_ROOT)/include/VBox/usb.h \
820 $(PATH_ROOT)/include/VBox/vusb.h \
[10029]821 \
[6288]822 $(PATH_ROOT)/include/VBox/log.h \
823 $(PATH_ROOT)/include/VBox/param.h \
[58114]824 $(PATH_ROOT)/include/VBox/version.h \
825 \
826 $(PATH_ROOT)/include/VBox/com/com.h
[6288]827
[10226]828VBOX_CORE_DOXYFILE_INPUT := \
829 $(filter-out %.cpp.h, $(sort $(wildcard $(addsuffix /*.h, $(VBOX_CORE_DOXYFILE_INPUT_DIRS)))) ) \
[58167]830 $(foreach dir, $(VBOX_CORE_DOXYFILE_INPUT_DIRS) \
831 , $(wildcard $(dir)/*.cpp $(dir)/*.c $(dir)/*.m $(dir)/*.mm $(dir)/*.py $(dir)/.asm))
[10226]832VBOX_CORE_DOXYFILE_INPUT := \
833 $(VBOX_CORE_DOXYFILE_INPUT_FIRST) \
[65153]834 $(sort $(filter-out $(VBOX_CORE_DOXYFILE_INPUT_FIRST), $(VBOX_CORE_DOXYFILE_INPUT)))
[6288]835
836# And some some additional stuff.
[10226]837VBOX_CORE_DOXYFILE_INPUT += \
[6288]838 $(PATH_ROOT)/src/recompiler/VBoxRecompiler.c \
839 $(PATH_ROOT)/src/recompiler/VBoxREMWrapper.cpp
840
[65153]841includedep $(VBOX_CORE_DOXYFILE_OUTPUT)/Doxyfile.Core.dep
[6288]842
843# Generate the Doxyfile
[65138]844$(VBOX_CORE_DOXYFILE_OUTPUT)/Doxyfile.Core: Doxyfile.Core \
[65153]845 $(comp-vars VBOX_CORE_DOXYFILE_INPUT,DOXYGEN_CORE_INPUT_PREV,FORCE) \
846 $(comp-vars VBOX_CORE_DOXYFILE_OUTPUT,DOXYGEN_CORE_OUTPUT_PREV,FORCE) \
[16532]847 | $$(dir $$@)
[65138]848 $(QUIET)$(RM) -f $@ $@.tmp $@.dep
[58127]849 $(QUIET)$(CP) -f Doxyfile.Core $@.tmp
850 $(QUIET)$(APPEND) $@.tmp
851 $(QUIET)$(APPEND) $@.tmp "OUTPUT_DIRECTORY = $(VBOX_CORE_DOXYFILE_OUTPUT)"
852 $(QUIET)$(APPEND) $@.tmp "WARN_LOGFILE = $(VBOX_CORE_DOXYFILE_OUTPUT)/errors"
853 $(QUIET)$(APPEND) $@.tmp "INCLUDE_PATH = $(PATH_ROOT)/include $(PATH_ROOT)/src/VBox/VMM $(PATH_ROOT)/src/VBox/Main/include "
854 $(QUIET)$(APPEND) $@.tmp "INCLUDE_FILE_PATTERNS = *.cpp.h"
[58144]855 $(QUIET)$(APPEND) $@.tmp "EXCLUDE = " \
856 "$(PATH_ROOT)/src/VBox/Additions/common/crOpenGL/utils.c" \
857 "$(PATH_ROOT)/src/VBox/HostServices/SharedOpenGL/crserver/main.c" \
858 "$(PATH_ROOT)/src/VBox/HostServices/SharedOpenGL/crserverlib/server_main.c" \
859 "$(PATH_ROOT)/src/VBox/HostServices/SharedOpenGL/unpacker/unpack_arrays.c" \
860 "$(PATH_ROOT)/src/VBox/Additions/common/crOpenGL/context.c"
[58127]861 $(QUIET)$(APPEND) $@.tmp
[58144]862 $(QUIET)$(APPEND) $@.tmp 'INPUT = $(foreach x,$(VBOX_CORE_DOXYFILE_INPUT),\$(NLTAB)$(x))'
[58127]863 $(QUIET)$(APPEND) $@.tmp
864 $(QUIET)$(APPEND) $@.tmp "PREDEFINED += $(DEFS) $(DEFS.$(KBUILD_TARGET)) $(DEFS.$(KBUILD_TARGET_ARCH)) $(ARCH_BITS_DEFS)"
865 $(QUIET)$(APPEND) $@.tmp "PREDEFINED += ARCH_BITS=HC_ARCH_BITS R3_ARCH_BITS=HC_ARCH_BITS R0_ARCH_BITS=HC_ARCH_BITS "
866 $(QUIET)$(APPEND) $@.tmp
867 $(QUIET)$(MV) -f $@.tmp $@
[65153]868 @$(APPEND) $@.dep "DOXYGEN_CORE_OUTPUT_PREV = $(VBOX_CORE_DOXYFILE_OUTPUT)"
869 @$(APPEND) $@.dep "DOXYGEN_CORE_INPUT_PREV = $(VBOX_CORE_DOXYFILE_INPUT)"
[6288]870
871# Do the actual job.
[65153]872$(VBOX_CORE_DOXYFILE_OUTPUT)/docs.Core: $(VBOX_CORE_DOXYFILE_OUTPUT)/Doxyfile.Core $$(VBOX_CORE_DOXYFILE_INPUT) \
873 | $(VBOX_CORE_DOXYFILE_OUTPUT)/
874 $(QUIET)$(RM) -f $@
875 $(QUIET)$(RM) -Rf $(VBOX_CORE_DOXYFILE_OUTPUT)/html/
[65138]876 doxygen $(VBOX_CORE_DOXYFILE_OUTPUT)/Doxyfile.Core
[58144]877 $(SED) -n \
[65127]878 -e ':nextwarning' \
[58147]879 -e '/^ *$(DOLLAR)/d' \
[65426]880 -e '/\/src\/VBox\/Main\/.* warning: documented symbol.*::~.* was not declared or defined/b ignore' \
881 -e '/\/src\/VBox\/Main\/.* warning: explicit link request to.* could not be resolved/b ignore' \
[58167]882 -e '/\/src\/VBox\/Additions\/common\/crOpenGL\/.* warning/b ignore' \
883 -e '/\/src\/VBox\/Additions\/x11\/VBoxClient\/seamless-x11\.h.* warning/b ignore' \
[64250]884 -e '/\/src\/VBox\/HostDrivers\/Support\/win\/SUPR3HardenedMain-win\.cpp.* warning/b ignore' \
[58167]885 -e '/\/src\/VBox\/ValidationKit\/.* warning/b ignore' \
[58341]886 \
887 -e '/unable to resolve link to .dtrace_pops_t./b ignore' \
888 \
[58144]889 -e 'b end' \
890 -e ':ignore' \
891 -e 'n' \
892 -e '/^[[:space:]]/b ignore' \
893 -e '/^Possible candidates/b ignore' \
[65081]894 -e '/^def testmanager::webui::wuicontentbase::__init__/b ignore' \
[58144]895 -e 'b nextwarning' \
896 -e ':end' \
897 -e 'p' \
898 --output $(VBOX_CORE_DOXYFILE_OUTPUT)/errors2 \
[65127]899 $(VBOX_CORE_DOXYFILE_OUTPUT)/errors
[58148]900 $(CAT) $(VBOX_CORE_DOXYFILE_OUTPUT)/errors2
901 $(SED) -e "/[^ ]/q 1" $(VBOX_CORE_DOXYFILE_OUTPUT)/errors2
[65153]902 $(APPEND) $@
[1]903
[65153]904docs.Core docs.core: $(VBOX_CORE_DOXYFILE_OUTPUT)/docs.Core
[6288]905
[69508]906#
907# This is a bit odd, but we attach the optional scm check run onto the 'docs' pass
908# so the build box output is less confusing on failure.
909#
910ifeq ($(KBUILD_HOST),$(KBUILD_TARGET))
911 ifdef VBOX_WITH_SCM_CHECK_RUN
912 docs: scm.check.run
913 endif
914 .PHONY: scm.check.run
[69514]915 scm.check.run: $(VBOX_PATH_TOOLS)/scm$(HOSTSUFF_EXE)
[69517]916 $(REDIRECT) -E VBOX_LOG_FLAGS="disabled" -E VBOX_LOG_DEST="nofile" -- \
917 $(VBOX_PATH_TOOLS)/scm$(HOSTSUFF_EXE) -qvv --check-run $(PATH_ROOT)
[69508]918endif
[65153]919
[69508]920
[27014]921#
[71485]922# Combined package build (windows only).
923#
924# The combined package is created by the x86 environment, so we do the amd64
925# packaging in the build phase since it's just a few very slow jobs. We hold
926# back the x86 build until the amd64 packaging starts, to try encourage
927# parallel execution.
928#
929# Note! VBOX_WITH_ADDITIONS_FROM_BUILD_SERVER=1 is required because the additions
930# packing must be done in amd64 mode as it picks files from the x86 build.
931#
932
933VBOX_COMBINED_PACKAGE_DEFS := \
934 VBOX_WITH_COMBINED_PACKAGE=1 \
935 VBOX_WITH_ALL_DOXYGEN_TARGETS= \
936 VBOX_WITH_ADDITIONS_FROM_BUILD_SERVER=1
937
938combined-package-fetch:
939 + $(KMK) -C tools $(VBOX_COMBINED_PACKAGE_DEFS) KBUILD_TARGET_ARCH=amd64 BUILD_TARGET_ARCH=amd64
940 + $(KMK) -C tools $(VBOX_COMBINED_PACKAGE_DEFS) KBUILD_TARGET_ARCH=x86 BUILD_TARGET_ARCH=x86
941
942combined-package-build-amd64:
943 + $(KMK) docs all $(VBOX_COMBINED_PACKAGE_DEFS) KBUILD_TARGET_ARCH=amd64 BUILD_TARGET_ARCH=amd64
944
945combined-package-build-amd64-packing: combined-package-build-amd64
946 + $(KMK) packing $(VBOX_COMBINED_PACKAGE_DEFS) KBUILD_TARGET_ARCH=amd64 BUILD_TARGET_ARCH=amd64
947
948combined-package-build-x86: combined-package-build-amd64
949 + $(KMK) docs all $(VBOX_COMBINED_PACKAGE_DEFS) KBUILD_TARGET_ARCH=x86 BUILD_TARGET_ARCH=x86
950
951combined-package-build: combined-package-build-amd64-packing combined-package-build-x86
952
953combined-package-packing:
954 + $(KMK) packing $(VBOX_COMBINED_PACKAGE_DEFS) KBUILD_TARGET_ARCH=x86 BUILD_TARGET_ARCH=x86
955
956
957
958#
[34648]959# Common rsync bits.
[34637]960#
[34639]961
962##
[34648]963# The basic rsync invocation for syncing the tree into a VM; the source and
964# target specs are missing.
965#
[34639]966# @param 1 os name.
[34648]967# @param 2 arch or *.
968#
[34649]969VBOX_RSYNC_IN_FN = rsync -a -v --delete --delete-excluded --prune-empty-dirs \
[40343]970 --exclude=*.pyc \
[40332]971 --exclude=.svn/ \
972 --exclude=doc/Devices/ \
973 --exclude=doc/tg/ \
974 --exclude=doc/vp/ \
975 --exclude=tinderclient.log \
976 --exclude=tools/FetchDir/ \
977 --exclude=webtools/ \
[72108]978 --exclude=out/ \
979 $(foreach os,$(filter-out $(1), darwin freebsd linux solaris os2 win), \
[40332]980 --exclude=tools/$(os).x86/ \
[72108]981 --exclude=tools/$(os).amd64/ )
[27014]982
[1]983#
[40327]984# VM IP addresses.
985#
[52628]986VBOX_BLD_VM_LNX_IP := 192.168.27.2
[40336]987VBOX_BLD_VM_OS2_IP := 192.168.27.3
988VBOX_BLD_VM_SOLARIS_IP := 192.168.27.4
989VBOX_BLD_VM_DARWIN_X86_IP := 192.168.27.5
990VBOX_BLD_VM_DARWIN_AMD64_IP := 192.168.27.15
991VBOX_BLD_VM_WIN_X86_IP := 192.168.27.6
992VBOX_BLD_VM_WIN_AMD64_IP := 192.168.27.16
993VBOX_BLD_VM_FBSD_X86_IP := 192.168.27.7
994VBOX_BLD_VM_FBSD_AMD64_IP := 192.168.27.17
[40327]995
[40328]996VBOX_WITH_OS2_ADD_BUILD=1
[40327]997
998#
[40346]999# For profiling the VM building steps.
1000#
1001if 0
1002 VBOX_BLD_VM_MSG_BEGIN = $(call MSG_L1,Building $1.)
1003 VBOX_BLD_VM_MSG_END__ =
1004else
[71576]1005 VBOX_BLD_VM_MSG_BEGIN = @echo "$(date ) - Start building $1."
1006 VBOX_BLD_VM_MSG_END__ = @echo "$(date ) - Done building $1."
[40346]1007endif
1008
1009#
[71575]1010# For killing old build jobs in the OS/2 VM before rsyncing.
1011#
1012VBOX_BLD_VM_OS2_KKILL_STUFF = $(REDIRECT_EXT) --stdin-pipe -- rsh -l vbox $(VBOX_BLD_VM_OS2_IP) "kkill -All -Tree kmk.exe gcc.exe & sleep.exe 1 & kkill -All gcc.exe emxomfld.exe as.exe kmk.exe "
1013
1014
1015#
[6052]1016# Build the additions, all of them.
1017#
[6129]1018# This is currently tailored (hardcoded) for the additions
[6052]1019# build box. Can make it pretty and configurable later.
1020#
1021# The fetching must be done in serial fashion, while the building
1022# should be more flexible wrt to -jN.
1023#
1024additions-fetch:
[27076]1025 + $(KMK) -C tools fetch VBOX_ONLY_ADDITIONS=1
1026 + $(KMK) -C tools fetch KBUILD_TARGET_ARCH=amd64 KBUILD_TARGET=linux BUILD_TARGET_ARCH=amd64 BUILD_TARGET=linux VBOX_ONLY_ADDITIONS=1
1027 + $(KMK) -C tools fetch KBUILD_TARGET_ARCH=x86 KBUILD_TARGET=linux BUILD_TARGET_ARCH=x86 BUILD_TARGET=linux VBOX_ONLY_ADDITIONS=1
[40315]1028ifdef VBOX_WITH_OS2_ADD_BUILD
1029 + $(KMK) -C tools fetch KBUILD_TARGET_ARCH=x86 KBUILD_TARGET=os2 BUILD_TARGET_ARCH=x86 BUILD_TARGET=os2 VBOX_ONLY_ADDITIONS=1
1030endif
[27076]1031 + $(KMK) -C tools fetch KBUILD_TARGET_ARCH=amd64 KBUILD_TARGET=solaris BUILD_TARGET_ARCH=amd64 BUILD_TARGET=solaris VBOX_ONLY_ADDITIONS=1
1032 + $(KMK) -C tools fetch KBUILD_TARGET_ARCH=x86 KBUILD_TARGET=solaris BUILD_TARGET_ARCH=x86 BUILD_TARGET=solaris VBOX_ONLY_ADDITIONS=1
1033 + $(KMK) -C tools fetch KBUILD_TARGET_ARCH=amd64 KBUILD_TARGET=win BUILD_TARGET_ARCH=amd64 BUILD_TARGET=win VBOX_ONLY_ADDITIONS=1
1034 + $(KMK) -C tools fetch KBUILD_TARGET_ARCH=x86 KBUILD_TARGET=win BUILD_TARGET_ARCH=x86 BUILD_TARGET=win VBOX_ONLY_ADDITIONS=1
[5957]1035
[6052]1036
[12337]1037## @todo Currently combined solaris additions building assumes that amd64 is
[16043]1038# built first. The windows amd64 additions need some x86 files, so don't change
[25220]1039# the order of the windows builds. TODO: Split building and packing for these two VMs.
[6052]1040additions-build: \
[40339]1041 additions-build-rsync-into-vms \
[40346]1042 additions-build-win.x86 \
1043 additions-build-win.amd64 \
[25222]1044 additions-build-solaris.amd64 \
1045 additions-build-solaris.x86 \
[6052]1046 additions-build-os2.x86 \
[52628]1047 additions-build-linux
[6052]1048
[40339]1049additions-build-rsync-into-vms: \
1050 additions-build-solaris.rsync-into-vm \
[52628]1051 additions-build-os2.rsync-into-vm \
1052 additions-build-linux.rsync-into-vm
[40339]1053 $(call MSG_L1,Rsynced the sources + tools into the VMs.)
[52584]1054.NOTPARALLEL: additions-build-rsync-into-vms
[52852]1055.PHONY: additions-build-rsync-into-vms
[40339]1056
1057
[10161]1058VBOX_ADDITIONS_BUILD.amd64 = VBOX_ONLY_ADDITIONS=1 VBOX_WITHOUT_ADDITIONS_ISO=1 \
1059 KBUILD_TYPE=$(KBUILD_TYPE) BUILD_TYPE=$(KBUILD_TYPE) \
1060 KBUILD_TARGET_ARCH=amd64 BUILD_TARGET_ARCH=amd64 \
[25209]1061 VBOX_SVN_REV=$(VBOX_SVN_REV)
[10161]1062
[8762]1063VBOX_ADDITIONS_BUILD.x86 = VBOX_ONLY_ADDITIONS=1 VBOX_WITHOUT_ADDITIONS_ISO=1 \
1064 KBUILD_TYPE=$(KBUILD_TYPE) BUILD_TYPE=$(KBUILD_TYPE) \
1065 KBUILD_TARGET_ARCH=x86 BUILD_TARGET_ARCH=x86 \
[25209]1066 VBOX_SVN_REV=$(VBOX_SVN_REV)
[6052]1067
[12833]1068# Automatically determine the additions build subdir name. Used for figuring
1069# out directory names inside the additions building VMs.
1070VBOX_ADDITIONS_BUILD_SUBDIRNAME := $(lastword $(subst /, ,$(PATH_ROOT)))
1071
[25225]1072# When building in parallel on a Windows host, make sure we finish the host
1073# bit before kicking off any UNIX guest or we'll run into file sharing issues.
1074ifeq ($(KBUILD_TARGET),win)
[45643]1075VBOX_ADDITIONS_BUILD_WIN_HOST_FIRST = #additions-build-win.x86 additions-build-win.amd64
[25225]1076else
1077VBOX_ADDITIONS_BUILD_WIN_HOST_FIRST =
1078endif
1079
[25220]1080# ASSUMES the 32-bit edition has been built already. Also for serializing VM access.
[10161]1081ifeq ($(KBUILD_TARGET),win)
[71475]1082additions-build-win.amd64-just-build:
[71576]1083 + $(TIME) -- $(KMK) $(VBOX_ADDITIONS_BUILD.amd64) all $(VBOX_ADD_HOST_BUILD_TWEAK)
[71475]1084additions-build-win.amd64: additions-build-win.x86 additions-build-win.amd64-just-build
[71576]1085 + $(TIME) -- $(KMK) $(VBOX_ADDITIONS_BUILD.amd64) packing
[10161]1086else
[71475]1087additions-build-win.amd64: additions-build-win.x86
[52628]1088 $(call VBOX_BLD_VM_MSG_BEGIN,Windows/amd64 additions build+pack)
[71576]1089 $(TIME) -- ssh vbox@$(VBOX_BLD_VM_WIN_AMD64_IP) ' cd e:/$(VBOX_ADDITIONS_BUILD_SUBDIRNAME) && tools/env.sh kmk $(VBOX_ADDITIONS_BUILD.amd64) all packing '
[52628]1090 $(call VBOX_BLD_VM_MSG_END__,Windows/amd64 additions build+pack)
[10161]1091endif
1092
[71475]1093ifeq ($(KBUILD_TARGET),win)
[6052]1094additions-build-win.x86:
[71576]1095 + $(TIME) -- $(KMK) $(VBOX_ADDITIONS_BUILD.x86) all $(VBOX_ADD_HOST_BUILD_TWEAK)
1096 + $(TIME) -- $(KMK) $(VBOX_ADDITIONS_BUILD.x86) packing
[6052]1097else
[71475]1098additions-build-win.x86:
[52628]1099 $(call VBOX_BLD_VM_MSG_BEGIN,Windows/x86 additions build.pack)
[71576]1100 $(TIME) -- ssh vbox@$(VBOX_BLD_VM_WIN_X86_IP) ' cd e:/$(VBOX_ADDITIONS_BUILD_SUBDIRNAME) && tools/env.sh kmk $(VBOX_ADDITIONS_BUILD.x86) all packing '
[52628]1101 $(call VBOX_BLD_VM_MSG_END__,Windows/x86 additions build+pack)
[6052]1102endif
[6129]1103
[25221]1104# ASSUMES the 64-bit edition are built first. This also serializes VM access.
1105ifeq ($(KBUILD_TARGET),solaris)
[10161]1106additions-build-solaris.amd64:
[71576]1107 + $(TIME) -- $(KMK) $(VBOX_ADDITIONS_BUILD.amd64) all $(VBOX_ADD_HOST_BUILD_TWEAK)
1108 + $(TIME) -- $(KMK) $(VBOX_ADDITIONS_BUILD.amd64) packing
[25221]1109
1110additions-build-solaris.x86: additions-build-solaris.amd64
[71576]1111 + $(TIME) -- $(KMK) $(VBOX_ADDITIONS_BUILD.x86) VBOX_WITH_COMBINED_SOLARIS_GUEST_PACKAGE=1 all $(VBOX_ADD_HOST_BUILD_TWEAK)
1112 + $(TIME) -- $(KMK) $(VBOX_ADDITIONS_BUILD.x86) VBOX_WITH_COMBINED_SOLARIS_GUEST_PACKAGE=1 packing
[25221]1113
[40339]1114additions-build-solaris.rsync-into-vm:
[10161]1115else
[40339]1116additions-build-solaris.rsync-into-vm:
[71576]1117 $(TIME) -- $(call VBOX_RSYNC_IN_FN,solaris,*) \
[40338]1118 '--exclude=src/VBox/Additions/WINNT/**' \
1119 '--exclude=src/VBox/Frontends/**' \
1120 '--exclude=src/VBox/VMM/**' \
1121 . $(VBOX_BLD_VM_SOLARIS_IP):/mnt/tinderbox/$(VBOX_ADDITIONS_BUILD_SUBDIRNAME)
[25221]1122
[25683]1123additions-build-solaris.build-it: additions-build-solaris.rsync-into-vm
[52628]1124 $(call VBOX_BLD_VM_MSG_BEGIN,Solaris/amd64 additions build+pack)
[71576]1125 $(TIME) -- ssh -v vbox@$(VBOX_BLD_VM_SOLARIS_IP) ' cd /mnt/tinderbox/$(VBOX_ADDITIONS_BUILD_SUBDIRNAME) && tools/env.sh --no-wine kmk $(VBOX_ADDITIONS_BUILD.amd64) all packing '
[52628]1126 $(call VBOX_BLD_VM_MSG_END__,Solaris/amd64 additions build+pack)
1127 $(call VBOX_BLD_VM_MSG_BEGIN,Solaris/x86 additions build+pack)
[71576]1128 $(TIME) -- ssh -v vbox@$(VBOX_BLD_VM_SOLARIS_IP) ' cd /mnt/tinderbox/$(VBOX_ADDITIONS_BUILD_SUBDIRNAME) && tools/env.sh --no-wine kmk $(VBOX_ADDITIONS_BUILD.x86) all packing VBOX_WITH_COMBINED_SOLARIS_GUEST_PACKAGE=1 '
[52628]1129 $(call VBOX_BLD_VM_MSG_END__,Solaris/x86 additions build+pack)
[25221]1130
[25222]1131additions-build-solaris.rsync-out-of-vm: additions-build-solaris.build-it
[71576]1132 $(TIME) -- rsync -a --delete $(VBOX_BLD_VM_SOLARIS_IP):/mnt/tinderbox/$(VBOX_ADDITIONS_BUILD_SUBDIRNAME)/out/solaris.x86 out/
1133 $(TIME) -- rsync -a --delete $(VBOX_BLD_VM_SOLARIS_IP):/mnt/tinderbox/$(VBOX_ADDITIONS_BUILD_SUBDIRNAME)/out/solaris.amd64 out/
[25222]1134
[52853]1135.NOTPARALLEL: additions-build-solaris.rsync-into-vm
[40337]1136.PHONY: additions-build-solaris.rsync-into-vm additions-build-solaris.rsync-out-of-vm additions-build-solaris.build-it
[25222]1137
1138additions-build-solaris.amd64: additions-build-solaris.rsync-out-of-vm
[40339]1139additions-build-solaris.x86: additions-build-solaris.rsync-out-of-vm
[8032]1140endif
[6052]1141
[40328]1142ifdef VBOX_WITH_OS2_ADD_BUILD
[40315]1143 ifeq ($(KBUILD_TARGET),os2)
[6052]1144additions-build-os2.x86:
[71576]1145 + $(TIME) -- $(KMK) $(VBOX_ADDITIONS_BUILD.x86) all $(VBOX_ADD_HOST_BUILD_TWEAK)
1146 + $(TIME) -- $(KMK) $(VBOX_ADDITIONS_BUILD.x86) packing
[40339]1147
1148additions-build-os2.rsync-into-vm:
[40315]1149 else
[40339]1150additions-build-os2.rsync-into-vm:
[71575]1151 -$(VBOX_BLD_VM_OS2_KKILL_STUFF)
[71576]1152 $(TIME) -- $(call VBOX_RSYNC_IN_FN,os2,*) \
[40332]1153 '--exclude=src/VBox/Additions/x11/**' \
1154 '--exclude=src/VBox/Additions/WINNT/**' \
1155 '--exclude=src/VBox/Frontends/**' \
1156 '--exclude=src/VBox/VMM/**' \
[40331]1157 . rsync://vbox@$(VBOX_BLD_VM_OS2_IP)/tinderbox/$(VBOX_ADDITIONS_BUILD_SUBDIRNAME)
[6052]1158
[71570]1159additions-build-os2.build-it: #additions-build-os2.rsync-into-vm
[52628]1160 $(call VBOX_BLD_VM_MSG_BEGIN,OS/2 additions build+pack)
[71576]1161 $(TIME) -- $(REDIRECT_EXT) --stdin-pipe -- rsh -l vbox $(VBOX_BLD_VM_OS2_IP) "cd e:\\tinderbox\\$(VBOX_ADDITIONS_BUILD_SUBDIRNAME) && e: && kbuild\\bin\\os2.x86\\kmk_ash tools\\env.sh --no-wine kmk $(VBOX_ADDITIONS_BUILD.x86) all packing"
[52628]1162 $(call VBOX_BLD_VM_MSG_END__,OS/2 additions build+pack)
[40315]1163
1164additions-build-os2.rsync-out-of-vm: additions-build-os2.build-it
[71575]1165 -$(VBOX_BLD_VM_OS2_KKILL_STUFF)
[71576]1166 $(TIME) -- rsync -v -a --delete rsync://vbox@$(VBOX_BLD_VM_OS2_IP)/tinderbox/$(VBOX_ADDITIONS_BUILD_SUBDIRNAME)/out/os2.x86 ./out
[40315]1167
[52853]1168.NOTPARALLEL: additions-build-os2.rsync-into-vm
[40337]1169.PHONY: additions-build-os2.rsync-into-vm additions-build-os2.rsync-out-of-vm additions-build-os2.build-it
[40315]1170
1171additions-build-os2.x86: additions-build-os2.rsync-out-of-vm
1172 endif
1173#
1174else
1175additions-build-os2.x86:
1176# Dummy
1177endif
1178
[52628]1179ifeq ($(KBUILD_TARGET),linux)
1180additions-build-linux.amd64:
[71576]1181 + $(TIME) -- $(KMK) $(VBOX_ADDITIONS_BUILD.amd64) all $(VBOX_ADD_HOST_BUILD_TWEAK)
1182 + $(TIME) -- $(KMK) $(VBOX_ADDITIONS_BUILD.amd64) packing VBOX_WITHOUT_LINUX_GUEST_PACKAGE=1
[52628]1183
1184additions-build-linux.x86:
[71576]1185 + $(TIME) -- $(KMK) $(VBOX_ADDITIONS_BUILD.x86) all $(VBOX_ADD_HOST_BUILD_TWEAK)
1186 + $(TIME) -- $(KMK) $(VBOX_ADDITIONS_BUILD.x86) packing VBOX_WITHOUT_LINUX_GUEST_PACKAGE=1
[52628]1187
1188additions-build-linux: additions-build-linux.x86 additions-build-linux.amd64
[71576]1189 + $(TIME) -- $(KMK) $(VBOX_ADDITIONS_BUILD.x86) all $(VBOX_ADD_HOST_BUILD_TWEAK)
1190 + $(TIME) -- $(KMK) $(VBOX_ADDITIONS_BUILD.x86) packing VBOX_WITH_COMBINED_LINUX_GUEST_PACKAGE=1
[10161]1191else
[52628]1192additions-build-linux.rsync-into-vm:
[71576]1193 $(TIME) -- $(call VBOX_RSYNC_IN_FN,linux,*) \
[52628]1194 '--exclude=src/VBox/Additions/WINNT/**' \
1195 '--exclude=src/VBox/Frontends/**' \
1196 '--exclude=src/VBox/VMM/**' \
1197 . $(VBOX_BLD_VM_LNX_IP):/mnt/tinderbox/$(VBOX_ADDITIONS_BUILD_SUBDIRNAME)
1198
1199additions-build-linux.build-it: additions-build-linux.rsync-into-vm
[44075]1200 ifdef VBOX_WITH_LIGHTDM_GREETER_PACKING
[45466]1201 $(call VBOX_BLD_VM_MSG_BEGIN,Linux/amd64 additions/greeter)
[71576]1202 $(TIME) -- ssh -v vbox@$(VBOX_BLD_VM_LNX_IP) 'dchroot -c ubuntu-11.10-amd64 "cd /mnt/tinderbox/$(VBOX_ADDITIONS_BUILD_SUBDIRNAME) && tools/env.sh --no-wine kmk $(VBOX_ADDITIONS_BUILD.amd64) PATH_OUT=/mnt/tinderbox/$(VBOX_ADDITIONS_BUILD_SUBDIRNAME)/out/linux.amd64/$(KBUILD_TYPE)/greeter VBOX_WITH_LIGHTDM_GREETER=1 vbox-greeter " '
[45466]1203 $(call VBOX_BLD_VM_MSG_END__,Linux/amd64 additions/greeter)
[44062]1204 endif
[52628]1205 $(call VBOX_BLD_VM_MSG_BEGIN,Linux/amd64 additions build+pack)
[71576]1206 $(TIME) -- ssh -v vbox@$(VBOX_BLD_VM_LNX_IP) 'dchroot -c debian-4.0-amd64 "cd /mnt/tinderbox/$(VBOX_ADDITIONS_BUILD_SUBDIRNAME) && tools/env.sh --no-wine kmk $(VBOX_ADDITIONS_BUILD.amd64) all packing VBOX_WITHOUT_LINUX_GUEST_PACKAGE=1 VBOX_WITH_LIGHTDM_GREETER_PACKING=$(VBOX_WITH_LIGHTDM_GREETER_PACKING) " '
[52628]1207 $(call VBOX_BLD_VM_MSG_END__,Linux/amd64 additions build+pack)
[44075]1208 ifdef VBOX_WITH_LIGHTDM_GREETER_PACKING
[45466]1209 $(call VBOX_BLD_VM_MSG_BEGIN,Linux/x86 additions/greeter)
[71576]1210 $(TIME) -- ssh -v vbox@$(VBOX_BLD_VM_LNX_IP) 'linux32 dchroot -c ubuntu-11.10-i386 "cd /mnt/tinderbox/$(VBOX_ADDITIONS_BUILD_SUBDIRNAME) && BUILD_PLATFORM_ARCH=x86 tools/env.sh --no-wine kmk $(VBOX_ADDITIONS_BUILD.x86) PATH_OUT=/mnt/tinderbox/$(VBOX_ADDITIONS_BUILD_SUBDIRNAME)/out/linux.x86/$(KBUILD_TYPE)/greeter VBOX_WITH_LIGHTDM_GREETER=1 vbox-greeter " '
[45466]1211 $(call VBOX_BLD_VM_MSG_END__,Linux/x86 additions/greeter)
[44067]1212 endif
[52628]1213 $(call VBOX_BLD_VM_MSG_BEGIN,Linux/x86 additions build+pack)
[71576]1214 $(TIME) -- ssh -v vbox@$(VBOX_BLD_VM_LNX_IP) 'linux32 dchroot -c rhel3-i386 "cd /mnt/tinderbox/$(VBOX_ADDITIONS_BUILD_SUBDIRNAME) && tools/env.sh --no-wine kmk $(VBOX_ADDITIONS_BUILD.x86) all packing VBOX_WITHOUT_LINUX_GUEST_PACKAGE=1 VBOX_WITH_LIGHTDM_GREETER_PACKING=$(VBOX_WITH_LIGHTDM_GREETER_PACKING) " '
[52628]1215 $(call VBOX_BLD_VM_MSG_END__,Linux/x86 additions build+pack)
1216 $(call VBOX_BLD_VM_MSG_BEGIN,Linux/x86 additions combine)
[71576]1217 $(TIME) -- ssh -v vbox@$(VBOX_BLD_VM_LNX_IP) 'linux32 dchroot -c rhel3-i386 "cd /mnt/tinderbox/$(VBOX_ADDITIONS_BUILD_SUBDIRNAME) && tools/env.sh --no-wine kmk $(VBOX_ADDITIONS_BUILD.x86) all packing VBOX_WITH_COMBINED_LINUX_GUEST_PACKAGE=1 " '
[52628]1218 $(call VBOX_BLD_VM_MSG_END__,Linux/x86 additions combine)
[31139]1219
[52628]1220additions-build-linux.rsync-out-of-vm: additions-build-linux.build-it
[71576]1221 $(TIME) -- rsync -a --delete $(VBOX_BLD_VM_LNX_IP):/mnt/tinderbox/$(VBOX_ADDITIONS_BUILD_SUBDIRNAME)/out/linux.x86 out/
1222 $(TIME) -- rsync -a --delete $(VBOX_BLD_VM_LNX_IP):/mnt/tinderbox/$(VBOX_ADDITIONS_BUILD_SUBDIRNAME)/out/linux.amd64 out/
[52628]1223
[52853]1224.NOTPARALLEL: additions-build-linux.rsync-into-vm
[52628]1225.PHONY: additions-build-linux.rsync-into-vm additions-build-linux.rsync-out-of-vm additions-build-linux.build-it
1226
1227additions-build-linux: additions-build-linux.rsync-out-of-vm
[6052]1228endif
1229
1230additions-packing:
1231 + $(KMK) VBOX_ONLY_ADDITIONS=1 \
[9641]1232 VBOX_WITH_ADDITIONS_ISO.freebsd.amd64= \
[9643]1233 VBOX_WITH_ADDITIONS_ISO.freebsd.x86= \
[31139]1234 VBOX_WITH_ADDITIONS_ISO.linux.amd64= \
[6052]1235 VBOX_WITH_ADDITIONS_ISO.linux.x86=1 \
[31150]1236 VBOX_WITH_COMBINED_LINUX_GUEST_PACKAGE=1 \
[40327]1237 VBOX_WITH_ADDITIONS_ISO.os2.x86=1 \
[12337]1238 VBOX_WITH_ADDITIONS_ISO.solaris.amd64=1 \
[8058]1239 VBOX_WITH_ADDITIONS_ISO.solaris.x86=1 \
[12337]1240 VBOX_WITH_COMBINED_SOLARIS_GUEST_PACKAGE=1 \
[11898]1241 VBOX_WITH_ADDITIONS_ISO.win.amd64=1 \
[9641]1242 VBOX_WITH_ADDITIONS_ISO.win.x86=1 \
[6052]1243 -C src/VBox/Additions \
[45059]1244 $(VBOX_PATH_ADDITIONS)/VBoxGuestAdditions.zip
[6052]1245
[25221]1246.PHONY: \
1247 additions-build-win.x86 \
1248 additions-build-win.amd64 \
1249 additions-build-solaris.amd64 \
1250 additions-build-solaris.x86 \
1251 additions-build-os2.x86 \
[52628]1252 additions-build-linux \
[25221]1253 additions-build-linux.amd64 \
1254 additions-build-linux.x86 \
[31139]1255 additions-build-linux.x86.combined \
[25221]1256 additions-packing
[12804]1257
1258
1259#
[34482]1260# Build the extension packs, all of them.
1261#
1262# This is tailored (hardcoded) for the extension pack build box.
1263#
1264# The fetching must be done in serial fashion, while the building should be
1265# more flexible wrt to -jN.
1266#
1267extpacks-fetch:
1268 + $(KMK) -C tools fetch VBOX_ONLY_EXTPACKS=1
[34620]1269 + $(KMK) -C tools fetch KBUILD_TARGET_ARCH=amd64 KBUILD_TARGET=darwin BUILD_TARGET_ARCH=amd64 BUILD_TARGET=darwin VBOX_ONLY_EXTPACKS=1
1270 + $(KMK) -C tools fetch KBUILD_TARGET_ARCH=x86 KBUILD_TARGET=darwin BUILD_TARGET_ARCH=x86 BUILD_TARGET=darwin VBOX_ONLY_EXTPACKS=1
[34482]1271# + $(KMK) -C tools fetch KBUILD_TARGET_ARCH=amd64 KBUILD_TARGET=freebsd BUILD_TARGET_ARCH=amd64 BUILD_TARGET=freebsd VBOX_ONLY_EXTPACKS=1
1272# + $(KMK) -C tools fetch KBUILD_TARGET_ARCH=x86 KBUILD_TARGET=freebsd BUILD_TARGET_ARCH=x86 BUILD_TARGET=freebsd VBOX_ONLY_EXTPACKS=1
1273 + $(KMK) -C tools fetch KBUILD_TARGET_ARCH=amd64 KBUILD_TARGET=linux BUILD_TARGET_ARCH=amd64 BUILD_TARGET=linux VBOX_ONLY_EXTPACKS=1
1274 + $(KMK) -C tools fetch KBUILD_TARGET_ARCH=x86 KBUILD_TARGET=linux BUILD_TARGET_ARCH=x86 BUILD_TARGET=linux VBOX_ONLY_EXTPACKS=1
1275# + $(KMK) -C tools fetch KBUILD_TARGET_ARCH=x86 KBUILD_TARGET=os2 BUILD_TARGET_ARCH=x86 BUILD_TARGET=os2 VBOX_ONLY_EXTPACKS=1
1276 + $(KMK) -C tools fetch KBUILD_TARGET_ARCH=amd64 KBUILD_TARGET=solaris BUILD_TARGET_ARCH=amd64 BUILD_TARGET=solaris VBOX_ONLY_EXTPACKS=1
1277 + $(KMK) -C tools fetch KBUILD_TARGET_ARCH=amd64 KBUILD_TARGET=win BUILD_TARGET_ARCH=amd64 BUILD_TARGET=win VBOX_ONLY_EXTPACKS=1
1278 + $(KMK) -C tools fetch KBUILD_TARGET_ARCH=x86 KBUILD_TARGET=win BUILD_TARGET_ARCH=x86 BUILD_TARGET=win VBOX_ONLY_EXTPACKS=1
1279
1280
1281extpacks-build: \
[34625]1282 extpacks-build-win.amd64 \
1283 extpacks-build-win.x86 \
[34482]1284 extpacks-build-solaris.amd64 \
[34625]1285 extpacks-build-os2.x86 \
[52628]1286 extpacks-build-linux \
[34620]1287 extpacks-build-darwin.amd64 \
[34625]1288 extpacks-build-freebsd.amd64 \
1289 extpacks-build-freebsd.x86
[34482]1290
1291VBOX_EXTPACKS_BUILD.amd64 = VBOX_ONLY_EXTPACKS=1 \
1292 KBUILD_TYPE=$(KBUILD_TYPE) BUILD_TYPE=$(KBUILD_TYPE) \
1293 KBUILD_TARGET_ARCH=amd64 BUILD_TARGET_ARCH=amd64 \
1294 VBOX_SVN_REV=$(VBOX_SVN_REV)
1295
1296VBOX_EXTPACKS_BUILD.x86 = VBOX_ONLY_EXTPACKS=1 \
1297 KBUILD_TYPE=$(KBUILD_TYPE) BUILD_TYPE=$(KBUILD_TYPE) \
1298 KBUILD_TARGET_ARCH=x86 BUILD_TARGET_ARCH=x86 \
1299 VBOX_SVN_REV=$(VBOX_SVN_REV)
1300
1301# Automatically determine the extpack build subdir name. Used for figuring out
1302# directory names inside the extension pack building VMs.
1303VBOX_EXTPACKS_BUILD_SUBDIRNAME := $(lastword $(subst /, ,$(PATH_ROOT)))
1304
1305# When building in parallel on a Windows host, make sure we finish the host
1306# bit before kicking off any UNIX guest or we'll run into file sharing issues.
1307ifeq ($(KBUILD_TARGET),win)
1308VBOX_EXTPACKS_BUILD_WIN_HOST_FIRST = extpacks-build-win.x86 extpacks-build-win.amd64
1309else
1310VBOX_EXTPACKS_BUILD_WIN_HOST_FIRST =
1311endif
1312
1313extpacks-build-win.amd64:
1314ifeq ($(KBUILD_TARGET),win)
[71576]1315 + $(TIME) -- $(KMK) $(VBOX_EXTPACKS_BUILD.amd64) all $(VBOX_EXTPACKS_HOST_BUILD_TWEAK)
[34482]1316else
[40346]1317 $(call VBOX_BLD_VM_MSG_BEGIN,Windows/amd64 extension packs)
[71576]1318 $(TIME) -- ssh vbox@$(VBOX_BLD_VM_WIN_AMD64_IP) 'cd e:/$(VBOX_EXTPACKS_BUILD_SUBDIRNAME) && tools/env.sh kmk $(VBOX_EXTPACKS_BUILD.amd64) all '
[40346]1319 $(call VBOX_BLD_VM_MSG_END__,Windows/amd64 extension packs)
[34482]1320endif
1321
1322extpacks-build-win.x86:
1323ifeq ($(KBUILD_TARGET),win)
[71576]1324 + $(TIME) -- $(KMK) $(VBOX_EXTPACKS_BUILD.x86) all $(VBOX_EXTPACKS_HOST_BUILD_TWEAK)
[34482]1325else
[40346]1326 $(call VBOX_BLD_VM_MSG_BEGIN,Windows/x86 extension packs)
[71576]1327 $(TIME) -- ssh vbox@$(VBOX_BLD_VM_WIN_X86_IP) 'cd e:/$(VBOX_EXTPACKS_BUILD_SUBDIRNAME) && tools/env.sh kmk $(VBOX_EXTPACKS_BUILD.x86) all '
[40346]1328 $(call VBOX_BLD_VM_MSG_END__,Windows/x86 extension packs)
[34482]1329endif
1330
1331ifeq ($(KBUILD_TARGET),solaris)
1332extpacks-build-solaris.amd64:
[71576]1333 + $(TIME) -- $(KMK) $(VBOX_EXTPACKS_BUILD.amd64) all $(VBOX_EXTPACKS_HOST_BUILD_TWEAK)
[34482]1334
1335else
1336# Serialize 32-bit and 64-bit ASSUMING the same VM builds both.
1337extpacks-build-solaris.rsync-into-vm: $(VBOX_EXTPACKS_BUILD_WIN_HOST_FIRST)
[71576]1338 $(TIME) -- $(call VBOX_RSYNC_IN_FN,solaris,*) . $(VBOX_BLD_VM_SOLARIS_IP):/mnt/tinderbox/$(VBOX_EXTPACKS_BUILD_SUBDIRNAME)
[34482]1339
1340extpacks-build-solaris.build-it: extpacks-build-solaris.rsync-into-vm
[40346]1341 $(call VBOX_BLD_VM_MSG_BEGIN,Solaris/amd64 extension packs)
[71576]1342 $(TIME) -- ssh vbox@$(VBOX_BLD_VM_SOLARIS_IP) 'cd /mnt/tinderbox/$(VBOX_EXTPACKS_BUILD_SUBDIRNAME) && tools/env.sh --no-wine kmk $(VBOX_EXTPACKS_BUILD.amd64) all '
[40346]1343 $(call VBOX_BLD_VM_MSG_END__,Solaris/amd64 extension packs)
[34482]1344
1345extpacks-build-solaris.rsync-out-of-vm: extpacks-build-solaris.build-it
[71576]1346 $(TIME) -- rsync -a --delete $(VBOX_BLD_VM_SOLARIS_IP):/mnt/tinderbox/$(VBOX_EXTPACKS_BUILD_SUBDIRNAME)/out/solaris.amd64 out/
[34482]1347
[52628]1348#.NOTPARALLEL: extpacks-build-solaris.rsync-into-vm
[34482]1349.PHONY: extpacks-build-solaris.rsync-out-of-vm extpacks-build-solaris.rsync-into-vm extpacks-build-solaris.build-it
1350
1351extpacks-build-solaris.amd64: extpacks-build-solaris.rsync-out-of-vm
1352endif
1353
1354extpacks-build-os2.x86:
1355#ifeq ($(KBUILD_TARGET),os2)
[71576]1356# + $(TIME) -- $(KMK) $(VBOX_EXTPACKS_BUILD.x86) all $(VBOX_EXTPACKS_HOST_BUILD_TWEAK)
[34482]1357#else
[71576]1358# $(TIME) -- ssh vbox@$(VBOX_BLD_VM_OS2_IP) ' cd /mnt/tinderbox/$(VBOX_EXTPACKS_BUILD_SUBDIRNAME) && tools/env.sh --no-wine kmk $(VBOX_EXTPACKS_BUILD.x86) '
[34482]1359#endif
1360
[52628]1361ifeq ($(KBUILD_TARGET),linux)
[34482]1362extpacks-build-linux.amd64: $(VBOX_EXTPACKS_BUILD_WIN_HOST_FIRST)
[71576]1363 + $(TIME) -- $(KMK) $(VBOX_EXTPACKS_BUILD.amd64) all $(VBOX_EXTPACKS_HOST_BUILD_TWEAK)
[34482]1364
1365extpacks-build-linux.x86: $(VBOX_EXTPACKS_BUILD_WIN_HOST_FIRST)
[71576]1366 + $(TIME) -- $(KMK) $(VBOX_EXTPACKS_BUILD.x86) all $(VBOX_EXTPACKS_HOST_BUILD_TWEAK)
[52628]1367
1368extpacks-build-linux: extpacks-build-linux.x86 extpacks-build-linux.amd64
[34482]1369else
[52628]1370# Serialize 32-bit and 64-bit ASSUMING the same VM builds both.
1371extpacks-build-linux.rsync-into-vm: $(VBOX_EXTPACKS_BUILD_WIN_HOST_FIRST)
[71576]1372 $(TIME) -- $(call VBOX_RSYNC_IN_FN,linux,*) . $(VBOX_BLD_VM_LNX_IP):/mnt/tinderbox/$(VBOX_EXTPACKS_BUILD_SUBDIRNAME)
[52628]1373
1374extpacks-build-linux.build-it: extpacks-build-linux.rsync-into-vm
1375 $(call VBOX_BLD_VM_MSG_BEGIN,Linux/amd64 extension packs)
[71576]1376 $(TIME) -- ssh vbox@$(VBOX_BLD_VM_LNX_IP) 'dchroot -c debian-4.0-amd64 "cd /mnt/tinderbox/$(VBOX_EXTPACKS_BUILD_SUBDIRNAME) && tools/env.sh --no-wine kmk $(VBOX_EXTPACKS_BUILD.amd64) all " '
[52628]1377 $(call VBOX_BLD_VM_MSG_END__,Linux/amd64 extension packs)
[40346]1378 $(call VBOX_BLD_VM_MSG_BEGIN,Linux/x86 extension packs)
[71576]1379 $(TIME) -- ssh vbox@$(VBOX_BLD_VM_LNX_IP) 'linux32 dchroot -c debian-4.0-i386 "cd /mnt/tinderbox/$(VBOX_EXTPACKS_BUILD_SUBDIRNAME) && tools/env.sh --no-wine kmk $(VBOX_EXTPACKS_BUILD.x86) all " '
[40346]1380 $(call VBOX_BLD_VM_MSG_END__,Linux/x86 extension packs)
[52628]1381
1382extpacks-build-linux.rsync-out-of-vm: extpacks-build-linux.build-it
[71576]1383 $(TIME) -- rsync -a --delete $(VBOX_BLD_VM_LNX_IP):/mnt/tinderbox/$(VBOX_EXTPACKS_BUILD_SUBDIRNAME)/out/linux.x86 out/
1384 $(TIME) -- rsync -a --delete $(VBOX_BLD_VM_LNX_IP):/mnt/tinderbox/$(VBOX_EXTPACKS_BUILD_SUBDIRNAME)/out/linux.amd64 out/
[52628]1385
1386#.NOTPARALLEL: extpacks-build-linux.rsync-into-vm
1387.PHONY: extpacks-build-linux.rsync-out-of-vm extpacks-build-linux.rsync-into-vm extpacks-build-linux.build-it
1388
1389extpacks-build-linux: extpacks-build-linux.rsync-out-of-vm
[34482]1390endif
1391
1392extpacks-build-freebsd.amd64: $(VBOX_EXTPACKS_BUILD_WIN_HOST_FIRST)
[34625]1393#ifeq ($(KBUILD_TARGET).$(KBUILD_TARGET_ARCH),freebsd.amd64)
[71576]1394# + $(TIME) -- $(KMK) $(VBOX_EXTPACKS_BUILD.amd64) all $(VBOX_EXTPACKS_HOST_BUILD_TWEAK)
[34625]1395#else
[40346]1396# $(call VBOX_BLD_VM_MSG_BEGIN,FreeBSD/amd64 extension packs)
[71576]1397# $(TIME) -- ssh vbox@$(VBOX_BLD_VM_FBSD_AMD64_IP) 'cd /mnt/tinderbox/$(VBOX_EXTPACKS_BUILD_SUBDIRNAME) && tools/env.sh --no-wine kmk $(VBOX_EXTPACKS_BUILD.amd64) all '
[40346]1398# $(call VBOX_BLD_VM_MSG_END__,FreeBSD/amd64 extension packs)
[34625]1399#endif
[34482]1400
1401extpacks-build-freebsd.x86: $(VBOX_EXTPACKS_BUILD_WIN_HOST_FIRST)
[34625]1402#ifeq ($(KBUILD_TARGET).$(KBUILD_TARGET_ARCH),freebsd.x86)
[71576]1403# + $(TIME) -- $(KMK) $(VBOX_EXTPACKS_BUILD.x86) all $(VBOX_EXTPACKS_HOST_BUILD_TWEAK)
[34625]1404#else
[40346]1405# $(call VBOX_BLD_VM_MSG_BEGIN,FreeBSD/x86 extension packs)
[71576]1406# $(TIME) -- ssh vbox@$(VBOX_BLD_VM_FBSD_X86_IP) 'cd /mnt/tinderbox/$(VBOX_EXTPACKS_BUILD_SUBDIRNAME) && tools/env.sh --no-wine kmk $(VBOX_EXTPACKS_BUILD.x86) all '
[40346]1407# $(call VBOX_BLD_VM_MSG_END__,FreeBSD/x86 extension packs)
[34625]1408#endif
[34482]1409
1410extpacks-build-darwin.amd64: $(VBOX_EXTPACKS_BUILD_WIN_HOST_FIRST)
1411ifeq ($(KBUILD_TARGET).$(KBUILD_TARGET_ARCH),darwin.amd64)
[71576]1412 + $(TIME) -- $(KMK) $(VBOX_EXTPACKS_BUILD.amd64) all $(VBOX_EXTPACKS_HOST_BUILD_TWEAK)
[34482]1413else
[40346]1414 $(call VBOX_BLD_VM_MSG_BEGIN,Darwin/amd64 extension packs)
[71576]1415 $(TIME) -- $(call VBOX_RSYNC_IN_FN,darwin,amd64) . $(VBOX_BLD_VM_DARWIN_AMD64_IP):/Users/vbox/tinderbox/$(VBOX_EXTPACKS_BUILD_SUBDIRNAME)
[74235]1416 $(TIME) -- ssh vbox@$(VBOX_BLD_VM_DARWIN_AMD64_IP) 'PATH=$$PATH:/opt/local/bin; cd /Users/vbox/tinderbox/$(VBOX_EXTPACKS_BUILD_SUBDIRNAME) && KBUILD_HOST_ARCH=amd64 tools/env.sh --no-wine kmk $(VBOX_EXTPACKS_BUILD.amd64) all '
[71576]1417 $(TIME) -- rsync -am -v --delete $(VBOX_BLD_VM_DARWIN_AMD64_IP):/Users/vbox/tinderbox/$(VBOX_EXTPACKS_BUILD_SUBDIRNAME)/out/darwin.amd64 out/
[40346]1418 $(call VBOX_BLD_VM_MSG_END__,Darwin/amd64 extension packs)
[34482]1419endif
1420
1421extpacks-packing:
[34484]1422 + $(KMK) VBOX_ONLY_EXTPACKS=1 \
[57155]1423 VBOX_WITH_EXTPACK_OS_ARCHS="darwin.amd64 linux.amd64 linux.x86 solaris.amd64 win.amd64 win.x86" \
[34484]1424 packing
[34622]1425# +++ freebsd.amd64 freebsd.x86 os2.x86 ^^^
[34482]1426
1427.PHONY: \
1428 extpacks-build-win.x86 \
1429 extpacks-build-win.amd64 \
1430 extpacks-build-solaris.amd64 \
1431 extpacks-build-os2.x86 \
[52628]1432 extpacks-build-linux \
[34482]1433 extpacks-build-linux.amd64 \
1434 extpacks-build-linux.x86 \
1435 extpacks-build-freebsd.amd64 \
1436 extpacks-build-freebsd.x86 \
1437 extpacks-build-darwin.amd64 \
1438 extpacks-packing
1439
1440
1441#
[27014]1442# Build the test suite, all of it.
1443#
1444# This is currently tailored (hardcoded) for the additions build box just like
1445# the additions build above, which it in fact is a copy of.
1446#
[51346]1447validationkit-fetch:
1448 + $(KMK) -C tools fetch VBOX_ONLY_VALIDATIONKIT=1
1449 + $(KMK) -C tools fetch KBUILD_TARGET_ARCH=amd64 KBUILD_TARGET=darwin BUILD_TARGET_ARCH=amd64 BUILD_TARGET=darwin VBOX_ONLY_VALIDATIONKIT=1
1450 + $(KMK) -C tools fetch KBUILD_TARGET_ARCH=x86 KBUILD_TARGET=darwin BUILD_TARGET_ARCH=x86 BUILD_TARGET=darwin VBOX_ONLY_VALIDATIONKIT=1
1451# + $(KMK) -C tools fetch KBUILD_TARGET_ARCH=amd64 KBUILD_TARGET=freebsd BUILD_TARGET_ARCH=amd64 BUILD_TARGET=freebsd VBOX_ONLY_VALIDATIONKIT=1
1452# + $(KMK) -C tools fetch KBUILD_TARGET_ARCH=x86 KBUILD_TARGET=freebsd BUILD_TARGET_ARCH=x86 BUILD_TARGET=freebsd VBOX_ONLY_VALIDATIONKIT=1
1453 + $(KMK) -C tools fetch KBUILD_TARGET_ARCH=amd64 KBUILD_TARGET=linux BUILD_TARGET_ARCH=amd64 BUILD_TARGET=linux VBOX_ONLY_VALIDATIONKIT=1
1454 + $(KMK) -C tools fetch KBUILD_TARGET_ARCH=x86 KBUILD_TARGET=linux BUILD_TARGET_ARCH=x86 BUILD_TARGET=linux VBOX_ONLY_VALIDATIONKIT=1
1455 + $(KMK) -C tools fetch KBUILD_TARGET_ARCH=x86 KBUILD_TARGET=os2 BUILD_TARGET_ARCH=x86 BUILD_TARGET=os2 VBOX_ONLY_VALIDATIONKIT=1
1456 + $(KMK) -C tools fetch KBUILD_TARGET_ARCH=amd64 KBUILD_TARGET=solaris BUILD_TARGET_ARCH=amd64 BUILD_TARGET=solaris VBOX_ONLY_VALIDATIONKIT=1
1457 + $(KMK) -C tools fetch KBUILD_TARGET_ARCH=x86 KBUILD_TARGET=solaris BUILD_TARGET_ARCH=x86 BUILD_TARGET=solaris VBOX_ONLY_VALIDATIONKIT=1
1458 + $(KMK) -C tools fetch KBUILD_TARGET_ARCH=amd64 KBUILD_TARGET=win BUILD_TARGET_ARCH=amd64 BUILD_TARGET=win VBOX_ONLY_VALIDATIONKIT=1
1459 + $(KMK) -C tools fetch KBUILD_TARGET_ARCH=x86 KBUILD_TARGET=win BUILD_TARGET_ARCH=x86 BUILD_TARGET=win VBOX_ONLY_VALIDATIONKIT=1
[27014]1460
1461
[51346]1462validationkit-build: \
1463 validationkit-build-rsync-into-vms \
1464 validationkit-build-solaris.amd64 \
1465 validationkit-build-solaris.x86 \
1466 validationkit-build-win.x86 \
1467 validationkit-build-win.amd64 \
1468 validationkit-build-os2.x86 \
[52851]1469 validationkit-build-linux \
[51346]1470 validationkit-build-freebsd.amd64 \
1471 validationkit-build-freebsd.x86 \
1472 validationkit-build-darwin.amd64 \
1473 validationkit-build-darwin.x86
[48962]1474
[51346]1475validationkit-build-rsync-into-vms: \
1476 validationkit-build-solaris.rsync-into-vm \
[52851]1477 validationkit-build-os2.rsync-into-vm \
1478 validationkit-build-linux.rsync-into-vm
[44428]1479 $(call MSG_L1,Rsynced the sources + tools into the VMs.)
[51346]1480.NOTPARALLEL: validationkit-build-rsync-into-vms
[52852]1481.PHONY: validationkit-build-rsync-into-vms
[27014]1482
[48962]1483
[51346]1484VBOX_VALIDATIONKIT_BUILD.amd64 = VBOX_ONLY_VALIDATIONKIT=1 \
[27014]1485 KBUILD_TYPE=$(KBUILD_TYPE) BUILD_TYPE=$(KBUILD_TYPE) \
1486 KBUILD_TARGET_ARCH=amd64 BUILD_TARGET_ARCH=amd64 \
1487 VBOX_SVN_REV=$(VBOX_SVN_REV)
1488
[51346]1489VBOX_VALIDATIONKIT_BUILD.x86 = VBOX_ONLY_VALIDATIONKIT=1 \
[27014]1490 KBUILD_TYPE=$(KBUILD_TYPE) BUILD_TYPE=$(KBUILD_TYPE) \
1491 KBUILD_TARGET_ARCH=x86 BUILD_TARGET_ARCH=x86 \
1492 VBOX_SVN_REV=$(VBOX_SVN_REV)
1493
[51346]1494# Automatically determine the Validation Kit build subdir name. Used for figuring
[27014]1495# out directory names inside the test suite building VMs.
[51346]1496VBOX_VALIDATIONKIT_BUILD_SUBDIRNAME := $(lastword $(subst /, ,$(PATH_ROOT)))
[27014]1497
1498# When building in parallel on a Windows host, make sure we finish the host
1499# bit before kicking off any UNIX guest or we'll run into file sharing issues.
1500ifeq ($(KBUILD_TARGET),win)
[51346]1501VBOX_VALIDATIONKIT_BUILD_WIN_HOST_FIRST = validationkit-build-win.x86 validationkit-build-win.amd64
[27014]1502else
[51346]1503VBOX_VALIDATIONKIT_BUILD_WIN_HOST_FIRST =
[27014]1504endif
1505
[71481]1506validationkit-build-win.amd64:
[27014]1507ifeq ($(KBUILD_TARGET),win)
[71576]1508 + $(TIME) -- $(KMK) $(VBOX_VALIDATIONKIT_BUILD.amd64) all $(VBOX_VALIDATIONKIT_HOST_BUILD_TWEAK)
[27014]1509else
[51346]1510 $(call VBOX_BLD_VM_MSG_BEGIN,Windows/amd64 Validation Kit)
[71576]1511 $(TIME) -- ssh vbox@$(VBOX_BLD_VM_WIN_X86_IP) 'cd e:/$(VBOX_VALIDATIONKIT_BUILD_SUBDIRNAME) && tools/env.sh kmk $(VBOX_VALIDATIONKIT_BUILD.amd64) all '
[51346]1512 $(call VBOX_BLD_VM_MSG_END__,Windows/amd64 Validation Kit)
[27014]1513endif
1514
[51346]1515validationkit-build-win.x86:
[27014]1516ifeq ($(KBUILD_TARGET),win)
[71576]1517 + $(TIME) -- $(KMK) $(VBOX_VALIDATIONKIT_BUILD.x86) all $(VBOX_VALIDATIONKIT_HOST_BUILD_TWEAK)
[27014]1518else
[51346]1519 $(call VBOX_BLD_VM_MSG_BEGIN,Windows/x86 Validation Kit)
[71576]1520 $(TIME) -- ssh vbox@$(VBOX_BLD_VM_WIN_AMD64_IP) 'cd e:/$(VBOX_VALIDATIONKIT_BUILD_SUBDIRNAME) && tools/env.sh kmk $(VBOX_VALIDATIONKIT_BUILD.x86) all '
[51346]1521 $(call VBOX_BLD_VM_MSG_END__,Windows/x86 Validation Kit)
[27014]1522endif
1523
1524ifeq ($(KBUILD_TARGET),solaris)
[51346]1525validationkit-build-solaris.amd64:
[71576]1526 + $(TIME) -- $(KMK) $(VBOX_VALIDATIONKIT_BUILD.amd64) all $(VBOX_VALIDATIONKIT_HOST_BUILD_TWEAK)
[27014]1527
[51346]1528validationkit-build-solaris.x86:
[71576]1529 + $(TIME) -- $(KMK) $(VBOX_VALIDATIONKIT_BUILD.x86) all $(VBOX_VALIDATIONKIT_HOST_BUILD_TWEAK)
[27014]1530
1531else
[51346]1532validationkit-build-solaris.rsync-into-vm: $(VBOX_VALIDATIONKIT_BUILD_WIN_HOST_FIRST)
[71576]1533 $(TIME) -- $(call VBOX_RSYNC_IN_FN,solaris,*) \
[52854]1534 '--exclude=src/VBox/Additions/WINNT/**' \
[52852]1535 '--exclude=src/VBox/Frontends/**' \
1536 '--exclude=src/VBox/VMM/**' \
1537 . $(VBOX_BLD_VM_SOLARIS_IP):/mnt/tinderbox/$(VBOX_VALIDATIONKIT_BUILD_SUBDIRNAME)
[27014]1538
[51346]1539validationkit-build-solaris.build-it: validationkit-build-solaris.rsync-into-vm
1540 $(call VBOX_BLD_VM_MSG_BEGIN,Solaris/amd64 Validation Kit)
[71576]1541 $(TIME) -- ssh vbox@$(VBOX_BLD_VM_SOLARIS_IP) 'cd /mnt/tinderbox/$(VBOX_VALIDATIONKIT_BUILD_SUBDIRNAME) && tools/env.sh --no-wine kmk $(VBOX_VALIDATIONKIT_BUILD.amd64) all '
[51346]1542 $(call VBOX_BLD_VM_MSG_END__,Solaris/amd64 Validation Kit)
1543 $(call VBOX_BLD_VM_MSG_BEGIN,Solaris/x86 Validation Kit)
[71576]1544 $(TIME) -- ssh vbox@$(VBOX_BLD_VM_SOLARIS_IP) 'cd /mnt/tinderbox/$(VBOX_VALIDATIONKIT_BUILD_SUBDIRNAME) && tools/env.sh --no-wine kmk $(VBOX_VALIDATIONKIT_BUILD.x86) all '
[51346]1545 $(call VBOX_BLD_VM_MSG_END__,Solaris/x86 Validation Kit)
[27014]1546
[51346]1547validationkit-build-solaris.rsync-out-of-vm: validationkit-build-solaris.build-it
[71576]1548 $(TIME) -- rsync -a --delete $(VBOX_BLD_VM_SOLARIS_IP):/mnt/tinderbox/$(VBOX_VALIDATIONKIT_BUILD_SUBDIRNAME)/out/solaris.x86 out/
1549 $(TIME) -- rsync -a --delete $(VBOX_BLD_VM_SOLARIS_IP):/mnt/tinderbox/$(VBOX_VALIDATIONKIT_BUILD_SUBDIRNAME)/out/solaris.amd64 out/
[27014]1550
[51346]1551.PHONY: validationkit-build-solaris.rsync-out-of-vm validationkit-build-solaris.rsync-into-vm validationkit-build-solaris.build-it
[27014]1552
[51346]1553validationkit-build-solaris.amd64: validationkit-build-solaris.rsync-out-of-vm
1554validationkit-build-solaris.x86: validationkit-build-solaris.rsync-out-of-vm
[27014]1555endif
1556
[44428]1557ifeq ($(KBUILD_TARGET),os2)
[51346]1558validationkit-build-os2.x86:
[71576]1559 + $(TIME) -- $(KMK) $(VBOX_VALIDATIONKIT_BUILD.x86) all $(VBOX_VALIDATIONKIT_HOST_BUILD_TWEAK)
[51346]1560validationkit-build-os2.rsync-into-vm:
[44428]1561else # !OS/2
[51346]1562validationkit-build-os2.rsync-into-vm:
[71575]1563 -$(VBOX_BLD_VM_OS2_KKILL_STUFF)
[71576]1564 $(TIME) -- $(call VBOX_RSYNC_IN_FN,os2,*) \
[52854]1565 '--exclude=src/VBox/Additions/x11/**' \
1566 '--exclude=src/VBox/Additions/WINNT/**' \
[44428]1567 '--exclude=src/VBox/Frontends/**' \
1568 '--exclude=src/VBox/VMM/**' \
[51346]1569 . rsync://vbox@$(VBOX_BLD_VM_OS2_IP)/tinderbox/$(VBOX_VALIDATIONKIT_BUILD_SUBDIRNAME)
[27014]1570
[51346]1571validationkit-build-os2.build-it: validationkit-build-os2.rsync-into-vm
1572 $(call VBOX_BLD_VM_MSG_BEGIN,OS/2 Validation Kit)
[71576]1573 $(TIME) -- $(REDIRECT_EXT) --stdin-pipe -- rsh -l vbox $(VBOX_BLD_VM_OS2_IP) "cd e:\\tinderbox\\$(VBOX_VALIDATIONKIT_BUILD_SUBDIRNAME) && e: && kbuild\\bin\\os2.x86\\kmk_ash tools\\env.sh --no-wine kmk $(VBOX_VALIDATIONKIT_BUILD.x86) all"
[51346]1574 $(call VBOX_BLD_VM_MSG_END__,OS/2 Validation Kit)
[44428]1575
[51346]1576validationkit-build-os2.rsync-out-of-vm: validationkit-build-os2.build-it
[71575]1577 -$(VBOX_BLD_VM_OS2_KKILL_STUFF)
[71576]1578 $(TIME) -- rsync -v -a --delete rsync://vbox@$(VBOX_BLD_VM_OS2_IP)/tinderbox/$(VBOX_VALIDATIONKIT_BUILD_SUBDIRNAME)/out/os2.x86 ./out
[44428]1579
[51346]1580.PHONY: validationkit-build-os2.rsync-into-vm validationkit-build-os2.rsync-out-of-vm validationkit-build-os2.build-it
[44428]1581
[51346]1582validationkit-build-os2.x86: validationkit-build-os2.rsync-out-of-vm
[44428]1583endif # !OS/2
1584
[52851]1585ifeq ($(KBUILD_TARGET),linux)
1586validationkit-build-linux.amd64:
[71576]1587 + $(TIME) -- $(KMK) $(VBOX_VALIDATIONKIT_BUILD.amd64) all $(VBOX_VALIDATIONKIT_HOST_BUILD_TWEAK)
[52851]1588
1589validationkit-build-linux.x86:
[71576]1590 + $(TIME) -- $(KMK) $(VBOX_VALIDATIONKIT_BUILD.x86) all $(VBOX_VALIDATIONKIT_HOST_BUILD_TWEAK)
[52851]1591
1592validationkit-build-linux: validationkit-build-linux.x86 validationkit-build-linux.amd64
[27014]1593else
[52851]1594validationkit-build-linux.rsync-into-vm: $(VBOX_VALIDATIONKIT_BUILD_WIN_HOST_FIRST)
[71576]1595 $(TIME) -- $(call VBOX_RSYNC_IN_FN,linux,*) \
[52854]1596 '--exclude=src/VBox/Additions/WINNT/**' \
[52852]1597 '--exclude=src/VBox/Frontends/**' \
1598 '--exclude=src/VBox/VMM/**' \
1599 . $(VBOX_BLD_VM_LNX_IP):/mnt/tinderbox/$(VBOX_VALIDATIONKIT_BUILD_SUBDIRNAME)
[52851]1600
1601validationkit-build-linux.build-it: validationkit-build-linux.rsync-into-vm
[51346]1602 $(call VBOX_BLD_VM_MSG_BEGIN,Linux/amd64 Validation Kit)
[71576]1603 $(TIME) -- ssh vbox@$(VBOX_BLD_VM_LNX_IP) 'dchroot -c debian-4.0-amd64 "cd /mnt/tinderbox/$(VBOX_VALIDATIONKIT_BUILD_SUBDIRNAME) && tools/env.sh --no-wine kmk $(VBOX_VALIDATIONKIT_BUILD.amd64) all " '
[51346]1604 $(call VBOX_BLD_VM_MSG_END__,Linux/amd64 Validation Kit)
1605 $(call VBOX_BLD_VM_MSG_BEGIN,Linux/x86 Validation Kit)
[71576]1606 $(TIME) -- ssh vbox@$(VBOX_BLD_VM_LNX_IP) 'linux32 dchroot -c rhel3-i386 "cd /mnt/tinderbox/$(VBOX_VALIDATIONKIT_BUILD_SUBDIRNAME) && tools/env.sh --no-wine kmk $(VBOX_VALIDATIONKIT_BUILD.x86) all " '
[51346]1607 $(call VBOX_BLD_VM_MSG_END__,Linux/x86 Validation Kit)
[52851]1608
1609validationkit-build-linux.rsync-out-of-vm: validationkit-build-linux.build-it
[71576]1610 $(TIME) -- rsync -a --delete $(VBOX_BLD_VM_LNX_IP):/mnt/tinderbox/$(VBOX_VALIDATIONKIT_BUILD_SUBDIRNAME)/out/linux.x86 out/
1611 $(TIME) -- rsync -a --delete $(VBOX_BLD_VM_LNX_IP):/mnt/tinderbox/$(VBOX_VALIDATIONKIT_BUILD_SUBDIRNAME)/out/linux.amd64 out/
[52851]1612
1613.PHONY: validationkit-build-linux.rsync-out-of-vm validationkit-build-linux.rsync-into-vm validationkit-build-linux.build-it
1614
1615validationkit-build-linux: validationkit-build-linux.rsync-out-of-vm
[27014]1616endif
1617
[51346]1618validationkit-build-freebsd.amd64: $(VBOX_VALIDATIONKIT_BUILD_WIN_HOST_FIRST)
[34625]1619#ifeq ($(KBUILD_TARGET).$(KBUILD_TARGET_ARCH),freebsd.amd64)
[71576]1620# + $(TIME) -- $(KMK) $(VBOX_VALIDATIONKIT_BUILD.amd64) all $(VBOX_VALIDATIONKIT_HOST_BUILD_TWEAK)
[34625]1621#else
[51346]1622# $(call VBOX_BLD_VM_MSG_BEGIN,Freebsd/amd64 Validation Kit)
[71576]1623# $(TIME) -- ssh vbox@$(VBOX_BLD_VM_FBSD_AMD64_IP) 'cd /mnt/tinderbox/$(VBOX_VALIDATIONKIT_BUILD_SUBDIRNAME) && tools/env.sh --no-wine kmk $(VBOX_VALIDATIONKIT_BUILD.amd64) all '
[51346]1624# $(call VBOX_BLD_VM_MSG_END__,Freebsd/amd64 Validation Kit)
[34625]1625#endif
[27014]1626
[51346]1627validationkit-build-freebsd.x86: $(VBOX_VALIDATIONKIT_BUILD_WIN_HOST_FIRST)
[34625]1628#ifeq ($(KBUILD_TARGET).$(KBUILD_TARGET_ARCH),freebsd.x86)
[71576]1629# + $(TIME) -- $(KMK) $(VBOX_VALIDATIONKIT_BUILD.x86) all $(VBOX_VALIDATIONKIT_HOST_BUILD_TWEAK)
[34625]1630#else
[51346]1631# $(call VBOX_BLD_VM_MSG_BEGIN,Freebsd/x86 Validation Kit)
[71576]1632# $(TIME) -- ssh vbox@$(VBOX_BLD_VM_FBSD_X86_IP) 'cd /mnt/tinderbox/$(VBOX_VALIDATIONKIT_BUILD_SUBDIRNAME) && tools/env.sh --no-wine kmk $(VBOX_VALIDATIONKIT_BUILD.x86) all '
[51346]1633# $(call VBOX_BLD_VM_MSG_END__,Freebsd/x86 Validation Kit)
[34625]1634#endif
1635
[51346]1636validationkit-build-darwin.amd64: $(VBOX_VALIDATIONKIT_BUILD_WIN_HOST_FIRST)
[34625]1637ifeq ($(KBUILD_TARGET).$(KBUILD_TARGET_ARCH),darwin.amd64)
[71576]1638 + $(TIME) -- $(KMK) $(VBOX_VALIDATIONKIT_BUILD.amd64) all $(VBOX_VALIDATIONKIT_HOST_BUILD_TWEAK)
[34625]1639else
[51346]1640 $(call VBOX_BLD_VM_MSG_BEGIN,Darwin/amd64 Validation Kit)
[71576]1641 $(TIME) -- $(call VBOX_RSYNC_IN_FN,darwin,amd64) . $(VBOX_BLD_VM_DARWIN_AMD64_IP):/Users/vbox/tinderbox/$(VBOX_VALIDATIONKIT_BUILD_SUBDIRNAME)
1642 $(TIME) -- ssh vbox@$(VBOX_BLD_VM_DARWIN_AMD64_IP) 'cd /Users/vbox/tinderbox/$(VBOX_VALIDATIONKIT_BUILD_SUBDIRNAME) && tools/env.sh --no-wine kmk $(VBOX_VALIDATIONKIT_BUILD.amd64) all '
1643 $(TIME) -- rsync -am -v --delete $(VBOX_BLD_VM_DARWIN_AMD64_IP):/Users/vbox/tinderbox/$(VBOX_VALIDATIONKIT_BUILD_SUBDIRNAME)/out/darwin.amd64 out/
[51346]1644 $(call VBOX_BLD_VM_MSG_END__,Darwin/amd64 Validation Kit)
[34625]1645endif
1646
[51346]1647validationkit-build-darwin.x86: $(VBOX_VALIDATIONKIT_BUILD_WIN_HOST_FIRST)
[34625]1648ifeq ($(KBUILD_TARGET).$(KBUILD_TARGET_ARCH),darwin.x86)
[71576]1649 + $(TIME) -- $(KMK) $(VBOX_VALIDATIONKIT_BUILD.x86) all $(VBOX_VALIDATIONKIT_HOST_BUILD_TWEAK)
[34625]1650else
[51346]1651 $(call VBOX_BLD_VM_MSG_BEGIN,Darwin/x86 Validation Kit)
[71576]1652 $(TIME) -- $(call VBOX_RSYNC_IN_FN,darwin,x86) . $(VBOX_BLD_VM_DARWIN_X86_IP):/Users/vbox/tinderbox/$(VBOX_VALIDATIONKIT_BUILD_SUBDIRNAME)
1653 $(TIME) -- ssh vbox@$(VBOX_BLD_VM_DARWIN_X86_IP) 'cd /Users/vbox/tinderbox/$(VBOX_VALIDATIONKIT_BUILD_SUBDIRNAME) && tools/env.sh --no-wine kmk $(VBOX_VALIDATIONKIT_BUILD.x86) all '
1654 $(TIME) -- rsync -am -v --delete $(VBOX_BLD_VM_DARWIN_X86_IP):/Users/vbox/tinderbox/$(VBOX_VALIDATIONKIT_BUILD_SUBDIRNAME)/out/darwin.x86 out/
[51346]1655 $(call VBOX_BLD_VM_MSG_END__,Darwin/x86 Validation Kit)
[34625]1656endif
1657
1658
[51346]1659validationkit-packing:
1660 + $(KMK) VBOX_ONLY_VALIDATIONKIT=1 \
1661 VBOX_WITH_VALIDATIONKIT_PACKING.darwin.amd64=1 \
1662 VBOX_WITH_VALIDATIONKIT_PACKING.darwin.x86=2 \
1663 VBOX_WITH_VALIDATIONKIT_PACKING.freebsd.amd64= \
1664 VBOX_WITH_VALIDATIONKIT_PACKING.freebsd.x86= \
1665 VBOX_WITH_VALIDATIONKIT_PACKING.linux.amd64=1 \
1666 VBOX_WITH_VALIDATIONKIT_PACKING.linux.x86=1 \
1667 VBOX_WITH_VALIDATIONKIT_PACKING.os2.x86=1 \
1668 VBOX_WITH_VALIDATIONKIT_PACKING.solaris.amd64=1 \
1669 VBOX_WITH_VALIDATIONKIT_PACKING.solaris.x86=1 \
1670 VBOX_WITH_VALIDATIONKIT_PACKING.win.amd64=1 \
1671 VBOX_WITH_VALIDATIONKIT_PACKING.win.x86=1 \
[51348]1672 -C src/VBox/ValidationKit \
[51368]1673 $(PATH_OUT)/VBoxValidationKit.zip \
[43633]1674 $(PATH_OUT)/VBoxTestBoxScript.zip
[27014]1675
1676.PHONY: \
[51346]1677 validationkit-build-win.x86 \
1678 validationkit-build-win.amd64 \
1679 validationkit-build-solaris.amd64 \
1680 validationkit-build-solaris.x86 \
1681 validationkit-build-os2.x86 \
[52851]1682 validationkit-build-linux \
[51346]1683 validationkit-build-linux.amd64 \
1684 validationkit-build-linux.x86 \
1685 validationkit-build-freebsd.amd64 \
1686 validationkit-build-freebsd.x86 \
1687 validationkit-build-darwin.amd64 \
1688 validationkit-build-darwin.x86 \
1689 validationkit-packing
[27014]1690
1691
1692#
[23618]1693# Build the EFI firmware, all of it.
1694#
1695efi-fetch:
[48584]1696 + $(KMK) -C tools fetch VBOX_ONLY_EXTPACKS=1
[23618]1697
1698efi-build: $(VBOX_VERSION_HEADER)
[58495]1699 + $(KMK) -C src/VBox/Devices/EFI/Firmware$(VBOX_EFI_FIRMWARE_SUFFIX)
[23618]1700
1701efi-packing:
[58528]1702 + $(KMK) -C src/VBox/Devices/EFI/Firmware$(VBOX_EFI_FIRMWARE_SUFFIX) $(PATH_STAGE)/VBoxEfiFirmware.zip
[23618]1703
[58528]1704
[23618]1705#
[19162]1706# Generate VirtualBox-x.x.x.tar.bz2 (PUEL) zip archives for internal use only
1707# - includes kBuild
[19594]1708# - must be executed on an PUEL checkout
[19162]1709#
1710
1711# the path where to store the zip archive
1712ZIPPATH ?= $(abspath $(PATH_ROOT)/..)
1713# the root directory inside the zip archive
1714ZIPROOT ?= VirtualBox-$(VBOX_VERSION_STRING)
1715# the name of the zip archive
1716ZIPNAME ?= VirtualBox-$(VBOX_VERSION_STRING).zip
1717snapshot-puel:
1718 @$(call MSG_L1,Creating zip $(ZIPPATH)/$(ZIPNAME))
[31889]1719 @if [ ! -r "$(PATH_ROOT)/src/VBox/RDP/server/server.cpp" ]; then \
[19162]1720 echo; \
[31889]1721 echo "Did not find RDP stuff, is this an OSE branch?"; \
[19162]1722 echo; \
1723 exit 1; \
1724 fi
[19163]1725 @if [ -z "$(PASSWORD)" ]; then \
[19162]1726 echo; \
1727 echo "Please specify a password with PASSWORD=..."; \
1728 echo; \
1729 exit 1; \
1730 fi
1731 $(QUIET)$(MKDIR) -p $(ZIPPATH)
1732 $(QUIET)$(RM) -f $(ZIPPATH)/$(ZIPROOT)
[19683]1733 $(QUIET)$(RM) -f $(ZIPPATH)/$(ZIPNAME)
[19162]1734 $(QUIET)$(LN_SYMLINK) $(PATH_ROOT) $(ZIPPATH)/$(ZIPROOT)
1735 $(QUIET)(cd $(ZIPPATH); 7z a \
1736 -l -tzip -mmt=on -mx=7 -p$(PASSWORD) \
1737 -xr!.svn \
[19683]1738 -i!$(ZIPROOT)/Config.kmk \
1739 -i!$(ZIPROOT)/Doxyfile.Core \
1740 -i!$(ZIPROOT)/Makefile.kmk \
1741 -i!$(ZIPROOT)/configure \
1742 -i!$(ZIPROOT)/configure.vbs \
1743 -i!$(ZIPROOT)/doc \
1744 -i!$(ZIPROOT)/include \
1745 -i!$(ZIPROOT)/kBuild \
1746 -i!$(ZIPROOT)/src \
1747 -i!$(ZIPROOT)/tools/env.sh \
1748 -i!$(ZIPROOT)/tools/linux.x86/bin/* \
1749 -i!$(ZIPROOT)/tools/linux.amd64/bin/* \
[19162]1750 -x!$(ZIPROOT)/doc/Devices \
1751 -x!$(ZIPROOT)/doc/\*pdf \
1752 -x!$(ZIPROOT)/doc/VMM \
1753 -x!$(ZIPROOT)/doc/licenses_old \
1754 -x!$(ZIPROOT)/doc/manual/de_DE \
1755 -x!$(ZIPROOT)/doc/manual/fr_FR \
1756 -x!$(ZIPROOT)/src/tests \
[23030]1757 -x!$(ZIPROOT)/src/VBox/Artwork/2008-\* \
[19162]1758 -x!$(ZIPROOT)/src/VBox/Installer/AMI \
1759 -x!$(ZIPROOT)/src/VBox/Installer/Avanquest \
1760 -x!$(ZIPROOT)/src/VBox/Installer/Encore \
1761 -x!$(ZIPROOT)/src/VBox/Installer/linux/debian \
1762 -x!$(ZIPROOT)/src/VBox/Installer/linux/rpm \
[19683]1763 $(ZIPPATH)/$(ZIPNAME))
[19162]1764 $(QUIET)$(RM) $(ZIPPATH)/$(ZIPROOT)
1765
1766
1767#
[16532]1768# Generate ALL the rules.
1769#
[41477]1770include $(FILE_KBUILD_SUB_FOOTER)
[16532]1771
1772
1773#
1774# Generate x86.mac and err.mac.
1775#
1776incs:
[30724]1777 $(SED) -f include/VBox/err.sed --output include/VBox/err.mac include/VBox/err.h
[16532]1778 $(APPEND) include/VBox/err.mac '%include "iprt/err.mac"'
[30724]1779 $(SED) -f include/VBox/err.sed --output include/iprt/err.mac include/iprt/err.h
[37955]1780 $(SED) -f include/VBox/various.sed --output include/iprt/x86.mac include/iprt/x86.h
[40138]1781 $(APPEND) include/iprt/x86.mac '%include "iprt/x86extra.mac"'
[34113]1782 $(SED) -f include/VBox/various.sed --output include/VBox/apic.mac include/VBox/apic.h
[66149]1783 $(SED) -f include/VBox/various.sed --output include/VBox/bios.mac include/VBox/bios.h
[30724]1784 $(SED) -f include/VBox/various.sed --output include/VBox/param.mac include/VBox/param.h
1785 $(SED) -f include/VBox/various.sed --output include/VBox/VMMDevTesting.mac include/VBox/VMMDevTesting.h
[16532]1786
1787
1788#
[39396]1789# Legacy.
[16532]1790#
[39396]1791vslick.h:
1792 $(ECHO) This is now done by gen-slickedit-workspace.sh/cmd.
1793 exit 1
[16532]1794
1795
1796#
1797# Add fetching of the tools to the 'up[date][2]' targets.
1798#
1799up update up2 update2::
1800ifndef VBOX_OSE
1801 +$(MAKE) -C tools fetch
1802else
1803 $(MAKE) -C tools -f Makefile-ose.kmk fetch
1804endif
1805
1806
1807
1808#
1809# Aliases for building the SDK.
1810#
1811.NOTPARALLEL: sdk sdk-fetch
1812sdk:
1813 + $(KMK) VBOX_ONLY_SDK=1 \
1814 pass_bldprogs pass_others pass_installs pass_packing
1815
1816sdk-fetch:
[42307]1817 + $(KMK) VBOX_ONLY_SDK=1 -C tools
[16532]1818
[66918]1819
1820#
1821# Build the essentials to run a VM. Incomplete. Use with care!
1822#
1823quick: \
1824 VBoxRT \
1825 VBoxVMM \
1826 VMMR0 \
1827 VBoxDD \
1828 VBoxDDR0 \
1829 VBoxDD2 \
1830 VBoxDD2R0 \
1831 VBoxC \
1832 VBoxSVC \
1833 $(if-expr defined(VBOX_WITH_RAW_MODE),VMMRC VBoxDDRC VBoxDD2RC,) \
1834 $(if-expr defined(VBOX_WITH_REM),VBoxREM,) \
1835 $(if-expr defined(VBOX_WITH_MIDL_PROXY_STUB) && "$(KBUILD_TARGET)" == "win",VBoxProxyStub,) \
1836 $(if-expr defined(VBOX_WITH_SDS),VBoxSDS,) \
1837 $(if-expr defined(VBOX_WITH_QTGUI),VirtualBox,)
1838
Note: See TracBrowser for help on using the repository browser.

© 2023 Oracle
ContactPrivacy policyTerms of Use