VirtualBox

source: vbox/trunk/Makefile.kmk@ 76658

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

/Makefile.kmk: Make rsync use the same ssh as we do for the command execution. [fix]

  • Property svn:eol-style set to native
  • Property svn:keywords set to Author Date Id Revision
File size: 87.5 KB
Line 
1# $Id: Makefile.kmk 76658 2019-01-06 17:19:46Z vboxsync $
2## @file
3# Top level makefile.
4#
5
6#
7# Copyright (C) 2006-2019 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_NO_PUB)" \
429 $(if $(VBOX_USE_PROXY_FOR_BUILD_SERVER),--default-proxy,)
430 $(MV) -f -- "$@.tmp" "$@"
431 $(TOUCH) -- "$@"
432
433endif
434
435
436#
437# Install staged binaries on platforms where we can't cross
438# compile things.
439#
440ifn1of ($(KBUILD_TARGET), linux win)
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
448 staged-additions_INST = $(INST_ADDITIONS_ISO)
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
466endif # !VBOX_ONLY_ADDITIONS && !VBOX_ONLY_DOCS && !VBOX_ONLY_EXTPACKS && !VBOX_ONLY_VALIDATIONKIT
467
468
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.
472docs:
473else # !VBOX_ONLY_DOCS
474#
475# Generate documentation.
476# (This should be converted into a separate pass or merged with an existing one later.)
477#
478 ifdef VBOX_WITH_ALL_DOXYGEN_TARGETS
479docs: docs.Core
480 endif
481endif # !VBOX_ONLY_DOCS
482
483#
484# The core (VMM+REM+Devices+Main) documentation.
485#
486# This includes so much because we wish to have the complete CFGM
487# and GCFGM lists.
488#
489VBOX_CORE_DOXYFILE_OUTPUT = $(PATH_OUT)/docs/Core
490BLDDIRS += $(VBOX_CORE_DOXYFILE_OUTPUT)
491OTHER_CLEAN += \
492 $(VBOX_CORE_DOXYFILE_OUTPUT)/Doxyfile.Core \
493 $(VBOX_CORE_DOXYFILE_OUTPUT)/Doxyfile.Core.dep
494
495VBOX_CORE_DOXYFILE_INPUT_DIRS = \
496 include/iprt \
497 include/iprt/cpp \
498 include/iprt/crypto \
499 include/iprt/formats \
500 include/iprt/linux \
501 include/iprt/nt \
502 include/iprt/solaris \
503 include/iprt/win \
504 include/iprt/nocrt \
505 include/VBox \
506 include/VBox/vmm \
507 include/VBox/com \
508 include/VBox/ExtPack \
509 include/VBox/HostServices \
510 include/VBox/GuestHost \
511 include/VBox/HGSMI \
512 src/VBox/VMM \
513 src/VBox/VMM/VMMR0 \
514 src/VBox/VMM/VMMRC \
515 src/VBox/VMM/VMMR3 \
516 src/VBox/VMM/VMMAll \
517 src/VBox/VMM/VMMSwitcher \
518 src/VBox/VMM/include \
519 src/VBox/Debugger \
520 src/VBox/Devices \
521 src/VBox/Devices/Audio \
522 src/VBox/Devices/Bus \
523 src/VBox/Devices/Graphics \
524 src/VBox/Devices/Graphics/BIOS \
525 src/VBox/Devices/Graphics/shaderlib \
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 \
543 src/VBox/Main \
544 src/VBox/Main/glue \
545 src/VBox/Main/webservice \
546 src/VBox/Main/xml \
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 \
559 src/VBox/HostServices \
560 src/VBox/HostServices/DragAndDrop \
561 src/VBox/HostServices/GuestControl \
562 src/VBox/HostServices/GuestProperties \
563 src/VBox/HostServices/SharedClipboard \
564 src/VBox/HostServices/SharedFolders \
565 src/VBox/HostServices/SharedOpenGL \
566 src/VBox/HostServices/SharedOpenGL/crserver \
567 src/VBox/HostServices/SharedOpenGL/crserverlib \
568 src/VBox/HostServices/SharedOpenGL/render \
569 src/VBox/HostServices/SharedOpenGL/unpacker \
570 src/VBox/HostServices/auth \
571 src/VBox/HostServices/auth/directoryservice \
572 src/VBox/HostServices/auth/pam \
573 src/VBox/HostServices/auth/simple \
574 src/VBox/HostServices/auth/winlogon \
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 \
582 src/VBox/HostDrivers/VBoxNetFlt \
583 src/VBox/HostDrivers/VBoxNetFlt/darwin \
584 src/VBox/HostDrivers/VBoxNetFlt/linux \
585 src/VBox/HostDrivers/VBoxNetFlt/solaris \
586 src/VBox/HostDrivers/VBoxNetFlt/win \
587 src/VBox/HostDrivers/VBoxNetNat \
588 src/VBox/HostDrivers/VBoxNetNat/darwin \
589 src/VBox/HostDrivers/VBoxNetNat/linux \
590 src/VBox/HostDrivers/VBoxNetNat/solaris \
591 src/VBox/HostDrivers/VBoxNetNat/win \
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 \
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 \
602 src/VBox/HostDrivers/VBoxUSB \
603 src/VBox/HostDrivers/VBoxUSB/darwin \
604 src/VBox/HostDrivers/VBoxUSB/os2 \
605 src/VBox/HostDrivers/VBoxUSB/solaris \
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 \
616 src/VBox/Additions \
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 \
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 \
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 \
661 src/VBox/Additions/common \
662 src/VBox/Additions/common/VBoxControl \
663 src/VBox/Additions/common/VBoxGuest \
664 src/VBox/Additions/common/VBoxGuest/freebsd \
665 src/VBox/Additions/common/VBoxGuest/linux \
666 src/VBox/Additions/common/VBoxGuest/win \
667 src/VBox/Additions/common/VBoxGuestLib \
668 src/VBox/Additions/common/VBoxService \
669 src/VBox/Additions/common/VBoxVideo \
670 src/VBox/Additions/common/crOpenGL \
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 \
675 src/VBox/Additions/common/pam \
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 \
706 src/VBox/NetworkServices \
707 src/VBox/NetworkServices/DHCP \
708 src/VBox/NetworkServices/NAT \
709 src/VBox/NetworkServices/NetLib \
710 src/VBox/Storage \
711 src/VBox/ValidationKit/ \
712 src/VBox/ValidationKit/docs/ \
713 src/VBox/ValidationKit/testdriver/ \
714 src/VBox/ValidationKit/bootsectors/ \
715 src/VBox/ValidationKit/bootsectors/bs3kit/ \
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/ \
746
747# These must come first in order to make things look nice.
748VBOX_CORE_DOXYFILE_INPUT_FIRST =\
749 $(PATH_ROOT)/doc/VBox-doc.c \
750 $(PATH_ROOT)/doc/VBox-CodingGuidelines.cpp \
751 $(PATH_ROOT)/doc/VBox-MakefileGuidelines.cpp \
752 $(PATH_ROOT)/src/VBox/VMM/Docs-CodingGuidelines.cpp \
753 $(PATH_ROOT)/src/VBox/VMM/Docs-RawMode.cpp \
754 $(PATH_ROOT)/include/VBox/cdefs.h \
755 $(PATH_ROOT)/include/VBox/vmm/vmm.h \
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 \
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 \
770 $(PATH_ROOT)/include/VBox/vmm/nem.h \
771 $(PATH_ROOT)/include/VBox/vmm/pdm.h \
772 $(PATH_ROOT)/include/VBox/vmm/pdmifs.h \
773 $(PATH_ROOT)/include/VBox/vmm/pdmaudioifs.h \
774 $(PATH_ROOT)/include/VBox/vmm/pdmnetifs.h \
775 $(PATH_ROOT)/include/VBox/vmm/pdmserialifs.h \
776 $(PATH_ROOT)/include/VBox/vmm/pdmstorageifs.h \
777 $(PATH_ROOT)/include/VBox/vmm/rem.h \
778 $(PATH_ROOT)/include/VBox/vmm/iom.h \
779 $(PATH_ROOT)/include/VBox/vmm/cfgm.h \
780 $(PATH_ROOT)/include/VBox/vmm/gim.h \
781 $(PATH_ROOT)/include/VBox/vmm/tm.h \
782 $(PATH_ROOT)/include/VBox/vmm/csam.h \
783 $(PATH_ROOT)/include/VBox/vmm/ssm.h \
784 \
785 $(PATH_ROOT)/src/VBox/VMM/include/CFGMInternal.h \
786 $(PATH_ROOT)/src/VBox/VMM/include/CPUMInternal.h \
787 $(PATH_ROOT)/src/VBox/VMM/include/DBGFInternal.h \
788 $(PATH_ROOT)/src/VBox/VMM/include/EMInternal.h \
789 $(PATH_ROOT)/src/VBox/VMM/include/HMInternal.h \
790 $(PATH_ROOT)/src/VBox/VMM/include/IEMInternal.h \
791 $(PATH_ROOT)/src/VBox/VMM/include/IOMInternal.h \
792 $(PATH_ROOT)/src/VBox/VMM/include/MMInternal.h \
793 $(PATH_ROOT)/src/VBox/VMM/include/NEMInternal.h \
794 $(PATH_ROOT)/src/VBox/VMM/include/PDMInternal.h \
795 $(PATH_ROOT)/src/VBox/VMM/include/PGMInternal.h \
796 $(PATH_ROOT)/src/VBox/VMM/include/GIMInternal.h \
797 $(PATH_ROOT)/src/VBox/VMM/include/CSAMInternal.h \
798 $(PATH_ROOT)/src/VBox/VMM/include/PATMInternal.h \
799 $(PATH_ROOT)/src/VBox/VMM/include/REMInternal.h \
800 $(PATH_ROOT)/src/VBox/VMM/include/SELMInternal.h \
801 $(PATH_ROOT)/src/VBox/VMM/include/SSMInternal.h \
802 $(PATH_ROOT)/src/VBox/VMM/include/STAMInternal.h \
803 $(PATH_ROOT)/src/VBox/VMM/include/TMInternal.h \
804 $(PATH_ROOT)/src/VBox/VMM/include/TRPMInternal.h \
805 $(PATH_ROOT)/src/VBox/VMM/include/VMInternal.h \
806 $(PATH_ROOT)/src/VBox/VMM/include/VMMInternal.h \
807 \
808 $(PATH_ROOT)/include/VBox/vmm/vm.h \
809 \
810 $(PATH_ROOT)/include/VBox/sup.h \
811 $(PATH_ROOT)/include/VBox/vd.h \
812 $(PATH_ROOT)/include/VBox/types.h \
813 $(PATH_ROOT)/include/VBox/err.h \
814 $(PATH_ROOT)/include/VBox/vmm/cpumdis.h \
815 $(PATH_ROOT)/include/VBox/dbggui.h \
816 $(PATH_ROOT)/include/VBox/dis.h \
817 $(PATH_ROOT)/include/VBox/disopcode.h \
818 $(PATH_ROOT)/include/VBox/intnet.h \
819 $(PATH_ROOT)/include/VBox/settings.h \
820 $(PATH_ROOT)/include/VBox/pci.h \
821 $(PATH_ROOT)/include/VBox/scsi.h \
822 $(PATH_ROOT)/include/VBox/shflsvc.h \
823 $(PATH_ROOT)/include/VBox/hgcmsvc.h \
824 $(PATH_ROOT)/include/VBox/usb.h \
825 $(PATH_ROOT)/include/VBox/vusb.h \
826 \
827 $(PATH_ROOT)/include/VBox/log.h \
828 $(PATH_ROOT)/include/VBox/param.h \
829 $(PATH_ROOT)/include/VBox/version.h \
830 \
831 $(PATH_ROOT)/include/VBox/com/com.h
832
833VBOX_CORE_DOXYFILE_INPUT := \
834 $(filter-out %.cpp.h, $(sort $(wildcard $(addsuffix /*.h, $(VBOX_CORE_DOXYFILE_INPUT_DIRS)))) ) \
835 $(foreach dir, $(VBOX_CORE_DOXYFILE_INPUT_DIRS) \
836 , $(wildcard $(dir)/*.cpp $(dir)/*.c $(dir)/*.m $(dir)/*.mm $(dir)/*.py $(dir)/.asm))
837VBOX_CORE_DOXYFILE_INPUT := \
838 $(VBOX_CORE_DOXYFILE_INPUT_FIRST) \
839 $(sort $(filter-out $(VBOX_CORE_DOXYFILE_INPUT_FIRST), $(VBOX_CORE_DOXYFILE_INPUT)))
840
841# And some some additional stuff.
842VBOX_CORE_DOXYFILE_INPUT += \
843 $(PATH_ROOT)/src/recompiler/VBoxRecompiler.c \
844 $(PATH_ROOT)/src/recompiler/VBoxREMWrapper.cpp
845
846includedep $(VBOX_CORE_DOXYFILE_OUTPUT)/Doxyfile.Core.dep
847
848# Generate the Doxyfile
849$(VBOX_CORE_DOXYFILE_OUTPUT)/Doxyfile.Core: Doxyfile.Core \
850 $(comp-vars VBOX_CORE_DOXYFILE_INPUT,DOXYGEN_CORE_INPUT_PREV,FORCE) \
851 $(comp-vars VBOX_CORE_DOXYFILE_OUTPUT,DOXYGEN_CORE_OUTPUT_PREV,FORCE) \
852 | $$(dir $$@)
853 $(QUIET)$(RM) -f $@ $@.tmp $@.dep
854 $(QUIET)$(CP) -f Doxyfile.Core $@.tmp
855 $(QUIET)$(APPEND) $@.tmp
856 $(QUIET)$(APPEND) $@.tmp "OUTPUT_DIRECTORY = $(VBOX_CORE_DOXYFILE_OUTPUT)"
857 $(QUIET)$(APPEND) $@.tmp "WARN_LOGFILE = $(VBOX_CORE_DOXYFILE_OUTPUT)/errors"
858 $(QUIET)$(APPEND) $@.tmp "INCLUDE_PATH = $(PATH_ROOT)/include $(PATH_ROOT)/src/VBox/VMM $(PATH_ROOT)/src/VBox/Main/include "
859 $(QUIET)$(APPEND) $@.tmp "INCLUDE_FILE_PATTERNS = *.cpp.h"
860 $(QUIET)$(APPEND) $@.tmp "EXCLUDE = " \
861 "$(PATH_ROOT)/src/VBox/Additions/common/crOpenGL/utils.c" \
862 "$(PATH_ROOT)/src/VBox/HostServices/SharedOpenGL/crserver/main.c" \
863 "$(PATH_ROOT)/src/VBox/HostServices/SharedOpenGL/crserverlib/server_main.c" \
864 "$(PATH_ROOT)/src/VBox/HostServices/SharedOpenGL/unpacker/unpack_arrays.c" \
865 "$(PATH_ROOT)/src/VBox/Additions/common/crOpenGL/context.c"
866 $(QUIET)$(APPEND) $@.tmp
867 $(QUIET)$(APPEND) $@.tmp 'INPUT = $(foreach x,$(VBOX_CORE_DOXYFILE_INPUT),\$(NLTAB)$(x))'
868 $(QUIET)$(APPEND) $@.tmp
869 $(QUIET)$(APPEND) $@.tmp "PREDEFINED += $(DEFS) $(DEFS.$(KBUILD_TARGET)) $(DEFS.$(KBUILD_TARGET_ARCH)) $(ARCH_BITS_DEFS)"
870 $(QUIET)$(APPEND) $@.tmp "PREDEFINED += ARCH_BITS=HC_ARCH_BITS R3_ARCH_BITS=HC_ARCH_BITS R0_ARCH_BITS=HC_ARCH_BITS "
871 $(QUIET)$(APPEND) $@.tmp
872 $(QUIET)$(MV) -f $@.tmp $@
873 @$(APPEND) $@.dep "DOXYGEN_CORE_OUTPUT_PREV = $(VBOX_CORE_DOXYFILE_OUTPUT)"
874 @$(APPEND) $@.dep "DOXYGEN_CORE_INPUT_PREV = $(VBOX_CORE_DOXYFILE_INPUT)"
875
876# Do the actual job.
877$(VBOX_CORE_DOXYFILE_OUTPUT)/docs.Core: $(VBOX_CORE_DOXYFILE_OUTPUT)/Doxyfile.Core $$(VBOX_CORE_DOXYFILE_INPUT) \
878 | $(VBOX_CORE_DOXYFILE_OUTPUT)/
879 $(QUIET)$(RM) -f $@
880 $(QUIET)$(RM) -Rf $(VBOX_CORE_DOXYFILE_OUTPUT)/html/
881 doxygen $(VBOX_CORE_DOXYFILE_OUTPUT)/Doxyfile.Core
882 $(SED) -n \
883 -e ':nextwarning' \
884 -e '/^ *$(DOLLAR)/d' \
885 -e '/\/src\/VBox\/Main\/.* warning: documented symbol.*::~.* was not declared or defined/b ignore' \
886 -e '/\/src\/VBox\/Main\/.* warning: explicit link request to.* could not be resolved/b ignore' \
887 -e '/\/src\/VBox\/Additions\/common\/crOpenGL\/.* warning/b ignore' \
888 -e '/\/src\/VBox\/Additions\/x11\/VBoxClient\/seamless-x11\.h.* warning/b ignore' \
889 -e '/\/src\/VBox\/HostDrivers\/Support\/win\/SUPR3HardenedMain-win\.cpp.* warning/b ignore' \
890 -e '/\/src\/VBox\/ValidationKit\/.* warning/b ignore' \
891 \
892 -e '/unable to resolve link to .dtrace_pops_t./b ignore' \
893 \
894 -e 'b end' \
895 -e ':ignore' \
896 -e 'n' \
897 -e '/^[[:space:]]/b ignore' \
898 -e '/^Possible candidates/b ignore' \
899 -e '/^def testmanager::webui::wuicontentbase::__init__/b ignore' \
900 -e 'b nextwarning' \
901 -e ':end' \
902 -e 'p' \
903 --output $(VBOX_CORE_DOXYFILE_OUTPUT)/errors2 \
904 $(VBOX_CORE_DOXYFILE_OUTPUT)/errors
905 $(CAT) $(VBOX_CORE_DOXYFILE_OUTPUT)/errors2
906 $(SED) -e "/[^ ]/q 1" $(VBOX_CORE_DOXYFILE_OUTPUT)/errors2
907 $(APPEND) $@
908
909docs.Core docs.core: $(VBOX_CORE_DOXYFILE_OUTPUT)/docs.Core
910
911#
912# This is a bit odd, but we attach the optional scm check run onto the 'docs' pass
913# so the build box output is less confusing on failure.
914#
915ifeq ($(KBUILD_HOST),$(KBUILD_TARGET))
916 ifdef VBOX_WITH_SCM_CHECK_RUN
917 docs: scm.check.run
918 endif
919 .PHONY: scm.check.run
920 scm.check.run: $(VBOX_PATH_TOOLS)/scm$(HOSTSUFF_EXE)
921 $(REDIRECT) -E VBOX_LOG_FLAGS="disabled" -E VBOX_LOG_DEST="nofile" \
922 $(if-expr "$(KBUILD_HOST)" == "darwin",-E DYLD_FALLBACK_LIBRARY_PATH="$(VBOX_PATH_TOOLS)/..",) -- \
923 $(VBOX_PATH_TOOLS)/scm$(HOSTSUFF_EXE) -qvv --check-run $(PATH_ROOT)
924endif
925
926
927#
928# Combined package build (windows only).
929#
930# The combined package is created by the x86 environment, so we do the amd64
931# packaging in the build phase since it's just a few very slow jobs. We hold
932# back the x86 build until the amd64 packaging starts, to try encourage
933# parallel execution.
934#
935# Note! VBOX_WITH_ADDITIONS_FROM_BUILD_SERVER=1 is required because the additions
936# packing must be done in amd64 mode as it picks files from the x86 build.
937#
938
939VBOX_COMBINED_PACKAGE_DEFS := \
940 VBOX_WITH_COMBINED_PACKAGE=1 \
941 VBOX_WITH_ALL_DOXYGEN_TARGETS= \
942 VBOX_WITH_ADDITIONS_FROM_BUILD_SERVER=1
943
944combined-package-fetch:
945 + $(KMK) -C tools $(VBOX_COMBINED_PACKAGE_DEFS) KBUILD_TARGET_ARCH=amd64 BUILD_TARGET_ARCH=amd64
946 + $(KMK) -C tools $(VBOX_COMBINED_PACKAGE_DEFS) KBUILD_TARGET_ARCH=x86 BUILD_TARGET_ARCH=x86
947
948combined-package-build-amd64:
949 + $(KMK) docs all $(VBOX_COMBINED_PACKAGE_DEFS) KBUILD_TARGET_ARCH=amd64 BUILD_TARGET_ARCH=amd64
950
951combined-package-build-amd64-packing: combined-package-build-amd64
952 + $(KMK) packing $(VBOX_COMBINED_PACKAGE_DEFS) KBUILD_TARGET_ARCH=amd64 BUILD_TARGET_ARCH=amd64
953
954combined-package-build-x86: combined-package-build-amd64
955 + $(KMK) docs all $(VBOX_COMBINED_PACKAGE_DEFS) KBUILD_TARGET_ARCH=x86 BUILD_TARGET_ARCH=x86
956
957combined-package-build: combined-package-build-amd64-packing combined-package-build-x86
958
959combined-package-packing:
960 + $(KMK) packing $(VBOX_COMBINED_PACKAGE_DEFS) KBUILD_TARGET_ARCH=x86 BUILD_TARGET_ARCH=x86
961
962
963
964#
965# Common rsync bits.
966#
967
968
969## Overridable ssh name.
970# On windows build boxes install https://github.com/PowerShell/Win32-OpenSSH/releases
971# and point to it in LocalConfig. (The cygwin ssh frequently segfaults due to
972# termination race or something along those lines.)
973VBOX_SSH ?= ssh
974VBOX_SSH_FOR_RSYNC ?= $(VBOX_SSH)
975
976## Overridable rsh name.
977VBOX_RSYNC ?= rsync --rsh="$(VBOX_SSH_FOR_RSYNC)"
978
979##
980# The basic rsync invocation for syncing the tree into a VM; the source and
981# target specs are missing.
982#
983# @param 1 os name.
984# @param 2 arch or *.
985#
986VBOX_RSYNC_IN_FN = $(VBOX_RSYNC) -a -v --delete --delete-excluded --prune-empty-dirs \
987 --exclude=*.pyc \
988 --exclude=.svn/ \
989 --exclude=doc/Devices/ \
990 --exclude=doc/tg/ \
991 --exclude=doc/vp/ \
992 --exclude=tinderclient.log \
993 --exclude=tools/FetchDir/ \
994 --exclude=webtools/ \
995 --exclude=out/ \
996 $(foreach os,$(filter-out $(1), darwin freebsd linux solaris os2 win), \
997 --exclude=tools/$(os).x86/ \
998 --exclude=tools/$(os).amd64/ )
999
1000#
1001# VM IP addresses.
1002#
1003VBOX_BLD_VM_LNX_IP := 192.168.27.2
1004VBOX_BLD_VM_OS2_IP := 192.168.27.3
1005VBOX_BLD_VM_SOLARIS_IP := 192.168.27.4
1006VBOX_BLD_VM_DARWIN_X86_IP := 192.168.27.5
1007VBOX_BLD_VM_DARWIN_AMD64_IP := 192.168.27.15
1008VBOX_BLD_VM_DARWIN_109_AMD64_IP := 192.168.27.18
1009VBOX_BLD_VM_WIN_X86_IP := 192.168.27.6
1010VBOX_BLD_VM_WIN_AMD64_IP := 192.168.27.16
1011VBOX_BLD_VM_FBSD_X86_IP := 192.168.27.7
1012VBOX_BLD_VM_FBSD_AMD64_IP := 192.168.27.17
1013
1014VBOX_WITH_OS2_ADD_BUILD=1
1015
1016#
1017# For profiling the VM building steps.
1018#
1019if 0
1020 VBOX_BLD_VM_MSG_BEGIN = $(call MSG_L1,Building $1.)
1021 VBOX_BLD_VM_MSG_END__ =
1022else
1023 VBOX_BLD_VM_MSG_BEGIN = @echo "$(date ) - Start building $1."
1024 VBOX_BLD_VM_MSG_END__ = @echo "$(date ) - Done building $1."
1025endif
1026
1027#
1028# For killing old build jobs in the OS/2 VM before rsyncing.
1029#
1030VBOX_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 "
1031
1032
1033#
1034# Build the additions, all of them.
1035#
1036# This is currently tailored (hardcoded) for the additions
1037# build box. Can make it pretty and configurable later.
1038#
1039# The fetching must be done in serial fashion, while the building
1040# should be more flexible wrt to -jN.
1041#
1042additions-fetch:
1043 + $(KMK) -C tools fetch VBOX_ONLY_ADDITIONS=1
1044 + $(KMK) -C tools fetch KBUILD_TARGET_ARCH=amd64 KBUILD_TARGET=darwin BUILD_TARGET_ARCH=amd64 BUILD_TARGET=darwin VBOX_ONLY_ADDITIONS=1 VBOX_DEF_MACOSX_VERSION_MIN=10.7
1045 + $(KMK) -C tools fetch KBUILD_TARGET_ARCH=x86 KBUILD_TARGET=darwin BUILD_TARGET_ARCH=x86 BUILD_TARGET=darwin VBOX_ONLY_ADDITIONS=1 #VBOX_DEF_MACOSX_VERSION_MIN=10.5
1046 + $(KMK) -C tools fetch KBUILD_TARGET_ARCH=amd64 KBUILD_TARGET=linux BUILD_TARGET_ARCH=amd64 BUILD_TARGET=linux VBOX_ONLY_ADDITIONS=1
1047 + $(KMK) -C tools fetch KBUILD_TARGET_ARCH=x86 KBUILD_TARGET=linux BUILD_TARGET_ARCH=x86 BUILD_TARGET=linux VBOX_ONLY_ADDITIONS=1
1048ifdef VBOX_WITH_OS2_ADD_BUILD
1049 + $(KMK) -C tools fetch KBUILD_TARGET_ARCH=x86 KBUILD_TARGET=os2 BUILD_TARGET_ARCH=x86 BUILD_TARGET=os2 VBOX_ONLY_ADDITIONS=1
1050endif
1051 + $(KMK) -C tools fetch KBUILD_TARGET_ARCH=amd64 KBUILD_TARGET=solaris BUILD_TARGET_ARCH=amd64 BUILD_TARGET=solaris VBOX_ONLY_ADDITIONS=1
1052 + $(KMK) -C tools fetch KBUILD_TARGET_ARCH=x86 KBUILD_TARGET=solaris BUILD_TARGET_ARCH=x86 BUILD_TARGET=solaris VBOX_ONLY_ADDITIONS=1
1053 + $(KMK) -C tools fetch KBUILD_TARGET_ARCH=amd64 KBUILD_TARGET=win BUILD_TARGET_ARCH=amd64 BUILD_TARGET=win VBOX_ONLY_ADDITIONS=1
1054 + $(KMK) -C tools fetch KBUILD_TARGET_ARCH=x86 KBUILD_TARGET=win BUILD_TARGET_ARCH=x86 BUILD_TARGET=win VBOX_ONLY_ADDITIONS=1
1055
1056
1057## @todo Currently combined solaris additions building assumes that amd64 is
1058# built first. The windows amd64 additions need some x86 files, so don't change
1059# the order of the windows builds. TODO: Split building and packing for these two VMs.
1060additions-build: \
1061 additions-build-rsync-into-vms \
1062 additions-build-win.x86 \
1063 additions-build-win.amd64 \
1064 additions-build-solaris.amd64 \
1065 additions-build-solaris.x86 \
1066 additions-build-os2.x86 \
1067 additions-build-linux \
1068 additions-build-darwin.x86 \
1069 additions-build-darwin.amd64
1070
1071additions-build-rsync-into-vms: \
1072 additions-build-solaris.rsync-into-vm \
1073 additions-build-os2.rsync-into-vm \
1074 additions-build-darwin.x86.rsync-into-vm \
1075 additions-build-darwin.amd64.rsync-into-vm \
1076 additions-build-linux.rsync-into-vm
1077 $(call MSG_L1,Rsynced the sources + tools into the VMs.)
1078.NOTPARALLEL: additions-build-rsync-into-vms
1079.PHONY: additions-build-rsync-into-vms
1080
1081
1082VBOX_ADDITIONS_BUILD.amd64 = VBOX_ONLY_ADDITIONS=1 VBOX_WITHOUT_ADDITIONS_ISO=1 \
1083 KBUILD_TYPE=$(KBUILD_TYPE) BUILD_TYPE=$(KBUILD_TYPE) \
1084 KBUILD_TARGET_ARCH=amd64 BUILD_TARGET_ARCH=amd64 \
1085 VBOX_SVN_REV=$(VBOX_SVN_REV)
1086
1087VBOX_ADDITIONS_BUILD.x86 = VBOX_ONLY_ADDITIONS=1 VBOX_WITHOUT_ADDITIONS_ISO=1 \
1088 KBUILD_TYPE=$(KBUILD_TYPE) BUILD_TYPE=$(KBUILD_TYPE) \
1089 KBUILD_TARGET_ARCH=x86 BUILD_TARGET_ARCH=x86 \
1090 VBOX_SVN_REV=$(VBOX_SVN_REV)
1091
1092# Automatically determine the additions build subdir name. Used for figuring
1093# out directory names inside the additions building VMs.
1094VBOX_ADDITIONS_BUILD_SUBDIRNAME := $(lastword $(subst /, ,$(PATH_ROOT)))
1095
1096# When building in parallel on a Windows host, make sure we finish the host
1097# bit before kicking off any UNIX guest or we'll run into file sharing issues.
1098ifeq ($(KBUILD_TARGET),win)
1099VBOX_ADDITIONS_BUILD_WIN_HOST_FIRST = #additions-build-win.x86 additions-build-win.amd64
1100else
1101VBOX_ADDITIONS_BUILD_WIN_HOST_FIRST =
1102endif
1103
1104# ASSUMES the 32-bit edition has been built already. Also for serializing VM access.
1105ifeq ($(KBUILD_TARGET),win)
1106additions-build-win.amd64-just-build:
1107 + $(TIME) -- $(KMK) $(VBOX_ADDITIONS_BUILD.amd64) all $(VBOX_ADD_HOST_BUILD_TWEAK)
1108additions-build-win.amd64: additions-build-win.x86 additions-build-win.amd64-just-build
1109 + $(TIME) -- $(KMK) $(VBOX_ADDITIONS_BUILD.amd64) packing
1110else
1111additions-build-win.amd64: additions-build-win.x86
1112 $(call VBOX_BLD_VM_MSG_BEGIN,Windows/amd64 additions build+pack)
1113 $(TIME) -- $(VBOX_SSH) vbox@$(VBOX_BLD_VM_WIN_AMD64_IP) ' cd e:/$(VBOX_ADDITIONS_BUILD_SUBDIRNAME) && tools/env.sh kmk $(VBOX_ADDITIONS_BUILD.amd64) all packing '
1114 $(call VBOX_BLD_VM_MSG_END__,Windows/amd64 additions build+pack)
1115endif
1116
1117ifeq ($(KBUILD_TARGET),win)
1118additions-build-win.x86:
1119 + $(TIME) -- $(KMK) $(VBOX_ADDITIONS_BUILD.x86) all $(VBOX_ADD_HOST_BUILD_TWEAK)
1120 + $(TIME) -- $(KMK) $(VBOX_ADDITIONS_BUILD.x86) packing
1121else
1122additions-build-win.x86:
1123 $(call VBOX_BLD_VM_MSG_BEGIN,Windows/x86 additions build.pack)
1124 $(TIME) -- $(VBOX_SSH) vbox@$(VBOX_BLD_VM_WIN_X86_IP) ' cd e:/$(VBOX_ADDITIONS_BUILD_SUBDIRNAME) && tools/env.sh kmk $(VBOX_ADDITIONS_BUILD.x86) all packing '
1125 $(call VBOX_BLD_VM_MSG_END__,Windows/x86 additions build+pack)
1126endif
1127
1128# ASSUMES the 64-bit edition are built first. This also serializes VM access.
1129ifeq ($(KBUILD_TARGET),solaris)
1130additions-build-solaris.amd64:
1131 + $(TIME) -- $(KMK) $(VBOX_ADDITIONS_BUILD.amd64) all $(VBOX_ADD_HOST_BUILD_TWEAK)
1132 + $(TIME) -- $(KMK) $(VBOX_ADDITIONS_BUILD.amd64) packing
1133
1134additions-build-solaris.x86: additions-build-solaris.amd64
1135 + $(TIME) -- $(KMK) $(VBOX_ADDITIONS_BUILD.x86) VBOX_WITH_COMBINED_SOLARIS_GUEST_PACKAGE=1 all $(VBOX_ADD_HOST_BUILD_TWEAK)
1136 + $(TIME) -- $(KMK) $(VBOX_ADDITIONS_BUILD.x86) VBOX_WITH_COMBINED_SOLARIS_GUEST_PACKAGE=1 packing
1137
1138additions-build-solaris.rsync-into-vm:
1139else
1140additions-build-solaris.rsync-into-vm:
1141 $(TIME) -- $(call VBOX_RSYNC_IN_FN,solaris,*) \
1142 '--exclude=src/VBox/Additions/WINNT/**' \
1143 '--exclude=src/VBox/Frontends/**' \
1144 '--exclude=src/VBox/VMM/**' \
1145 . $(VBOX_BLD_VM_SOLARIS_IP):/mnt/tinderbox/$(VBOX_ADDITIONS_BUILD_SUBDIRNAME)
1146
1147additions-build-solaris.build-it: additions-build-solaris.rsync-into-vm
1148 $(call VBOX_BLD_VM_MSG_BEGIN,Solaris/amd64 additions build+pack)
1149 $(TIME) -- $(VBOX_SSH) 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 '
1150 $(call VBOX_BLD_VM_MSG_END__,Solaris/amd64 additions build+pack)
1151 $(call VBOX_BLD_VM_MSG_BEGIN,Solaris/x86 additions build+pack)
1152 $(TIME) -- $(VBOX_SSH) 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 '
1153 $(call VBOX_BLD_VM_MSG_END__,Solaris/x86 additions build+pack)
1154
1155additions-build-solaris.rsync-out-of-vm: additions-build-solaris.build-it
1156 $(TIME) -- $(VBOX_RSYNC) -a --delete $(VBOX_BLD_VM_SOLARIS_IP):/mnt/tinderbox/$(VBOX_ADDITIONS_BUILD_SUBDIRNAME)/out/solaris.x86 out/
1157 $(TIME) -- $(VBOX_RSYNC) -a --delete $(VBOX_BLD_VM_SOLARIS_IP):/mnt/tinderbox/$(VBOX_ADDITIONS_BUILD_SUBDIRNAME)/out/solaris.amd64 out/
1158
1159.NOTPARALLEL: additions-build-solaris.rsync-into-vm
1160.PHONY: additions-build-solaris.rsync-into-vm additions-build-solaris.rsync-out-of-vm additions-build-solaris.build-it
1161
1162additions-build-solaris.amd64: additions-build-solaris.rsync-out-of-vm
1163additions-build-solaris.x86: additions-build-solaris.rsync-out-of-vm
1164endif
1165
1166ifdef VBOX_WITH_OS2_ADD_BUILD
1167 ifeq ($(KBUILD_TARGET),os2)
1168additions-build-os2.x86:
1169 + $(TIME) -- $(KMK) $(VBOX_ADDITIONS_BUILD.x86) all $(VBOX_ADD_HOST_BUILD_TWEAK)
1170 + $(TIME) -- $(KMK) $(VBOX_ADDITIONS_BUILD.x86) packing
1171
1172additions-build-os2.rsync-into-vm:
1173 else
1174additions-build-os2.rsync-into-vm:
1175 -$(VBOX_BLD_VM_OS2_KKILL_STUFF)
1176 $(TIME) -- $(call VBOX_RSYNC_IN_FN,os2,*) \
1177 '--exclude=src/VBox/Additions/x11/**' \
1178 '--exclude=src/VBox/Additions/WINNT/**' \
1179 '--exclude=src/VBox/Frontends/**' \
1180 '--exclude=src/VBox/VMM/**' \
1181 . rsync://vbox@$(VBOX_BLD_VM_OS2_IP)/tinderbox/$(VBOX_ADDITIONS_BUILD_SUBDIRNAME)
1182
1183additions-build-os2.build-it: #additions-build-os2.rsync-into-vm
1184 $(call VBOX_BLD_VM_MSG_BEGIN,OS/2 additions build+pack)
1185 $(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"
1186 $(call VBOX_BLD_VM_MSG_END__,OS/2 additions build+pack)
1187
1188additions-build-os2.rsync-out-of-vm: additions-build-os2.build-it
1189 -$(VBOX_BLD_VM_OS2_KKILL_STUFF)
1190 $(TIME) -- $(VBOX_RSYNC) -v -a --delete rsync://vbox@$(VBOX_BLD_VM_OS2_IP)/tinderbox/$(VBOX_ADDITIONS_BUILD_SUBDIRNAME)/out/os2.x86 ./out
1191
1192.NOTPARALLEL: additions-build-os2.rsync-into-vm
1193.PHONY: additions-build-os2.rsync-into-vm additions-build-os2.rsync-out-of-vm additions-build-os2.build-it
1194
1195additions-build-os2.x86: additions-build-os2.rsync-out-of-vm
1196 endif
1197#
1198else
1199additions-build-os2.x86:
1200# Dummy
1201endif
1202
1203# Linux
1204ifeq ($(KBUILD_TARGET),linux)
1205additions-build-linux.amd64:
1206 + $(TIME) -- $(KMK) $(VBOX_ADDITIONS_BUILD.amd64) all $(VBOX_ADD_HOST_BUILD_TWEAK)
1207 + $(TIME) -- $(KMK) $(VBOX_ADDITIONS_BUILD.amd64) packing VBOX_WITHOUT_LINUX_GUEST_PACKAGE=1
1208
1209additions-build-linux.x86:
1210 + $(TIME) -- $(KMK) $(VBOX_ADDITIONS_BUILD.x86) all $(VBOX_ADD_HOST_BUILD_TWEAK)
1211 + $(TIME) -- $(KMK) $(VBOX_ADDITIONS_BUILD.x86) packing VBOX_WITHOUT_LINUX_GUEST_PACKAGE=1
1212
1213additions-build-linux: additions-build-linux.x86 additions-build-linux.amd64
1214 + $(TIME) -- $(KMK) $(VBOX_ADDITIONS_BUILD.x86) all $(VBOX_ADD_HOST_BUILD_TWEAK)
1215 + $(TIME) -- $(KMK) $(VBOX_ADDITIONS_BUILD.x86) packing VBOX_WITH_COMBINED_LINUX_GUEST_PACKAGE=1
1216else
1217additions-build-linux.rsync-into-vm:
1218 $(TIME) -- $(call VBOX_RSYNC_IN_FN,linux,*) \
1219 '--exclude=src/VBox/Additions/WINNT/**' \
1220 '--exclude=src/VBox/Frontends/**' \
1221 '--exclude=src/VBox/VMM/**' \
1222 . $(VBOX_BLD_VM_LNX_IP):/mnt/tinderbox/$(VBOX_ADDITIONS_BUILD_SUBDIRNAME)
1223
1224additions-build-linux.build-it: additions-build-linux.rsync-into-vm
1225 ifdef VBOX_WITH_LIGHTDM_GREETER_PACKING
1226 $(call VBOX_BLD_VM_MSG_BEGIN,Linux/amd64 additions/greeter)
1227 $(TIME) -- $(VBOX_SSH) 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 " '
1228 $(call VBOX_BLD_VM_MSG_END__,Linux/amd64 additions/greeter)
1229 endif
1230 $(call VBOX_BLD_VM_MSG_BEGIN,Linux/amd64 additions build+pack)
1231 $(TIME) -- $(VBOX_SSH) 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) " '
1232 $(call VBOX_BLD_VM_MSG_END__,Linux/amd64 additions build+pack)
1233 ifdef VBOX_WITH_LIGHTDM_GREETER_PACKING
1234 $(call VBOX_BLD_VM_MSG_BEGIN,Linux/x86 additions/greeter)
1235 $(TIME) -- $(VBOX_SSH) 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 " '
1236 $(call VBOX_BLD_VM_MSG_END__,Linux/x86 additions/greeter)
1237 endif
1238 $(call VBOX_BLD_VM_MSG_BEGIN,Linux/x86 additions build+pack)
1239 $(TIME) -- $(VBOX_SSH) 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) " '
1240 $(call VBOX_BLD_VM_MSG_END__,Linux/x86 additions build+pack)
1241 $(call VBOX_BLD_VM_MSG_BEGIN,Linux/x86 additions combine)
1242 $(TIME) -- $(VBOX_SSH) 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 " '
1243 $(call VBOX_BLD_VM_MSG_END__,Linux/x86 additions combine)
1244
1245additions-build-linux.rsync-out-of-vm: additions-build-linux.build-it
1246 $(TIME) -- $(VBOX_RSYNC) -a --delete $(VBOX_BLD_VM_LNX_IP):/mnt/tinderbox/$(VBOX_ADDITIONS_BUILD_SUBDIRNAME)/out/linux.x86 out/
1247 $(TIME) -- $(VBOX_RSYNC) -a --delete $(VBOX_BLD_VM_LNX_IP):/mnt/tinderbox/$(VBOX_ADDITIONS_BUILD_SUBDIRNAME)/out/linux.amd64 out/
1248
1249.NOTPARALLEL: additions-build-linux.rsync-into-vm
1250.PHONY: additions-build-linux.rsync-into-vm additions-build-linux.rsync-out-of-vm additions-build-linux.build-it
1251
1252additions-build-linux: additions-build-linux.rsync-out-of-vm
1253endif
1254
1255# Darwin
1256ifeq ($(KBUILD_TARGET),darwin)
1257additions-build-darwin.amd64:
1258 + $(TIME) -- $(KMK) $(VBOX_ADDITIONS_BUILD.amd64) all $(VBOX_ADD_HOST_BUILD_TWEAK)
1259 + $(TIME) -- $(KMK) $(VBOX_ADDITIONS_BUILD.amd64) packing
1260
1261additions-build-darwin.x86:
1262 + $(TIME) -- $(KMK) $(VBOX_ADDITIONS_BUILD.x86) all $(VBOX_ADD_HOST_BUILD_TWEAK)
1263 + $(TIME) -- $(KMK) $(VBOX_ADDITIONS_BUILD.x86) packing
1264
1265additions-build-darwin: additions-build-darwin.amd64 additions-build-darwin.x86
1266.PHONY: additions-build-darwin.amd64 additions-build-darwin.x86
1267else
1268additions-build-darwin.amd64.rsync-into-vm:
1269 $(TIME) -- $(VBOX_SSH) vbox@$(VBOX_BLD_VM_DARWIN_109_AMD64_IP) 'sudo rm -Rf /Users/vbox/tinderbox/$(VBOX_ADDITIONS_BUILD_SUBDIRNAME)/out/'
1270 $(TIME) -- $(call VBOX_RSYNC_IN_FN,darwin,*) \
1271 '--exclude=src/libs/xpcom18a4/**' \
1272 '--exclude=src/libs/curl*/**' \
1273 '--exclude=src/libs/libxml*/**' \
1274 '--exclude=src/libs/libvpx*/**' \
1275 '--exclude=src/libs/libopus*/**' \
1276 '--exclude=src/VBox/Additions/WINNT/**' \
1277 '--exclude=src/VBox/Additions/x11/**' \
1278 '--exclude=src/VBox/Artwork/x11/**' \
1279 '--exclude=src/VBox/Devices/**' \
1280 '--exclude=src/VBox/Disassembler/**' \
1281 '--exclude=src/VBox/ExtPacks/**' \
1282 '--exclude=src/VBox/Frontends/**' \
1283 '--exclude=src/VBox/HostDriver/**' \
1284 '--exclude=src/VBox/HostService/**' \
1285 '--exclude=src/VBox/ImageMounter/**' \
1286 '--exclude=src/VBox/Installer/win/**' \
1287 '--exclude=src/VBox/Main/**' \
1288 '--exclude=src/VBox/NetworkService/**' \
1289 '--exclude=src/VBox/RDP/**' \
1290 '--exclude=src/VBox/Storage/**' \
1291 '--exclude=src/VBox/ValidationKit/**' \
1292 '--exclude=src/VBox/VMM/**' \
1293 '--exclude=src/apps/**' \
1294 '--exclude=src/recompiler/**' \
1295 . $(VBOX_BLD_VM_DARWIN_109_AMD64_IP):/Users/vbox/tinderbox/$(VBOX_ADDITIONS_BUILD_SUBDIRNAME)
1296
1297additions-build-darwin.x86.rsync-into-vm:
1298 $(TIME) -- $(VBOX_SSH) vbox@$(VBOX_BLD_VM_DARWIN_X86_IP) 'sudo rm -Rf /Users/vbox/tinderbox/$(VBOX_ADDITIONS_BUILD_SUBDIRNAME)/out/'
1299 $(TIME) -- $(call VBOX_RSYNC_IN_FN,darwin,*) \
1300 '--exclude=src/libs/xpcom18a4/**' \
1301 '--exclude=src/libs/curl*/**' \
1302 '--exclude=src/libs/libxml*/**' \
1303 '--exclude=src/libs/libvpx*/**' \
1304 '--exclude=src/libs/libopus*/**' \
1305 '--exclude=src/VBox/Additions/WINNT/**' \
1306 '--exclude=src/VBox/Additions/x11/**' \
1307 '--exclude=src/VBox/Artwork/x11/**' \
1308 '--exclude=src/VBox/Devices/**' \
1309 '--exclude=src/VBox/Disassembler/**' \
1310 '--exclude=src/VBox/ExtPacks/**' \
1311 '--exclude=src/VBox/Frontends/**' \
1312 '--exclude=src/VBox/HostDriver/**' \
1313 '--exclude=src/VBox/HostService/**' \
1314 '--exclude=src/VBox/ImageMounter/**' \
1315 '--exclude=src/VBox/Installer/win/**' \
1316 '--exclude=src/VBox/Main/**' \
1317 '--exclude=src/VBox/NetworkService/**' \
1318 '--exclude=src/VBox/RDP/**' \
1319 '--exclude=src/VBox/Storage/**' \
1320 '--exclude=src/VBox/ValidationKit/**' \
1321 '--exclude=src/VBox/VMM/**' \
1322 '--exclude=src/apps/**' \
1323 '--exclude=src/recompiler/**' \
1324 . $(VBOX_BLD_VM_DARWIN_X86_IP):/Users/vbox/tinderbox/$(VBOX_ADDITIONS_BUILD_SUBDIRNAME)
1325
1326additions-build-darwin.amd64.build-it: additions-build-darwin.amd64.rsync-into-vm
1327 $(call VBOX_BLD_VM_MSG_BEGIN,Darwin/amd64 Additions)
1328 $(TIME) -- $(VBOX_SSH) vbox@$(VBOX_BLD_VM_DARWIN_109_AMD64_IP) 'cd /Users/vbox/tinderbox/$(VBOX_ADDITIONS_BUILD_SUBDIRNAME) && tools/env.sh --no-wine kmk $(VBOX_ADDITIONS_BUILD.amd64) all ' # VBOX_DEF_MACOSX_VERSION_MIN=10.7
1329 $(TIME) -- $(VBOX_SSH) vbox@$(VBOX_BLD_VM_DARWIN_109_AMD64_IP) 'cd /Users/vbox/tinderbox/$(VBOX_ADDITIONS_BUILD_SUBDIRNAME) && tools/env.sh --no-wine kmk $(VBOX_ADDITIONS_BUILD.amd64) packing ' # VBOX_DEF_MACOSX_VERSION_MIN=10.7
1330 $(call VBOX_BLD_VM_MSG_END__,Darwin/amd64 Additions)
1331
1332additions-build-darwin.x86.build-it: additions-build-darwin.x86.rsync-into-vm
1333 $(call VBOX_BLD_VM_MSG_BEGIN,Darwin/x86 Additions)
1334 $(TIME) -- $(VBOX_SSH) vbox@$(VBOX_BLD_VM_DARWIN_X86_IP) 'cd /Users/vbox/tinderbox/$(VBOX_ADDITIONS_BUILD_SUBDIRNAME) && tools/env.sh --no-wine kmk $(VBOX_ADDITIONS_BUILD.x86) all ' # VBOX_DEF_MACOSX_VERSION_MIN=10.5
1335# no pkgbuild # $(TIME) -- $(VBOX_SSH) vbox@$(VBOX_BLD_VM_DARWIN_X86_IP) 'cd /Users/vbox/tinderbox/$(VBOX_ADDITIONS_BUILD_SUBDIRNAME) && tools/env.sh --no-wine kmk $(VBOX_ADDITIONS_BUILD.x86) packing ' # VBOX_DEF_MACOSX_VERSION_MIN=10.5
1336 $(call VBOX_BLD_VM_MSG_END__,Darwin/x86 Additions)
1337
1338additions-build-darwin.amd64.rsync-out-of-vm: additions-build-darwin.amd64.build-it
1339 $(TIME) -- $(VBOX_RSYNC) -a -v --delete $(VBOX_BLD_VM_DARWIN_109_AMD64_IP):/Users/vbox/tinderbox/$(VBOX_ADDITIONS_BUILD_SUBDIRNAME)/out/darwin.amd64 out/
1340
1341additions-build-darwin.x86.rsync-out-of-vm: additions-build-darwin.x86.build-it
1342 $(TIME) -- $(VBOX_RSYNC) -a -v --delete $(VBOX_BLD_VM_DARWIN_X86_IP):/Users/vbox/tinderbox/$(VBOX_ADDITIONS_BUILD_SUBDIRNAME)/out/darwin.x86 out/
1343
1344additions-build-darwin.amd64: additions-build-darwin.amd64.rsync-out-of-vm
1345additions-build-darwin.x86: additions-build-darwin.x86.rsync-out-of-vm
1346additions-build-darwin: additions-build-darwin.x86.rsync-out-of-vm additions-build-darwin.amd64.rsync-out-of-vm
1347
1348.PHONY: additions-build-darwin.amd64.rsync-into-vm additions-build-darwin.amd64.rsync-out-of-vm additions-build-darwin.amd64.build-it \
1349 additions-build-darwin.x86.rsync-into-vm additions-build-darwin.x86.rsync-out-of-vm additions-build-darwin.x86.build-it
1350endif
1351
1352
1353additions-packing:
1354 + $(KMK) VBOX_ONLY_ADDITIONS=1 \
1355 VBOX_WITH_ADDITIONS_ISO.darwin.amd64=1 \
1356 VBOX_WITH_ADDITIONS_ISO.darwin.x86= \
1357 VBOX_WITH_ADDITIONS_ISO.freebsd.amd64= \
1358 VBOX_WITH_ADDITIONS_ISO.freebsd.x86= \
1359 VBOX_WITH_ADDITIONS_ISO.linux.amd64= \
1360 VBOX_WITH_ADDITIONS_ISO.linux.x86=1 \
1361 VBOX_WITH_COMBINED_LINUX_GUEST_PACKAGE=1 \
1362 VBOX_WITH_ADDITIONS_ISO.os2.x86=1 \
1363 VBOX_WITH_ADDITIONS_ISO.solaris.amd64=1 \
1364 VBOX_WITH_ADDITIONS_ISO.solaris.x86=1 \
1365 VBOX_WITH_COMBINED_SOLARIS_GUEST_PACKAGE=1 \
1366 VBOX_WITH_ADDITIONS_ISO.win.amd64=1 \
1367 VBOX_WITH_ADDITIONS_ISO.win.x86=1 \
1368 -C src/VBox/Additions \
1369 $(VBOX_PATH_ADDITIONS)/VBoxGuestAdditions.zip
1370
1371.PHONY: \
1372 additions-build-win.x86 \
1373 additions-build-win.amd64 \
1374 additions-build-solaris.amd64 \
1375 additions-build-solaris.x86 \
1376 additions-build-os2.x86 \
1377 additions-build-linux \
1378 additions-build-linux.amd64 \
1379 additions-build-linux.x86 \
1380 additions-build-linux.x86.combined \
1381 additions-build-darwin \
1382 additions-build-darwin.x86 \
1383 additions-build-darwin.amd64 \
1384 additions-packing
1385
1386
1387#
1388# Build the extension packs, all of them.
1389#
1390# This is tailored (hardcoded) for the extension pack build box.
1391#
1392# The fetching must be done in serial fashion, while the building should be
1393# more flexible wrt to -jN.
1394#
1395extpacks-fetch:
1396 + $(KMK) -C tools fetch VBOX_ONLY_EXTPACKS=1
1397 + $(KMK) -C tools fetch KBUILD_TARGET_ARCH=amd64 KBUILD_TARGET=darwin BUILD_TARGET_ARCH=amd64 BUILD_TARGET=darwin VBOX_ONLY_EXTPACKS=1
1398 + $(KMK) -C tools fetch KBUILD_TARGET_ARCH=x86 KBUILD_TARGET=darwin BUILD_TARGET_ARCH=x86 BUILD_TARGET=darwin VBOX_ONLY_EXTPACKS=1
1399# + $(KMK) -C tools fetch KBUILD_TARGET_ARCH=amd64 KBUILD_TARGET=freebsd BUILD_TARGET_ARCH=amd64 BUILD_TARGET=freebsd VBOX_ONLY_EXTPACKS=1
1400# + $(KMK) -C tools fetch KBUILD_TARGET_ARCH=x86 KBUILD_TARGET=freebsd BUILD_TARGET_ARCH=x86 BUILD_TARGET=freebsd VBOX_ONLY_EXTPACKS=1
1401 + $(KMK) -C tools fetch KBUILD_TARGET_ARCH=amd64 KBUILD_TARGET=linux BUILD_TARGET_ARCH=amd64 BUILD_TARGET=linux VBOX_ONLY_EXTPACKS=1
1402 + $(KMK) -C tools fetch KBUILD_TARGET_ARCH=x86 KBUILD_TARGET=linux BUILD_TARGET_ARCH=x86 BUILD_TARGET=linux VBOX_ONLY_EXTPACKS=1
1403# + $(KMK) -C tools fetch KBUILD_TARGET_ARCH=x86 KBUILD_TARGET=os2 BUILD_TARGET_ARCH=x86 BUILD_TARGET=os2 VBOX_ONLY_EXTPACKS=1
1404 + $(KMK) -C tools fetch KBUILD_TARGET_ARCH=amd64 KBUILD_TARGET=solaris BUILD_TARGET_ARCH=amd64 BUILD_TARGET=solaris VBOX_ONLY_EXTPACKS=1
1405 + $(KMK) -C tools fetch KBUILD_TARGET_ARCH=amd64 KBUILD_TARGET=win BUILD_TARGET_ARCH=amd64 BUILD_TARGET=win VBOX_ONLY_EXTPACKS=1
1406 + $(KMK) -C tools fetch KBUILD_TARGET_ARCH=x86 KBUILD_TARGET=win BUILD_TARGET_ARCH=x86 BUILD_TARGET=win VBOX_ONLY_EXTPACKS=1
1407
1408
1409extpacks-build: \
1410 extpacks-build-win.amd64 \
1411 extpacks-build-win.x86 \
1412 extpacks-build-solaris.amd64 \
1413 extpacks-build-os2.x86 \
1414 extpacks-build-linux \
1415 extpacks-build-darwin.amd64 \
1416 extpacks-build-freebsd.amd64 \
1417 extpacks-build-freebsd.x86
1418
1419VBOX_EXTPACKS_BUILD.amd64 = VBOX_ONLY_EXTPACKS=1 \
1420 KBUILD_TYPE=$(KBUILD_TYPE) BUILD_TYPE=$(KBUILD_TYPE) \
1421 KBUILD_TARGET_ARCH=amd64 BUILD_TARGET_ARCH=amd64 \
1422 VBOX_SVN_REV=$(VBOX_SVN_REV)
1423
1424VBOX_EXTPACKS_BUILD.x86 = VBOX_ONLY_EXTPACKS=1 \
1425 KBUILD_TYPE=$(KBUILD_TYPE) BUILD_TYPE=$(KBUILD_TYPE) \
1426 KBUILD_TARGET_ARCH=x86 BUILD_TARGET_ARCH=x86 \
1427 VBOX_SVN_REV=$(VBOX_SVN_REV)
1428
1429# Automatically determine the extpack build subdir name. Used for figuring out
1430# directory names inside the extension pack building VMs.
1431VBOX_EXTPACKS_BUILD_SUBDIRNAME := $(lastword $(subst /, ,$(PATH_ROOT)))
1432
1433# When building in parallel on a Windows host, make sure we finish the host
1434# bit before kicking off any UNIX guest or we'll run into file sharing issues.
1435ifeq ($(KBUILD_TARGET),win)
1436VBOX_EXTPACKS_BUILD_WIN_HOST_FIRST = extpacks-build-win.x86 extpacks-build-win.amd64
1437else
1438VBOX_EXTPACKS_BUILD_WIN_HOST_FIRST =
1439endif
1440
1441extpacks-build-win.amd64:
1442ifeq ($(KBUILD_TARGET),win)
1443 + $(TIME) -- $(KMK) $(VBOX_EXTPACKS_BUILD.amd64) all $(VBOX_EXTPACKS_HOST_BUILD_TWEAK)
1444else
1445 $(call VBOX_BLD_VM_MSG_BEGIN,Windows/amd64 extension packs)
1446 $(TIME) -- $(VBOX_SSH) vbox@$(VBOX_BLD_VM_WIN_AMD64_IP) 'cd e:/$(VBOX_EXTPACKS_BUILD_SUBDIRNAME) && tools/env.sh kmk $(VBOX_EXTPACKS_BUILD.amd64) all '
1447 $(call VBOX_BLD_VM_MSG_END__,Windows/amd64 extension packs)
1448endif
1449
1450extpacks-build-win.x86:
1451ifeq ($(KBUILD_TARGET),win)
1452 + $(TIME) -- $(KMK) $(VBOX_EXTPACKS_BUILD.x86) all $(VBOX_EXTPACKS_HOST_BUILD_TWEAK)
1453else
1454 $(call VBOX_BLD_VM_MSG_BEGIN,Windows/x86 extension packs)
1455 $(TIME) -- $(VBOX_SSH) vbox@$(VBOX_BLD_VM_WIN_X86_IP) 'cd e:/$(VBOX_EXTPACKS_BUILD_SUBDIRNAME) && tools/env.sh kmk $(VBOX_EXTPACKS_BUILD.x86) all '
1456 $(call VBOX_BLD_VM_MSG_END__,Windows/x86 extension packs)
1457endif
1458
1459ifeq ($(KBUILD_TARGET),solaris)
1460extpacks-build-solaris.amd64:
1461 + $(TIME) -- $(KMK) $(VBOX_EXTPACKS_BUILD.amd64) all $(VBOX_EXTPACKS_HOST_BUILD_TWEAK)
1462
1463else
1464# Serialize 32-bit and 64-bit ASSUMING the same VM builds both.
1465extpacks-build-solaris.rsync-into-vm: $(VBOX_EXTPACKS_BUILD_WIN_HOST_FIRST)
1466 $(TIME) -- $(call VBOX_RSYNC_IN_FN,solaris,*) . $(VBOX_BLD_VM_SOLARIS_IP):/mnt/tinderbox/$(VBOX_EXTPACKS_BUILD_SUBDIRNAME)
1467
1468extpacks-build-solaris.build-it: extpacks-build-solaris.rsync-into-vm
1469 $(call VBOX_BLD_VM_MSG_BEGIN,Solaris/amd64 extension packs)
1470 $(TIME) -- $(VBOX_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 '
1471 $(call VBOX_BLD_VM_MSG_END__,Solaris/amd64 extension packs)
1472
1473extpacks-build-solaris.rsync-out-of-vm: extpacks-build-solaris.build-it
1474 $(TIME) -- $(VBOX_RSYNC) -a --delete $(VBOX_BLD_VM_SOLARIS_IP):/mnt/tinderbox/$(VBOX_EXTPACKS_BUILD_SUBDIRNAME)/out/solaris.amd64 out/
1475
1476#.NOTPARALLEL: extpacks-build-solaris.rsync-into-vm
1477.PHONY: extpacks-build-solaris.rsync-out-of-vm extpacks-build-solaris.rsync-into-vm extpacks-build-solaris.build-it
1478
1479extpacks-build-solaris.amd64: extpacks-build-solaris.rsync-out-of-vm
1480endif
1481
1482extpacks-build-os2.x86:
1483#ifeq ($(KBUILD_TARGET),os2)
1484# + $(TIME) -- $(KMK) $(VBOX_EXTPACKS_BUILD.x86) all $(VBOX_EXTPACKS_HOST_BUILD_TWEAK)
1485#else
1486# $(TIME) -- $(VBOX_SSH) vbox@$(VBOX_BLD_VM_OS2_IP) ' cd /mnt/tinderbox/$(VBOX_EXTPACKS_BUILD_SUBDIRNAME) && tools/env.sh --no-wine kmk $(VBOX_EXTPACKS_BUILD.x86) '
1487#endif
1488
1489ifeq ($(KBUILD_TARGET),linux)
1490extpacks-build-linux.amd64: $(VBOX_EXTPACKS_BUILD_WIN_HOST_FIRST)
1491 + $(TIME) -- $(KMK) $(VBOX_EXTPACKS_BUILD.amd64) all $(VBOX_EXTPACKS_HOST_BUILD_TWEAK)
1492
1493extpacks-build-linux.x86: $(VBOX_EXTPACKS_BUILD_WIN_HOST_FIRST)
1494 + $(TIME) -- $(KMK) $(VBOX_EXTPACKS_BUILD.x86) all $(VBOX_EXTPACKS_HOST_BUILD_TWEAK)
1495
1496extpacks-build-linux: extpacks-build-linux.x86 extpacks-build-linux.amd64
1497else
1498# Serialize 32-bit and 64-bit ASSUMING the same VM builds both.
1499extpacks-build-linux.rsync-into-vm: $(VBOX_EXTPACKS_BUILD_WIN_HOST_FIRST)
1500 $(TIME) -- $(call VBOX_RSYNC_IN_FN,linux,*) . $(VBOX_BLD_VM_LNX_IP):/mnt/tinderbox/$(VBOX_EXTPACKS_BUILD_SUBDIRNAME)
1501
1502extpacks-build-linux.build-it: extpacks-build-linux.rsync-into-vm
1503 $(call VBOX_BLD_VM_MSG_BEGIN,Linux/amd64 extension packs)
1504 $(TIME) -- $(VBOX_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 " '
1505 $(call VBOX_BLD_VM_MSG_END__,Linux/amd64 extension packs)
1506 $(call VBOX_BLD_VM_MSG_BEGIN,Linux/x86 extension packs)
1507 $(TIME) -- $(VBOX_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 " '
1508 $(call VBOX_BLD_VM_MSG_END__,Linux/x86 extension packs)
1509
1510extpacks-build-linux.rsync-out-of-vm: extpacks-build-linux.build-it
1511 $(TIME) -- $(VBOX_RSYNC) -a --delete $(VBOX_BLD_VM_LNX_IP):/mnt/tinderbox/$(VBOX_EXTPACKS_BUILD_SUBDIRNAME)/out/linux.x86 out/
1512 $(TIME) -- $(VBOX_RSYNC) -a --delete $(VBOX_BLD_VM_LNX_IP):/mnt/tinderbox/$(VBOX_EXTPACKS_BUILD_SUBDIRNAME)/out/linux.amd64 out/
1513
1514#.NOTPARALLEL: extpacks-build-linux.rsync-into-vm
1515.PHONY: extpacks-build-linux.rsync-out-of-vm extpacks-build-linux.rsync-into-vm extpacks-build-linux.build-it
1516
1517extpacks-build-linux: extpacks-build-linux.rsync-out-of-vm
1518endif
1519
1520extpacks-build-freebsd.amd64: $(VBOX_EXTPACKS_BUILD_WIN_HOST_FIRST)
1521#ifeq ($(KBUILD_TARGET).$(KBUILD_TARGET_ARCH),freebsd.amd64)
1522# + $(TIME) -- $(KMK) $(VBOX_EXTPACKS_BUILD.amd64) all $(VBOX_EXTPACKS_HOST_BUILD_TWEAK)
1523#else
1524# $(call VBOX_BLD_VM_MSG_BEGIN,FreeBSD/amd64 extension packs)
1525# $(TIME) -- $(VBOX_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 '
1526# $(call VBOX_BLD_VM_MSG_END__,FreeBSD/amd64 extension packs)
1527#endif
1528
1529extpacks-build-freebsd.x86: $(VBOX_EXTPACKS_BUILD_WIN_HOST_FIRST)
1530#ifeq ($(KBUILD_TARGET).$(KBUILD_TARGET_ARCH),freebsd.x86)
1531# + $(TIME) -- $(KMK) $(VBOX_EXTPACKS_BUILD.x86) all $(VBOX_EXTPACKS_HOST_BUILD_TWEAK)
1532#else
1533# $(call VBOX_BLD_VM_MSG_BEGIN,FreeBSD/x86 extension packs)
1534# $(TIME) -- $(VBOX_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 '
1535# $(call VBOX_BLD_VM_MSG_END__,FreeBSD/x86 extension packs)
1536#endif
1537
1538extpacks-build-darwin.amd64: $(VBOX_EXTPACKS_BUILD_WIN_HOST_FIRST)
1539ifeq ($(KBUILD_TARGET).$(KBUILD_TARGET_ARCH),darwin.amd64)
1540 + $(TIME) -- $(KMK) $(VBOX_EXTPACKS_BUILD.amd64) all $(VBOX_EXTPACKS_HOST_BUILD_TWEAK)
1541else
1542 $(call VBOX_BLD_VM_MSG_BEGIN,Darwin/amd64 extension packs)
1543 $(TIME) -- $(call VBOX_RSYNC_IN_FN,darwin,amd64) . $(VBOX_BLD_VM_DARWIN_109_AMD64_IP):/Users/vbox/tinderbox/$(VBOX_EXTPACKS_BUILD_SUBDIRNAME)
1544 $(TIME) -- $(VBOX_SSH) vbox@$(VBOX_BLD_VM_DARWIN_109_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 '
1545 $(TIME) -- $(VBOX_RSYNC) -am -v --delete $(VBOX_BLD_VM_DARWIN_109_AMD64_IP):/Users/vbox/tinderbox/$(VBOX_EXTPACKS_BUILD_SUBDIRNAME)/out/darwin.amd64 out/
1546 $(call VBOX_BLD_VM_MSG_END__,Darwin/amd64 extension packs)
1547endif
1548
1549extpacks-packing:
1550 + $(KMK) VBOX_ONLY_EXTPACKS=1 \
1551 VBOX_WITH_EXTPACK_OS_ARCHS="darwin.amd64 linux.amd64 linux.x86 solaris.amd64 win.amd64 win.x86" \
1552 packing
1553# +++ freebsd.amd64 freebsd.x86 os2.x86 ^^^
1554
1555.PHONY: \
1556 extpacks-build-win.x86 \
1557 extpacks-build-win.amd64 \
1558 extpacks-build-solaris.amd64 \
1559 extpacks-build-os2.x86 \
1560 extpacks-build-linux \
1561 extpacks-build-linux.amd64 \
1562 extpacks-build-linux.x86 \
1563 extpacks-build-freebsd.amd64 \
1564 extpacks-build-freebsd.x86 \
1565 extpacks-build-darwin.amd64 \
1566 extpacks-packing
1567
1568
1569#
1570# Build the test suite, all of it.
1571#
1572# This is currently tailored (hardcoded) for the additions build box just like
1573# the additions build above, which it in fact is a copy of.
1574#
1575validationkit-fetch:
1576 + $(KMK) -C tools fetch VBOX_ONLY_VALIDATIONKIT=1
1577 + $(KMK) -C tools fetch KBUILD_TARGET_ARCH=amd64 KBUILD_TARGET=darwin BUILD_TARGET_ARCH=amd64 BUILD_TARGET=darwin VBOX_ONLY_VALIDATIONKIT=1
1578 + $(KMK) -C tools fetch KBUILD_TARGET_ARCH=x86 KBUILD_TARGET=darwin BUILD_TARGET_ARCH=x86 BUILD_TARGET=darwin VBOX_ONLY_VALIDATIONKIT=1
1579# + $(KMK) -C tools fetch KBUILD_TARGET_ARCH=amd64 KBUILD_TARGET=freebsd BUILD_TARGET_ARCH=amd64 BUILD_TARGET=freebsd VBOX_ONLY_VALIDATIONKIT=1
1580# + $(KMK) -C tools fetch KBUILD_TARGET_ARCH=x86 KBUILD_TARGET=freebsd BUILD_TARGET_ARCH=x86 BUILD_TARGET=freebsd VBOX_ONLY_VALIDATIONKIT=1
1581 + $(KMK) -C tools fetch KBUILD_TARGET_ARCH=amd64 KBUILD_TARGET=linux BUILD_TARGET_ARCH=amd64 BUILD_TARGET=linux VBOX_ONLY_VALIDATIONKIT=1
1582 + $(KMK) -C tools fetch KBUILD_TARGET_ARCH=x86 KBUILD_TARGET=linux BUILD_TARGET_ARCH=x86 BUILD_TARGET=linux VBOX_ONLY_VALIDATIONKIT=1
1583 + $(KMK) -C tools fetch KBUILD_TARGET_ARCH=x86 KBUILD_TARGET=os2 BUILD_TARGET_ARCH=x86 BUILD_TARGET=os2 VBOX_ONLY_VALIDATIONKIT=1
1584 + $(KMK) -C tools fetch KBUILD_TARGET_ARCH=amd64 KBUILD_TARGET=solaris BUILD_TARGET_ARCH=amd64 BUILD_TARGET=solaris VBOX_ONLY_VALIDATIONKIT=1
1585 + $(KMK) -C tools fetch KBUILD_TARGET_ARCH=x86 KBUILD_TARGET=solaris BUILD_TARGET_ARCH=x86 BUILD_TARGET=solaris VBOX_ONLY_VALIDATIONKIT=1
1586 + $(KMK) -C tools fetch KBUILD_TARGET_ARCH=amd64 KBUILD_TARGET=win BUILD_TARGET_ARCH=amd64 BUILD_TARGET=win VBOX_ONLY_VALIDATIONKIT=1
1587 + $(KMK) -C tools fetch KBUILD_TARGET_ARCH=x86 KBUILD_TARGET=win BUILD_TARGET_ARCH=x86 BUILD_TARGET=win VBOX_ONLY_VALIDATIONKIT=1
1588
1589
1590validationkit-build: \
1591 validationkit-build-rsync-into-vms \
1592 validationkit-build-solaris.amd64 \
1593 validationkit-build-solaris.x86 \
1594 validationkit-build-win.x86 \
1595 validationkit-build-win.amd64 \
1596 validationkit-build-os2.x86 \
1597 validationkit-build-linux \
1598 validationkit-build-freebsd.amd64 \
1599 validationkit-build-freebsd.x86 \
1600 validationkit-build-darwin.amd64 \
1601 validationkit-build-darwin.x86
1602
1603validationkit-build-rsync-into-vms: \
1604 validationkit-build-solaris.rsync-into-vm \
1605 validationkit-build-os2.rsync-into-vm \
1606 validationkit-build-linux.rsync-into-vm
1607 $(call MSG_L1,Rsynced the sources + tools into the VMs.)
1608.NOTPARALLEL: validationkit-build-rsync-into-vms
1609.PHONY: validationkit-build-rsync-into-vms
1610
1611
1612VBOX_VALIDATIONKIT_BUILD.amd64 = VBOX_ONLY_VALIDATIONKIT=1 \
1613 KBUILD_TYPE=$(KBUILD_TYPE) BUILD_TYPE=$(KBUILD_TYPE) \
1614 KBUILD_TARGET_ARCH=amd64 BUILD_TARGET_ARCH=amd64 \
1615 VBOX_SVN_REV=$(VBOX_SVN_REV)
1616
1617VBOX_VALIDATIONKIT_BUILD.x86 = VBOX_ONLY_VALIDATIONKIT=1 \
1618 KBUILD_TYPE=$(KBUILD_TYPE) BUILD_TYPE=$(KBUILD_TYPE) \
1619 KBUILD_TARGET_ARCH=x86 BUILD_TARGET_ARCH=x86 \
1620 VBOX_SVN_REV=$(VBOX_SVN_REV)
1621
1622# Automatically determine the Validation Kit build subdir name. Used for figuring
1623# out directory names inside the test suite building VMs.
1624VBOX_VALIDATIONKIT_BUILD_SUBDIRNAME := $(lastword $(subst /, ,$(PATH_ROOT)))
1625
1626# When building in parallel on a Windows host, make sure we finish the host
1627# bit before kicking off any UNIX guest or we'll run into file sharing issues.
1628ifeq ($(KBUILD_TARGET),win)
1629VBOX_VALIDATIONKIT_BUILD_WIN_HOST_FIRST = validationkit-build-win.x86 validationkit-build-win.amd64
1630else
1631VBOX_VALIDATIONKIT_BUILD_WIN_HOST_FIRST =
1632endif
1633
1634validationkit-build-win.amd64:
1635ifeq ($(KBUILD_TARGET),win)
1636 + $(TIME) -- $(KMK) $(VBOX_VALIDATIONKIT_BUILD.amd64) all $(VBOX_VALIDATIONKIT_HOST_BUILD_TWEAK)
1637else
1638 $(call VBOX_BLD_VM_MSG_BEGIN,Windows/amd64 Validation Kit)
1639 $(TIME) -- $(VBOX_SSH) vbox@$(VBOX_BLD_VM_WIN_X86_IP) 'cd e:/$(VBOX_VALIDATIONKIT_BUILD_SUBDIRNAME) && tools/env.sh kmk $(VBOX_VALIDATIONKIT_BUILD.amd64) all '
1640 $(call VBOX_BLD_VM_MSG_END__,Windows/amd64 Validation Kit)
1641endif
1642
1643validationkit-build-win.x86:
1644ifeq ($(KBUILD_TARGET),win)
1645 + $(TIME) -- $(KMK) $(VBOX_VALIDATIONKIT_BUILD.x86) all $(VBOX_VALIDATIONKIT_HOST_BUILD_TWEAK)
1646else
1647 $(call VBOX_BLD_VM_MSG_BEGIN,Windows/x86 Validation Kit)
1648 $(TIME) -- $(VBOX_SSH) vbox@$(VBOX_BLD_VM_WIN_AMD64_IP) 'cd e:/$(VBOX_VALIDATIONKIT_BUILD_SUBDIRNAME) && tools/env.sh kmk $(VBOX_VALIDATIONKIT_BUILD.x86) all '
1649 $(call VBOX_BLD_VM_MSG_END__,Windows/x86 Validation Kit)
1650endif
1651
1652ifeq ($(KBUILD_TARGET),solaris)
1653validationkit-build-solaris.amd64:
1654 + $(TIME) -- $(KMK) $(VBOX_VALIDATIONKIT_BUILD.amd64) all $(VBOX_VALIDATIONKIT_HOST_BUILD_TWEAK)
1655
1656validationkit-build-solaris.x86:
1657 + $(TIME) -- $(KMK) $(VBOX_VALIDATIONKIT_BUILD.x86) all $(VBOX_VALIDATIONKIT_HOST_BUILD_TWEAK)
1658
1659else
1660validationkit-build-solaris.rsync-into-vm: $(VBOX_VALIDATIONKIT_BUILD_WIN_HOST_FIRST)
1661 $(TIME) -- $(call VBOX_RSYNC_IN_FN,solaris,*) \
1662 '--exclude=src/VBox/Additions/WINNT/**' \
1663 '--exclude=src/VBox/Frontends/**' \
1664 '--exclude=src/VBox/VMM/**' \
1665 . $(VBOX_BLD_VM_SOLARIS_IP):/mnt/tinderbox/$(VBOX_VALIDATIONKIT_BUILD_SUBDIRNAME)
1666
1667validationkit-build-solaris.build-it: validationkit-build-solaris.rsync-into-vm
1668 $(call VBOX_BLD_VM_MSG_BEGIN,Solaris/amd64 Validation Kit)
1669 $(TIME) -- $(VBOX_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 '
1670 $(call VBOX_BLD_VM_MSG_END__,Solaris/amd64 Validation Kit)
1671 $(call VBOX_BLD_VM_MSG_BEGIN,Solaris/x86 Validation Kit)
1672 $(TIME) -- $(VBOX_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 '
1673 $(call VBOX_BLD_VM_MSG_END__,Solaris/x86 Validation Kit)
1674
1675validationkit-build-solaris.rsync-out-of-vm: validationkit-build-solaris.build-it
1676 $(TIME) -- $(VBOX_RSYNC) -a --delete $(VBOX_BLD_VM_SOLARIS_IP):/mnt/tinderbox/$(VBOX_VALIDATIONKIT_BUILD_SUBDIRNAME)/out/solaris.x86 out/
1677 $(TIME) -- $(VBOX_RSYNC) -a --delete $(VBOX_BLD_VM_SOLARIS_IP):/mnt/tinderbox/$(VBOX_VALIDATIONKIT_BUILD_SUBDIRNAME)/out/solaris.amd64 out/
1678
1679.PHONY: validationkit-build-solaris.rsync-out-of-vm validationkit-build-solaris.rsync-into-vm validationkit-build-solaris.build-it
1680
1681validationkit-build-solaris.amd64: validationkit-build-solaris.rsync-out-of-vm
1682validationkit-build-solaris.x86: validationkit-build-solaris.rsync-out-of-vm
1683endif
1684
1685ifeq ($(KBUILD_TARGET),os2)
1686validationkit-build-os2.x86:
1687 + $(TIME) -- $(KMK) $(VBOX_VALIDATIONKIT_BUILD.x86) all $(VBOX_VALIDATIONKIT_HOST_BUILD_TWEAK)
1688validationkit-build-os2.rsync-into-vm:
1689else # !OS/2
1690validationkit-build-os2.rsync-into-vm:
1691 -$(VBOX_BLD_VM_OS2_KKILL_STUFF)
1692 $(TIME) -- $(call VBOX_RSYNC_IN_FN,os2,*) \
1693 '--exclude=src/VBox/Additions/x11/**' \
1694 '--exclude=src/VBox/Additions/WINNT/**' \
1695 '--exclude=src/VBox/Frontends/**' \
1696 '--exclude=src/VBox/VMM/**' \
1697 . rsync://vbox@$(VBOX_BLD_VM_OS2_IP)/tinderbox/$(VBOX_VALIDATIONKIT_BUILD_SUBDIRNAME)
1698
1699validationkit-build-os2.build-it: validationkit-build-os2.rsync-into-vm
1700 $(call VBOX_BLD_VM_MSG_BEGIN,OS/2 Validation Kit)
1701 $(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"
1702 $(call VBOX_BLD_VM_MSG_END__,OS/2 Validation Kit)
1703
1704validationkit-build-os2.rsync-out-of-vm: validationkit-build-os2.build-it
1705 -$(VBOX_BLD_VM_OS2_KKILL_STUFF)
1706 $(TIME) -- $(VBOX_RSYNC) -v -a --delete rsync://vbox@$(VBOX_BLD_VM_OS2_IP)/tinderbox/$(VBOX_VALIDATIONKIT_BUILD_SUBDIRNAME)/out/os2.x86 ./out
1707
1708.PHONY: validationkit-build-os2.rsync-into-vm validationkit-build-os2.rsync-out-of-vm validationkit-build-os2.build-it
1709
1710validationkit-build-os2.x86: validationkit-build-os2.rsync-out-of-vm
1711endif # !OS/2
1712
1713ifeq ($(KBUILD_TARGET),linux)
1714validationkit-build-linux.amd64:
1715 + $(TIME) -- $(KMK) $(VBOX_VALIDATIONKIT_BUILD.amd64) all $(VBOX_VALIDATIONKIT_HOST_BUILD_TWEAK)
1716
1717validationkit-build-linux.x86:
1718 + $(TIME) -- $(KMK) $(VBOX_VALIDATIONKIT_BUILD.x86) all $(VBOX_VALIDATIONKIT_HOST_BUILD_TWEAK)
1719
1720validationkit-build-linux: validationkit-build-linux.x86 validationkit-build-linux.amd64
1721else
1722validationkit-build-linux.rsync-into-vm: $(VBOX_VALIDATIONKIT_BUILD_WIN_HOST_FIRST)
1723 $(TIME) -- $(call VBOX_RSYNC_IN_FN,linux,*) \
1724 '--exclude=src/VBox/Additions/WINNT/**' \
1725 '--exclude=src/VBox/Frontends/**' \
1726 '--exclude=src/VBox/VMM/**' \
1727 . $(VBOX_BLD_VM_LNX_IP):/mnt/tinderbox/$(VBOX_VALIDATIONKIT_BUILD_SUBDIRNAME)
1728
1729validationkit-build-linux.build-it: validationkit-build-linux.rsync-into-vm
1730 $(call VBOX_BLD_VM_MSG_BEGIN,Linux/amd64 Validation Kit)
1731 $(TIME) -- $(VBOX_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 " '
1732 $(call VBOX_BLD_VM_MSG_END__,Linux/amd64 Validation Kit)
1733 $(call VBOX_BLD_VM_MSG_BEGIN,Linux/x86 Validation Kit)
1734 $(TIME) -- $(VBOX_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 " '
1735 $(call VBOX_BLD_VM_MSG_END__,Linux/x86 Validation Kit)
1736
1737validationkit-build-linux.rsync-out-of-vm: validationkit-build-linux.build-it
1738 $(TIME) -- $(VBOX_RSYNC) -a --delete $(VBOX_BLD_VM_LNX_IP):/mnt/tinderbox/$(VBOX_VALIDATIONKIT_BUILD_SUBDIRNAME)/out/linux.x86 out/
1739 $(TIME) -- $(VBOX_RSYNC) -a --delete $(VBOX_BLD_VM_LNX_IP):/mnt/tinderbox/$(VBOX_VALIDATIONKIT_BUILD_SUBDIRNAME)/out/linux.amd64 out/
1740
1741.PHONY: validationkit-build-linux.rsync-out-of-vm validationkit-build-linux.rsync-into-vm validationkit-build-linux.build-it
1742
1743validationkit-build-linux: validationkit-build-linux.rsync-out-of-vm
1744endif
1745
1746validationkit-build-freebsd.amd64: $(VBOX_VALIDATIONKIT_BUILD_WIN_HOST_FIRST)
1747#ifeq ($(KBUILD_TARGET).$(KBUILD_TARGET_ARCH),freebsd.amd64)
1748# + $(TIME) -- $(KMK) $(VBOX_VALIDATIONKIT_BUILD.amd64) all $(VBOX_VALIDATIONKIT_HOST_BUILD_TWEAK)
1749#else
1750# $(call VBOX_BLD_VM_MSG_BEGIN,Freebsd/amd64 Validation Kit)
1751# $(TIME) -- $(VBOX_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 '
1752# $(call VBOX_BLD_VM_MSG_END__,Freebsd/amd64 Validation Kit)
1753#endif
1754
1755validationkit-build-freebsd.x86: $(VBOX_VALIDATIONKIT_BUILD_WIN_HOST_FIRST)
1756#ifeq ($(KBUILD_TARGET).$(KBUILD_TARGET_ARCH),freebsd.x86)
1757# + $(TIME) -- $(KMK) $(VBOX_VALIDATIONKIT_BUILD.x86) all $(VBOX_VALIDATIONKIT_HOST_BUILD_TWEAK)
1758#else
1759# $(call VBOX_BLD_VM_MSG_BEGIN,Freebsd/x86 Validation Kit)
1760# $(TIME) -- $(VBOX_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 '
1761# $(call VBOX_BLD_VM_MSG_END__,Freebsd/x86 Validation Kit)
1762#endif
1763
1764validationkit-build-darwin.amd64: $(VBOX_VALIDATIONKIT_BUILD_WIN_HOST_FIRST)
1765ifeq ($(KBUILD_TARGET).$(KBUILD_TARGET_ARCH),darwin.amd64)
1766 + $(TIME) -- $(KMK) $(VBOX_VALIDATIONKIT_BUILD.amd64) all $(VBOX_VALIDATIONKIT_HOST_BUILD_TWEAK)
1767else
1768 $(call VBOX_BLD_VM_MSG_BEGIN,Darwin/amd64 Validation Kit)
1769 $(TIME) -- $(call VBOX_RSYNC_IN_FN,darwin,amd64) . $(VBOX_BLD_VM_DARWIN_AMD64_IP):/Users/vbox/tinderbox/$(VBOX_VALIDATIONKIT_BUILD_SUBDIRNAME)
1770 $(TIME) -- $(VBOX_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 '
1771 $(TIME) -- $(VBOX_RSYNC) -am -v --delete $(VBOX_BLD_VM_DARWIN_AMD64_IP):/Users/vbox/tinderbox/$(VBOX_VALIDATIONKIT_BUILD_SUBDIRNAME)/out/darwin.amd64 out/
1772 $(call VBOX_BLD_VM_MSG_END__,Darwin/amd64 Validation Kit)
1773endif
1774
1775validationkit-build-darwin.x86: $(VBOX_VALIDATIONKIT_BUILD_WIN_HOST_FIRST)
1776ifeq ($(KBUILD_TARGET).$(KBUILD_TARGET_ARCH),darwin.x86)
1777 + $(TIME) -- $(KMK) $(VBOX_VALIDATIONKIT_BUILD.x86) all $(VBOX_VALIDATIONKIT_HOST_BUILD_TWEAK)
1778else
1779 $(call VBOX_BLD_VM_MSG_BEGIN,Darwin/x86 Validation Kit)
1780 $(TIME) -- $(call VBOX_RSYNC_IN_FN,darwin,x86) . $(VBOX_BLD_VM_DARWIN_X86_IP):/Users/vbox/tinderbox/$(VBOX_VALIDATIONKIT_BUILD_SUBDIRNAME)
1781 $(TIME) -- $(VBOX_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 '
1782 $(TIME) -- $(VBOX_RSYNC) -am -v --delete $(VBOX_BLD_VM_DARWIN_X86_IP):/Users/vbox/tinderbox/$(VBOX_VALIDATIONKIT_BUILD_SUBDIRNAME)/out/darwin.x86 out/
1783 $(call VBOX_BLD_VM_MSG_END__,Darwin/x86 Validation Kit)
1784endif
1785
1786
1787validationkit-packing:
1788 + $(KMK) VBOX_ONLY_VALIDATIONKIT=1 \
1789 VBOX_WITH_VALIDATIONKIT_PACKING.darwin.amd64=1 \
1790 VBOX_WITH_VALIDATIONKIT_PACKING.darwin.x86=2 \
1791 VBOX_WITH_VALIDATIONKIT_PACKING.freebsd.amd64= \
1792 VBOX_WITH_VALIDATIONKIT_PACKING.freebsd.x86= \
1793 VBOX_WITH_VALIDATIONKIT_PACKING.linux.amd64=1 \
1794 VBOX_WITH_VALIDATIONKIT_PACKING.linux.x86=1 \
1795 VBOX_WITH_VALIDATIONKIT_PACKING.os2.x86=1 \
1796 VBOX_WITH_VALIDATIONKIT_PACKING.solaris.amd64=1 \
1797 VBOX_WITH_VALIDATIONKIT_PACKING.solaris.x86=1 \
1798 VBOX_WITH_VALIDATIONKIT_PACKING.win.amd64=1 \
1799 VBOX_WITH_VALIDATIONKIT_PACKING.win.x86=1 \
1800 -C src/VBox/ValidationKit \
1801 $(PATH_OUT)/VBoxValidationKit.zip \
1802 $(PATH_OUT)/VBoxTestBoxScript.zip
1803
1804.PHONY: \
1805 validationkit-build-win.x86 \
1806 validationkit-build-win.amd64 \
1807 validationkit-build-solaris.amd64 \
1808 validationkit-build-solaris.x86 \
1809 validationkit-build-os2.x86 \
1810 validationkit-build-linux \
1811 validationkit-build-linux.amd64 \
1812 validationkit-build-linux.x86 \
1813 validationkit-build-freebsd.amd64 \
1814 validationkit-build-freebsd.x86 \
1815 validationkit-build-darwin.amd64 \
1816 validationkit-build-darwin.x86 \
1817 validationkit-packing
1818
1819
1820#
1821# Build the EFI firmware, all of it.
1822#
1823efi-fetch:
1824 + $(KMK) -C tools fetch VBOX_ONLY_EXTPACKS=1
1825
1826efi-build: $(VBOX_VERSION_HEADER)
1827 + $(KMK) -C src/VBox/Devices/EFI/Firmware$(VBOX_EFI_FIRMWARE_SUFFIX)
1828
1829efi-packing:
1830 + $(KMK) -C src/VBox/Devices/EFI/Firmware$(VBOX_EFI_FIRMWARE_SUFFIX) $(PATH_STAGE)/VBoxEfiFirmware.zip
1831
1832
1833#
1834# Generate VirtualBox-x.x.x.zip (PUEL) snapshot archive for internal use only
1835# - includes kBuild
1836# - must be executed on an PUEL checkout
1837#
1838
1839# the path where to store the zip archive
1840ZIPPATH ?= $(abspath $(PATH_ROOT)/..)
1841# the root directory inside the zip archive
1842ZIPROOT ?= VirtualBox-$(VBOX_VERSION_STRING)
1843# the name of the zip archive
1844ZIPNAME ?= VirtualBox-$(VBOX_VERSION_STRING).zip
1845snapshot-puel:
1846 @$(call MSG_L1,Creating zip $(ZIPPATH)/$(ZIPNAME))
1847 @if [ ! -r "$(PATH_ROOT)/src/VBox/RDP/server/server.cpp" ]; then \
1848 echo; \
1849 echo "Did not find RDP stuff, is this an OSE branch?"; \
1850 echo; \
1851 exit 1; \
1852 fi
1853 @if [ -z "$(PASSWORD)" ]; then \
1854 echo; \
1855 echo "Please specify a password with PASSWORD=..."; \
1856 echo; \
1857 exit 1; \
1858 fi
1859 $(QUIET)$(MKDIR) -p $(ZIPPATH)
1860 $(QUIET)$(RM) -f $(ZIPPATH)/$(ZIPROOT)
1861 $(QUIET)$(RM) -f $(ZIPPATH)/$(ZIPNAME)
1862 $(QUIET)$(LN_SYMLINK) $(PATH_ROOT) $(ZIPPATH)/$(ZIPROOT)
1863 $(QUIET)(cd $(ZIPPATH); 7z a \
1864 -l -tzip -mmt=on -mx=7 -p$(PASSWORD) \
1865 -xr!.svn \
1866 -i!$(ZIPROOT)/Config.kmk \
1867 -i!$(ZIPROOT)/Doxyfile.Core \
1868 -i!$(ZIPROOT)/Makefile.kmk \
1869 -i!$(ZIPROOT)/configure \
1870 -i!$(ZIPROOT)/configure.vbs \
1871 -i!$(ZIPROOT)/doc \
1872 -i!$(ZIPROOT)/include \
1873 -i!$(ZIPROOT)/kBuild \
1874 -i!$(ZIPROOT)/src \
1875 -i!$(ZIPROOT)/tools/env.sh \
1876 -i!$(ZIPROOT)/tools/linux.x86/bin/* \
1877 -i!$(ZIPROOT)/tools/linux.amd64/bin/* \
1878 -x!$(ZIPROOT)/doc/Devices \
1879 -x!$(ZIPROOT)/doc/\*pdf \
1880 -x!$(ZIPROOT)/doc/VMM \
1881 -x!$(ZIPROOT)/doc/licenses_old \
1882 -x!$(ZIPROOT)/doc/manual/de_DE \
1883 -x!$(ZIPROOT)/doc/manual/fr_FR \
1884 -x!$(ZIPROOT)/src/tests \
1885 -x!$(ZIPROOT)/src/VBox/Artwork/2008-\* \
1886 -x!$(ZIPROOT)/src/VBox/Installer/AMI \
1887 -x!$(ZIPROOT)/src/VBox/Installer/Avanquest \
1888 -x!$(ZIPROOT)/src/VBox/Installer/Encore \
1889 -x!$(ZIPROOT)/src/VBox/Installer/linux/debian \
1890 -x!$(ZIPROOT)/src/VBox/Installer/linux/rpm \
1891 $(ZIPPATH)/$(ZIPNAME))
1892 $(QUIET)$(RM) $(ZIPPATH)/$(ZIPROOT)
1893
1894
1895#
1896# Generate VirtualBox-x.x.x.tar.bz2 (OSE) snapshot archive
1897# - includes kBuild
1898#
1899
1900snapshot-ose:
1901ifndef VBOX_OSE
1902 $(QUIET)$(RM) -Rf $(wildcard $(PATH_OUT)/vbox-ose-snap-*) $(wildcard $(PATH_OUT)/VirtualBox-*.tar.bz2)
1903 $(call MSG_L1,Making OSE snapshot at $(PATH_OUT)/vbox-ose-snap-$(VBOX_VERSION_STRING))
1904 $(PATH_DEVTOOLS)/bin/ose-snapshot.sh $(PATH_OUT)/vbox-ose-snap-$(VBOX_VERSION_STRING)
1905 $(call MSG_L1,Creating OSE tarball $(PATH_OUT)/VirtualBox-$(VBOX_VERSION_STRING)-r$(VBOX_SVN_REV).tar.bz2)
1906 $(REDIRECT) -C $(PATH_OUT)/vbox-ose-snap-$(VBOX_VERSION_STRING) -- \
1907 $(PATH_DEVTOOLS)/bin/ose-tarball.sh $(PATH_OUT)/VirtualBox-$(VBOX_VERSION_STRING)-r$(VBOX_SVN_REV).tar.bz2
1908else
1909 $(QUIET)$(RM) $(wildcard $(PATH_OUT)/VirtualBox-*.tar.bz2)
1910 $(call MSG_L1,Creating OSE tarball $(PATH_OUT)/VirtualBox-$(VBOX_VERSION_STRING)-r$(VBOX_SVN_REV).tar.bz2)
1911 $(REDIRECT) -C $(PATH_ROOT) -- \
1912 $(PATH_DEVTOOLS)/bin/ose-tarball.sh $(PATH_OUT)/VirtualBox-$(VBOX_VERSION_STRING)-r$(VBOX_SVN_REV).tar.bz2
1913endif
1914
1915
1916#
1917# Generate ALL the rules.
1918#
1919include $(FILE_KBUILD_SUB_FOOTER)
1920
1921
1922#
1923# Generate x86.mac and err.mac.
1924#
1925incs:
1926 $(SED) -f include/VBox/err.sed --output include/VBox/err.mac include/VBox/err.h
1927 $(APPEND) include/VBox/err.mac '%include "iprt/err.mac"'
1928 $(SED) -f include/VBox/err.sed --output include/iprt/err.mac include/iprt/err.h
1929 $(SED) -f include/VBox/various.sed --output include/iprt/x86.mac include/iprt/x86.h
1930 $(SED) -f include/VBox/various.sed --output include/iprt/formats/dwarf.mac include/iprt/formats/dwarf.h
1931 $(APPEND) include/iprt/x86.mac '%include "iprt/x86extra.mac"'
1932 $(SED) -f include/VBox/various.sed --output include/VBox/apic.mac include/VBox/apic.h
1933 $(SED) -f include/VBox/various.sed --output include/VBox/bios.mac include/VBox/bios.h
1934 $(SED) -f include/VBox/various.sed --output include/VBox/param.mac include/VBox/param.h
1935 $(SED) -f include/VBox/various.sed --output include/VBox/VMMDevTesting.mac include/VBox/VMMDevTesting.h
1936
1937
1938#
1939# Legacy.
1940#
1941vslick.h:
1942 $(ECHO) This is now done by gen-slickedit-workspace.sh/cmd.
1943 exit 1
1944
1945
1946#
1947# Add fetching of the tools to the 'up[date][2]' targets.
1948#
1949up update up2 update2::
1950ifndef VBOX_OSE
1951 +$(MAKE) -C tools fetch
1952else
1953 $(MAKE) -C tools -f Makefile-ose.kmk fetch
1954endif
1955
1956
1957
1958#
1959# Aliases for building the SDK.
1960#
1961.NOTPARALLEL: sdk sdk-fetch
1962sdk:
1963 + $(KMK) VBOX_ONLY_SDK=1 \
1964 pass_bldprogs pass_others pass_installs pass_packing
1965
1966sdk-fetch:
1967 + $(KMK) VBOX_ONLY_SDK=1 -C tools
1968
1969
1970#
1971# Build the essentials to run a VM. Incomplete. Use with care!
1972#
1973quick: \
1974 VBoxRT \
1975 VBoxVMM \
1976 VMMR0 \
1977 VBoxDD \
1978 VBoxDDR0 \
1979 VBoxDD2 \
1980 VBoxDD2R0 \
1981 VBoxC \
1982 VBoxSVC \
1983 $(if-expr defined(VBOX_WITH_RAW_MODE),VMMRC VBoxDDRC VBoxDD2RC,) \
1984 $(if-expr defined(VBOX_WITH_REM),VBoxREM,) \
1985 $(if-expr defined(VBOX_WITH_MIDL_PROXY_STUB) && "$(KBUILD_TARGET)" == "win",VBoxProxyStub,) \
1986 $(if-expr defined(VBOX_WITH_SDS),VBoxSDS,) \
1987 $(if-expr defined(VBOX_WITH_QTGUI),VirtualBox,)
1988
Note: See TracBrowser for help on using the repository browser.

© 2023 Oracle
ContactPrivacy policyTerms of Use