VirtualBox

source: vbox/trunk/Makefile.kmk@ 48854

Last change on this file since 48854 was 48605, checked in by vboxsync, 11 years ago

undo -j1 on efi-build.

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