VirtualBox

source: vbox/trunk/Makefile.kmk@ 65158

Last change on this file since 65158 was 65153, checked in by vboxsync, 8 years ago

doxygen: more unification: moved Doxyfile.{Core,qtgui,iprt}.* and docs.{Core,qtgui,iprt} to the respective doxygen directories; sort *_DOXYFILE_INPUT because the wildcard function does not return deterministic results; use separate *_DOXYFILE_{INPUT,OUTPUT} variables

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