VirtualBox

source: vbox/trunk/Makefile.kmk@ 60742

Last change on this file since 60742 was 60705, checked in by vboxsync, 8 years ago

Makefile.kmk: Fix Qt5 building w/ tools package on non-solaris hosts.

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