VirtualBox

source: vbox/trunk/Makefile.kmk@ 71586

Last change on this file since 71586 was 71576, checked in by vboxsync, 7 years ago

/Makefile.kmk: Trying to replace VBOX_KMK_TIME with TIME and (hopefully) more sane argument quoting.

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

© 2024 Oracle Support Privacy / Do Not Sell My Info Terms of Use Trademark Policy Automated Access Etiquette