VirtualBox

source: vbox/trunk/Makefile.kmk@ 79892

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

*.kmk: Preparing for dropping 32-bit host support. Introducing a variable VBOX_SUPPORTED_HOST_ARCHS controlling what's supported and not. bugref:9511

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

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