VirtualBox

source: vbox/trunk/Makefile.kmk@ 50653

Last change on this file since 50653 was 49537, checked in by vboxsync, 11 years ago

Main/VBoxClient-x86: attempt to fix packaging, needs VBoxRT-x86.dll, and has to move to a separate directory to allow having 32 bit msvc*.dll in the same directory

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

© 2023 Oracle
ContactPrivacy policyTerms of Use