VirtualBox

source: vbox/trunk/Makefile.kmk@ 35197

Last change on this file since 35197 was 34788, checked in by vboxsync, 14 years ago

build extpacks-linux.x86 with libstdc++6

  • Property svn:eol-style set to native
  • Property svn:keywords set to Author Date Id Revision
File size: 67.7 KB
RevLine 
[2478]1# $Id: Makefile.kmk 34788 2010-12-07 14:59:06Z vboxsync $
2## @file
[1]3# Top level makefile.
4#
[2478]5
[1]6#
[28800]7# Copyright (C) 2006-2010 Oracle Corporation
[4398]8#
[5999]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#
[1]17
[10195]18SUB_DEPTH = .
19include $(KBUILD_PATH)/subheader.kmk
[1]20
[12243]21#
22# Sub-makefiles / Sub-directories.
23#
[34609]24if defined(VBOX_WITH_DOCS) && !defined(VBOX_ONLY_ADDITIONS) && !defined(VBOX_ONLY_EXTPACKS) && !defined(VBOX_ONLY_TESTSUITE)
25 include $(PATH_SUB_CURRENT)/doc/manual/Makefile.kmk
[10195]26endif
[34609]27include $(PATH_SUB_CURRENT)/src/Makefile.kmk
[1]28
[12243]29
[15800]30#
31# Clean up global stuff that Config.kmk generates.
32#
33OTHER_CLEAN += \
34 $(VBOX_PACKAGE_HEADER) \
35 $(VBOX_LICENSE_VER_KMK) \
36 $(VBOX_VERSION_MK) \
37 $(VBOX_VERSION_HEADER) \
38 $(VBOX_VERSION_STAMP) \
39 $(wildcard $(PATH_OUT)/version-stamp-*.*.*) \
40 $(VBOX_SVN_REV_KMK).ts \
[15802]41 $(VBOX_SVN_REV_KMK) \
42 $(PATH_OUT)/GCCConfig.kmk
[15800]43
44
[34482]45if !defined(VBOX_ONLY_ADDITIONS) \
46 && !defined(VBOX_ONLY_DOCS) \
47 && !defined(VBOX_ONLY_EXTPACKS) \
48 && !defined(VBOX_ONLY_TESTSUITE) # -> line 418b ;-)
[12576]49
50ifndef VBOX_OSE
51 #
52 # Install the license (and misc non-executable stuff).
53 #
54 INSTALLS += nobin
55 nobin_INST = $(INST_BIN)
56 nobin_MODE = 0644
[12647]57 nobin_SOURCES =
[13256]58 ifdef VBOX_LICENSE_FILES
[12576]59 nobin_SOURCES += \
[13264]60 $(VBOX_BRAND_LICENSE_HTML)=>License-$(VBOX_LICENSE_VER).html \
[13244]61 $(foreach f,$(VBOX_INSTALLER_ADD_LANGUAGES),$(VBOX_BRAND_$(f)_LICENSE_HTML)=>License-$(VBOX_LICENSE_VER)-$(f).html)
[12576]62 endif
[12647]63endif # !OSE
[12576]64
65
[1]66#
67# Install external binaries (mostly redistributable parts of tools we use).
68# This must be done *before* we build the manual.
69#
70# To avoid dragging in unnecessary tools and sdks here, we don't use the .win
71# and .linux property suffixes.
72#
[10195]73INSTALLS += bin
[1]74
[960]75bin_INST = $(INST_BIN)
[1]76
77# The SDL DLLs
[8758]78if1of ($(KBUILD_TARGET), win os2)
[1]79 ifneq ($(VBOX_WITH_VBOXSDL)$(VBOX_WITH_VBOXBFE),)
[8760]80 include $(KBUILD_PATH)/sdks/LIBSDL.kmk
[1]81 bin_SOURCES += \
82 $(DLL_SDK_LIBSDL_SDL)
83 ifdef VBOX_WITH_SECURELABEL
84 bin_SOURCES += \
85 $(DLL_SDK_LIBSDL_SDLTTF)
86 endif
[8758]87 ifeq ($(KBUILD_TARGET),os2)
[1]88 bin_SOURCES += \
89 $(DLL_SDK_LIBSDL_FSLIB)
90 endif
91 endif
92endif
93
[3405]94
[1]95# The compiler runtime DLLs.
[8758]96ifeq ($(KBUILD_TARGET).$(VBOX_WITHOUT_COMPILER_REDIST),win.)
[1]97 ifdef VBOX_USE_VCC80
[8760]98 include $(KBUILD_PATH)/tools/VCC80X86.kmk
99 include $(KBUILD_PATH)/tools/VCC80AMD64.kmk
[25074]100 bin_SOURCES.x86 += \
101 $(PATH_TOOL_VCC80X86)/redist/x86/Microsoft.VC80.CRT/Microsoft.VC80.CRT.manifest=>Microsoft.VC80.CRT/Microsoft.VC80.CRT.manifest \
102 $(PATH_TOOL_VCC80X86)/redist/x86/Microsoft.VC80.CRT/msvcr80.dll=>Microsoft.VC80.CRT/msvcr80.dll \
103 $(PATH_TOOL_VCC80X86)/redist/x86/Microsoft.VC80.CRT/msvcp80.dll=>Microsoft.VC80.CRT/msvcp80.dll \
104 $(PATH_TOOL_VCC80X86)/redist/x86/Microsoft.VC80.CRT/Microsoft.VC80.CRT.manifest=>testcase/Microsoft.VC80.CRT/Microsoft.VC80.CRT.manifest \
105 $(PATH_TOOL_VCC80X86)/redist/x86/Microsoft.VC80.CRT/msvcr80.dll=>testcase/Microsoft.VC80.CRT/msvcr80.dll \
106 $(PATH_TOOL_VCC80X86)/redist/x86/Microsoft.VC80.CRT/msvcp80.dll=>testcase/Microsoft.VC80.CRT/msvcp80.dll
107 bin_SOURCES.amd64 += \
108 $(PATH_TOOL_VCC80AMD64)/redist/amd64/Microsoft.VC80.CRT/Microsoft.VC80.CRT.manifest=>Microsoft.VC80.CRT/Microsoft.VC80.CRT.manifest \
109 $(PATH_TOOL_VCC80AMD64)/redist/amd64/Microsoft.VC80.CRT/msvcr80.dll=>Microsoft.VC80.CRT/msvcr80.dll \
110 $(PATH_TOOL_VCC80AMD64)/redist/amd64/Microsoft.VC80.CRT/msvcp80.dll=>Microsoft.VC80.CRT/msvcp80.dll \
111 $(PATH_TOOL_VCC80AMD64)/redist/amd64/Microsoft.VC80.CRT/Microsoft.VC80.CRT.manifest=>testcase/Microsoft.VC80.CRT/Microsoft.VC80.CRT.manifest \
112 $(PATH_TOOL_VCC80AMD64)/redist/amd64/Microsoft.VC80.CRT/msvcr80.dll=>testcase/Microsoft.VC80.CRT/msvcr80.dll \
113 $(PATH_TOOL_VCC80AMD64)/redist/amd64/Microsoft.VC80.CRT/msvcp80.dll=>testcase/Microsoft.VC80.CRT/msvcp80.dll
[25034]114 ifeq ($(VBOX_VCC_CRT_TYPE),d)
115 bin_SOURCES.x86 += \
[25074]116 $(PATH_TOOL_VCC80X86)/redist/Debug_NonRedist/x86/Microsoft.VC80.DebugCRT/Microsoft.VC80.DebugCRT.manifest=>Microsoft.VC80.DebugCRT/Microsoft.VC80.DebugCRT.manifest \
117 $(PATH_TOOL_VCC80X86)/redist/Debug_NonRedist/x86/Microsoft.VC80.DebugCRT/msvcr80d.dll=>Microsoft.VC80.DebugCRT/msvcr80d.dll \
118 $(PATH_TOOL_VCC80X86)/redist/Debug_NonRedist/x86/Microsoft.VC80.DebugCRT/msvcp80d.dll=>Microsoft.VC80.DebugCRT/msvcp80d.dll \
119 $(PATH_TOOL_VCC80X86)/redist/Debug_NonRedist/x86/Microsoft.VC80.DebugCRT/Microsoft.VC80.DebugCRT.manifest=>testcase/Microsoft.VC80.DebugCRT/Microsoft.VC80.DebugCRT.manifest \
120 $(PATH_TOOL_VCC80X86)/redist/Debug_NonRedist/x86/Microsoft.VC80.DebugCRT/msvcr80d.dll=>testcase/Microsoft.VC80.DebugCRT/msvcr80d.dll \
121 $(PATH_TOOL_VCC80X86)/redist/Debug_NonRedist/x86/Microsoft.VC80.DebugCRT/msvcp80d.dll=>testcase/Microsoft.VC80.DebugCRT/msvcp80d.dll
[25034]122 bin_SOURCES.amd64 += \
[25074]123 $(PATH_TOOL_VCC80AMD64)/redist/Debug_NonRedist/amd64/Microsoft.VC80.DebugCRT/Microsoft.VC80.DebugCRT.manifest=>Microsoft.VC80.DebugCRT/Microsoft.VC80.DebugCRT.manifest \
124 $(PATH_TOOL_VCC80AMD64)/redist/Debug_NonRedist/amd64/Microsoft.VC80.DebugCRT/msvcr80d.dll=>Microsoft.VC80.DebugCRT/msvcr80d.dll \
125 $(PATH_TOOL_VCC80AMD64)/redist/Debug_NonRedist/amd64/Microsoft.VC80.DebugCRT/msvcp80d.dll=>Microsoft.VC80.DebugCRT/msvcp80d.dll \
126 $(PATH_TOOL_VCC80AMD64)/redist/Debug_NonRedist/amd64/Microsoft.VC80.DebugCRT/Microsoft.VC80.DebugCRT.manifest=>testcase/Microsoft.VC80.DebugCRT/Microsoft.VC80.DebugCRT.manifest \
127 $(PATH_TOOL_VCC80AMD64)/redist/Debug_NonRedist/amd64/Microsoft.VC80.DebugCRT/msvcr80d.dll=>testcase/Microsoft.VC80.DebugCRT/msvcr80d.dll \
128 $(PATH_TOOL_VCC80AMD64)/redist/Debug_NonRedist/amd64/Microsoft.VC80.DebugCRT/msvcp80d.dll=>testcase/Microsoft.VC80.DebugCRT/msvcp80d.dll
[25034]129 endif
[2692]130 endif
131 ifndef VBOX_USE_VCC80
132 VBOX_INSTALL_VCC70_RT = 1
133 endif
[8758]134 ifeq ($(KBUILD_TARGET).$(KBUILD_TARGET_ARCH),win.x86)
[2692]135 VBOX_INSTALL_VCC70_RT = 1
136 endif
137 ifdef VBOX_INSTALL_VCC70_RT
[8760]138 include $(KBUILD_PATH)/tools/VCC70.kmk
[25074]139
[1]140 ## @todo Move these defines to VCC70.
[25074]141 DLL_TOOL_VCC70_MSVCR71 ?= $(PATH_TOOL_VCC70)/bin/msvcr71.dll
[1]142 ifneq ($(wildcard $(DLL_TOOL_VCC70_MSVCR71)),)
143 bin_SOURCES += \
[25074]144 $(DLL_TOOL_VCC70_MSVCR71)=>msvcr71.dll \
145 $(DLL_TOOL_VCC70_MSVCR71)=>testcase/msvcr71.dll
[1]146 endif
[25074]147 ifeq ($(VBOX_VCC_CRT_TYPE),d)
148 DLL_TOOL_VCC70_MSVCR71D ?= $(PATH_TOOL_VCC70)/bin/msvcr71d.dll
149 ifneq ($(wildcard $(DLL_TOOL_VCC70_MSVCR71D)),)
150 bin_SOURCES += \
151 $(DLL_TOOL_VCC70_MSVCR71D)=>msvcr71d.dll \
152 $(DLL_TOOL_VCC70_MSVCR71D)=>testcase/msvcr71d.dll
153 endif
154 endif
155
156 DLL_TOOL_VCC70_MSVCP71 ?= $(PATH_TOOL_VCC70)/bin/msvcp71.dll
[1]157 ifneq ($(wildcard $(DLL_TOOL_VCC70_MSVCP71)),)
158 bin_SOURCES += \
[25074]159 $(DLL_TOOL_VCC70_MSVCP71)=>msvcp71.dll \
160 $(DLL_TOOL_VCC70_MSVCP71)=>testcase/msvcp71.dll
161 endif
162 ifeq ($(VBOX_VCC_CRT_TYPE),d)
163 DLL_TOOL_VCC70_MSVCP71D ?= $(PATH_TOOL_VCC70)/bin/msvcp71d.dll
164 ifneq ($(wildcard $(DLL_TOOL_VCC70_MSVCP71D)),)
165 bin_SOURCES += \
166 $(DLL_TOOL_VCC70_MSVCP71D)=>msvcp71d.dll \
167 $(DLL_TOOL_VCC70_MSVCP71D)=>testcase/msvcp71d.dll
[1]168 endif
[25074]169 endif
170
171 DLL_TOOL_VCC70_MSVCRT ?= $(PATH_TOOL_VCC70)/bin/msvcrt.dll
[1]172 ifneq ($(wildcard $(DLL_TOOL_VCC70_MSVCRT)),)
173 bin_SOURCES += \
[25074]174 $(DLL_TOOL_VCC70_MSVCRT)=>msvcrt.dll \
175 $(DLL_TOOL_VCC70_MSVCRT)=>testcase/msvcrt.dll
[1]176 endif
177 endif
178endif
179
[22453]180
[1648]181#
[12173]182# Install our Qt DLLs / Shared Objects / Frameworks.
[12952]183# Note: The installer fixes the darwin .dylibs when hardening is enabled.
[12173]184#
[31967]185ifeq ($(KBUILD_TARGET),darwin)
[12173]186 INSTALLS += qt4-bin
[12948]187 qt4-bin_MODE = 755
[31967]188 qt4-bin_INST = $(INST_VIRTUALBOX)Contents/
[32012]189 qt4-bin_SOURCES = $(foreach qtmod,$(VBOX_QT4_MOD_NAMES) \
190 ,$(PATH_SDK_QT4_LIB)/$(qtmod).framework/Versions/4/$(qtmod)=>Frameworks/$(qtmod).framework/Versions/4/$(qtmod))
[31967]191 ifdef VBOX_WITH_COCOA_QT
[16925]192 qt4-bin_SOURCES += \
[31967]193 $(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 \
194 $(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 \
195 $(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
196 endif
197 ifneq ($(wildcard $(VBOX_PATH_QT4)/plugins/accessible/libqtaccessiblewidgets.dylib),)
198 qt4-bin_SOURCES += \
[17849]199 $(VBOX_PATH_QT4)/plugins/accessible/libqtaccessiblewidgets.dylib=>MacOS/accessible/libqtaccessiblewidgets.dylib
[31967]200 endif
[32012]201 qt4-bin_SYMLINKS = $(foreach qtmod, $(VBOX_QT4_MOD_NAMES) \
202 ,Frameworks/$(qtmod).framework/$(qtmod)=>Versions/4/$(qtmod))
[31967]203 ifdef VBOX_WITH_COCOA_QT
204 qt4-bin_SYMLINKS += \
205 Frameworks/QtGui$(VBOX_QT4_INFIX).framework/Resources=>Versions/4/Resources/
206 endif
207else
208 ifdef VBOX_WITH_QT4_SUN
209 ifeq ($(KBUILD_TARGET),win)
210 INSTALLS += qt4-bin
211 qt4-bin_MODE = 755
212 qt4-bin_INST = $(INST_BIN)
213 qt4-bin_SOURCES = \
[32013]214 $(foreach qtmod,$(VBOX_QT4_MOD_NAMES),$(VBOX_PATH_QT4_LIB)/$(qtmod)4$(SUFF_DLL)) \
[32012]215 $(VBOX_PATH_QT4)/plugins/accessible/qtaccessiblewidgets4$(SUFF_DLL)=>accessible/qtaccessiblewidgets4$(SUFF_DLL)
[31967]216 else
217 INSTALLS += qt4-bin
218 qt4-bin_MODE = 755
219 qt4-bin_INST = $(INST_BIN)
220 qt4-bin_SOURCES = \
[32013]221 $(foreach qtmod,$(VBOX_QT4_MOD_NAMES),$(VBOX_PATH_QT4_LIB)/lib$(qtmod)$(SUFF_DLL).4) \
[31967]222 $(VBOX_PATH_QT4)/plugins/accessible/libqtaccessiblewidgets$(SUFF_DLL)=>accessible/libqtaccessiblewidgets$(SUFF_DLL)
[16985]223 endif
[31967]224 endif # VBOX_WITH_QT4_SUN
225endif
[12173]226
227
228#
[17250]229# For building the combined package, just get the additions .ISO
230# once for amd64 to prevent version inconsistences. In all other
231# cases we get the .ISO per target architecture.
232#
233ifdef VBOX_WITH_ADDITIONS_FROM_BUILD_SERVER
234 ifdef VBOX_WITH_COMBINED_PACKAGE
[17849]235 ifeq ($(KBUILD_TARGET_ARCH),amd64)
[17250]236 INSTALLS += buildserver-additions
237 endif
238 else
239 INSTALLS += buildserver-additions
240 endif
241
242#
[6129]243# Install additions iso from the build server.
244# The $(CP)/$(RM) stuff can be replaced by a simple $(TOUCH) once that has
245# been added to kBuild.
246#
[16957]247buildserver-additions_INST = $(INST_ADDITIONS_ISO)
[6129]248buildserver-additions_MODE = 0644
249buildserver-additions_SOURCES = $(PATH_TARGET)/VBoxGuestAdditions.iso
250buildserver-additions_CLEANS = $(PATH_TARGET)/VBoxGuestAdditions.iso $(PATH_TARGET)/VBoxGuestAdditions.iso.tmp
251
[13348]252$(PATH_TARGET)/VBoxGuestAdditions.iso: $(VBOX_SVN_REV_KMK) $(PATH_DEVTOOLS)/bin/additions.sh | $$(dir $$@)
[6129]253 $(RM) -f $(PATH_TARGET)/VBoxGuestAdditions.iso $(PATH_TARGET)/VBoxGuestAdditions.iso.tmp
[13893]254 ifneq ($(KBUILD_HOST),win)
255 $(SHELL) $(PATH_DEVTOOLS)/bin/additions.sh --cmd fetch --filename $(PATH_TARGET)/VBoxGuestAdditions.iso.tmp
256 else
[34609]257 $(KMK) --affinity 1 -f $(MAKEFILE) buildserver-additions-affinity-hack
[13893]258 endif
[6129]259 $(CP) -f $(PATH_TARGET)/VBoxGuestAdditions.iso.tmp $(PATH_TARGET)/VBoxGuestAdditions.iso
260 $(RM) -f $(PATH_TARGET)/VBoxGuestAdditions.iso.tmp
261
[13893]262 ifeq ($(KBUILD_HOST),win)
[6129]263buildserver-additions-affinity-hack:
[6142]264 $(SHELL) $(PATH_DEVTOOLS)/bin/additions.sh --cmd fetch --filename $(PATH_TARGET)/VBoxGuestAdditions.iso.tmp
[13893]265 endif
[6129]266endif
267
268
269#
[11686]270#
271# Install documentation files (at the moment the .chm) from the build server.
272#
273ifdef VBOX_WITH_DOCS_FROM_BUILD_SERVER
[13348]274## @todo r=bird: Too much mess now for $(PATH_TARGET); move to doc/manual/.
[11686]275INSTALLS += buildserver-docs
276buildserver-docs_INST = $(INST_BIN)
277buildserver-docs_MODE = 0644
[13228]278buildserver-docs_SOURCES = \
[13246]279 $(addprefix $(PATH_TARGET)/, \
[13244]280 VirtualBox.chm UserManual.pdf \
281 $(foreach f,$(VBOX_MANUAL_ADD_LANGUAGES),VirtualBox_$(f).chm UserManual_$(f).pdf))
[13228]282buildserver-docs_CLEANS = \
[21925]283 $(buildserver-docs_0_OUTDIR)/unpacked.ts \
284 $(buildserver-docs_0_OUTDIR)/VBoxDocumentation.zip \
285 $(buildserver-docs_0_OUTDIR)/VBoxDocumentation.zip.tmp \
[13246]286 $(addprefix $(PATH_TARGET)/, \
[13244]287 VirtualBox.chm UserManual.pdf \
288 $(foreach f,$(VBOX_MANUAL_ADD_LANGUAGES),VirtualBox_$(f).chm UserManual_$(f).pdf))
[11686]289
[13348]290## @todo Hack to get at TOOL_ZIP_UNPACK; see if this can be integrated somehow...
[11686]291include $(KBUILD_PATH)/tools/ZIP.kmk
292
[21925]293$$(buildserver-docs_0_OUTDIR)/unpacked.ts +| $(PATH_TARGET)/VirtualBox.chm $(PATH_TARGET)/UserManual.pdf \
294$(foreach f,$(VBOX_MANUAL_ADD_LANGUAGES),$(PATH_TARGET)/VirtualBox_$(f).chm $(PATH_TARGET)/UserManual_$(f).pdf): \
295 $$(buildserver-docs_0_OUTDIR)/VBoxDocumentation.zip
[11686]296 $(call MSG_L1,Unpacking documentation)
297 $(QUIET)$(TOOL_ZIP_UNPACK) $(TOOL_ZIP_UNPACKFLAGS) -o $< -d $(PATH_TARGET)
[21925]298 $(APPEND) -t $@ "done"
[11686]299
[21925]300$$(buildserver-docs_0_OUTDIR)/VBoxDocumentation.zip: $(VBOX_SVN_REV_KMK) $(PATH_DEVTOOLS)/bin/documentation.sh | $$(dir $$@)
301 $(RM) -f $@ $@.tmp
[13893]302 ifneq ($(KBUILD_HOST),win)
[21925]303 $(SHELL) $(PATH_DEVTOOLS)/bin/documentation.sh --cmd fetch --filename $@.tmp
[13893]304 else
[34609]305 $(KMK) --affinity 1 -f $(MAKEFILE) buildserver-documentation-affinity-hack
[13893]306 endif
[21925]307 $(CP) -f $@.tmp $@
308 $(RM) -f $@.tmp
[23658]309## @todo kBuild: The $(CP)/$(RM) stuff can be replaced by a simple $(TOUCH) once that has been added to kBuild.
[11686]310
[13893]311 ifeq ($(KBUILD_HOST),win)
[11686]312buildserver-documentation-affinity-hack:
[21925]313 $(SHELL) $(PATH_DEVTOOLS)/bin/documentation.sh --cmd fetch --filename $(buildserver-docs_0_OUTDIR)/VBoxDocumentation.zip.tmp
[13893]314 endif
[13348]315endif # VBOX_WITH_DOCS_FROM_BUILD_SERVER
[11686]316
317
[29079]318 ifdef VBOX_WITH_EFI
319 #
320 # Install EFI firmware image
321 #
322 ifdef VBOX_WITH_EFIFW_FROM_BUILD_SERVER
323 #
324 # Either from the build server.
325 #
326 INSTALLS += buildserver-efifw
327 buildserver-efifw_INST = $(INST_BIN)
328 buildserver-efifw_MODE = 0644
329 buildserver-efifw_SOURCES = \
330 $(buildserver-efifw_0_OUTDIR)/FV/VBOX.fd=>VBoxEFI32.fd \
331 $(buildserver-efifw_0_OUTDIR)/FV/VBOX64.fd=>VBoxEFI64.fd
332 buildserver-efifw_CLEANS = \
333 $(buildserver-efifw_0_OUTDIR)/unpacked.ts \
334 $(buildserver-efifw_0_OUTDIR)/FV/VBOX.fd \
335 $(buildserver-efifw_0_OUTDIR)/FV/VBOX64.fd \
336 $(buildserver-efifw_0_OUTDIR)/VBoxEfiFirmware.zip \
337 $(buildserver-efifw_0_OUTDIR)/VBoxEfiFirmware.zip.tmp
338 ## @todo rainy day: cleanup the output directory (zip contains lots more)
[23650]339
[29079]340 ## @todo Hack to get at TOOL_ZIP_UNPACK; see if this can be integrated somehow...
341 include $(KBUILD_PATH)/tools/ZIP.kmk
[23650]342
[29079]343 $$(buildserver-efifw_0_OUTDIR)/unpacked.ts \
344 +| $$(buildserver-efifw_0_OUTDIR)/FV/VBOX.fd \
345 $$(buildserver-efifw_0_OUTDIR)/FV/VBOX64.fd: \
346 $$(buildserver-efifw_0_OUTDIR)/VBoxEfiFirmware.zip
[25706]347 $(call MSG_L1,Unpacking EFI firmware)
[23658]348 $(QUIET)$(TOOL_ZIP_UNPACK) $(TOOL_ZIP_UNPACKFLAGS) -o $< -d $(buildserver-efifw_0_OUTDIR)
[25706]349 $(APPEND) -t $@ "done"
[23656]350
[29079]351 $$(buildserver-efifw_0_OUTDIR)/VBoxEfiFirmware.zip: \
352 $(VBOX_SVN_REV_KMK) $(PATH_DEVTOOLS)/bin/efi_firmware.sh | $$(dir $$@)
[23660]353 $(RM) -f $@ $@.tmp
[29079]354 ifneq ($(KBUILD_HOST),win)
[23658]355 $(SHELL) $(PATH_DEVTOOLS)/bin/efi_firmware.sh --cmd fetch --filename $@.tmp
[29079]356 else
[34609]357 $(KMK) --affinity 1 -f $(MAKEFILE) buildserver-efifw-affinity-hack
[29079]358 endif
[23658]359 $(CP) -f $@.tmp $@
360 $(RM) -f $@.tmp
361## @todo kBuild: The $(CP)/$(RM) stuff can be replaced by a simple $(TOUCH) once that has been added to kBuild.
[23650]362
[29079]363 ifeq ($(KBUILD_HOST),win)
364 buildserver-efifw-affinity-hack:
[23661]365 $(SHELL) $(PATH_DEVTOOLS)/bin/efi_firmware.sh --cmd fetch --filename $(buildserver-efifw_0_OUTDIR)/VBoxEfiFirmware.zip.tmp
[29079]366 endif
367 else # !VBOX_WITH_EFIFW_FROM_BUILD_SERVER
368 #
369 # Or from the local copy
370 #
371 INSTALLS += local-efifw
372 local-efifw_INST = $(INST_BIN)
373 local-efifw_MODE = 0644
374 local-efifw_SOURCES = \
375 $(PATH_ROOT)/src/VBox/Devices/EFI/FirmwareBin/VBoxEFI32.fd=>VBoxEFI32.fd \
376 $(PATH_ROOT)/src/VBox/Devices/EFI/FirmwareBin/VBoxEFI64.fd=>VBoxEFI64.fd
377 endif # !VBOX_WITH_EFIFW_FROM_BUILD_SERVER
378 endif # VBOX_WITH_EFI
[23658]379
380
[11686]381#
[4398]382# Install staged binaries on platforms where we can't cross
[1648]383# compile things.
384#
[8758]385ifn1of ($(KBUILD_TARGET), l4 linux win)
[1648]386 VBOX_PATH_STAGED ?= .
387
388 # Additions.
389 ifndef VBOX_WITH_LINUX_ADDITIONS
390 ifndef VBOX_WITH_WIN32_ADDITIONS
391 ifneq ($(wildcard $(VBOX_PATH_STAGED)/VBoxGuestAdditions.iso),)
392 INSTALLS += staged-additions
[16957]393 staged-additions_INST = $(INST_ADDITIONS_ISO)
[1648]394 staged-additions_MODE = 0644
395 staged-additions_SOURCES = $(VBOX_PATH_STAGED)/VBoxGuestAdditions.iso
396 endif
397 endif
398 endif
399
400 # guesttool.exe
401 ifndef VBOX_WITH_WIN32_ADDITIONS
402 ifneq ($(wildcard $(VBOX_PATH_STAGED)/guesttool.exe),)
403 INSTALLS += staged-guesttool
404 staged-guesttool_INST = $(INST_BIN)
405 staged-guesttool_SOURCES = $(VBOX_PATH_STAGED)/guesttool.exe
406 endif
407 endif
408
409endif
410
[34482]411endif # !VBOX_ONLY_ADDITIONS && !VBOX_ONLY_DOCS && !VBOX_ONLY_EXTPACKS && !VBOX_ONLY_TESTSUITE
[1648]412
413
[12780]414ifdef VBOX_ONLY_DOCS
415# It may sound a bit odd, but for preparing the documentation package the
416# doxygen documentation isn't needed and increases the build time a lot.
[12781]417docs:
[12780]418else # !VBOX_ONLY_DOCS
[1]419#
420# Generate documentation.
421# (This should be converted into a separate pass or merged with an existing one later.)
422#
[34609]423 ifdef VBOX_WITH_ALL_DOXYGEN_TARGETS
[12780]424docs: docs.Core
[34609]425 endif
[11703]426endif # !VBOX_ONLY_DOCS
[1]427
[12647]428docs.Core docs.core: $(PATH_TARGET)/docs.Core
[1]429
430
[6288]431
[1]432#
[6288]433# The core (VMM+REM+Devices+Main) documentation.
[1]434#
[6288]435# This includes so much because we wish to have the complete CFGM
436# and GCFGM lists.
437#
438OTHER_CLEAN += \
[10226]439 $(PATH_TARGET)/Doxyfile.Core \
440 $(PATH_TARGET)/Doxyfile.Core.dep
[1]441
[10226]442VBOX_CORE_DOXYFILE_INPUT_DIRS = \
[6288]443 include/iprt \
[25647]444 include/iprt/cpp \
445 include/iprt/linux \
[6288]446 include/VBox \
447 include/VBox/com \
448 include/VBox/HostServices \
[25647]449 include/VBox/GuestHost \
450 include/VBox/HGSMI \
[6288]451 src/VBox/VMM \
452 src/VBox/VMM/VMMR0 \
453 src/VBox/VMM/VMMGC \
454 src/VBox/VMM/VMMAll \
455 src/VBox/VMM/PATM \
456 src/VBox/VMM/PATM/VMMR0 \
457 src/VBox/VMM/PATM/VMMGC \
458 src/VBox/VMM/PATM/VMMAll \
459 src/VBox/VMM/VMMSwitcher \
460 src/VBox/Debugger \
[10029]461 src/VBox/Devices \
[6288]462 src/VBox/Devices/Audio \
463 src/VBox/Devices/Bus \
464 src/VBox/Devices/Graphics \
465 src/VBox/Devices/Graphics/BIOS \
466 src/VBox/Devices/Input \
467 src/VBox/Devices/Networking \
468 src/VBox/Devices/PC \
469 src/VBox/Devices/PC/BIOS \
470 src/VBox/Devices/Parallel \
471 src/VBox/Devices/Serial \
472 src/VBox/Devices/Storage \
473 src/VBox/Devices/USB \
474 src/VBox/Devices/USB/darwin \
475 src/VBox/Devices/USB/linux \
476 src/VBox/Devices/USB/os2 \
477 src/VBox/Devices/USB/solaris \
478 src/VBox/Devices/USB/vrdp \
479 src/VBox/Devices/USB/win32 \
480 src/VBox/Devices/VMMDev \
481 src/VBox/Main/include \
482 src/VBox/Main/include/hgcm \
[10029]483 src/VBox/Main \
[6288]484 src/VBox/Main/glue \
485 src/VBox/Main/hgcm \
486 src/VBox/Main/webservice \
487 src/VBox/Main/xml \
488 src/VBox/Main/darwin \
489 src/VBox/Main/linux \
490 src/VBox/Main/os2 \
491 src/VBox/Main/solaris \
[10020]492 src/VBox/Main/win \
493 src/VBox/Main/xpcom \
[10029]494 src/VBox/HostServices \
[6307]495 src/VBox/HostServices/SharedClipboard \
496 src/VBox/HostServices/SharedFolders \
[10020]497 src/VBox/HostServices/SharedInfoServices \
[6307]498 src/VBox/HostServices/SharedOpenGL \
499 src/VBox/HostDrivers/Support \
500 src/VBox/HostDrivers/Support/darwin \
501 src/VBox/HostDrivers/Support/freebsd \
502 src/VBox/HostDrivers/Support/l4 \
503 src/VBox/HostDrivers/Support/linux \
504 src/VBox/HostDrivers/Support/os2 \
505 src/VBox/HostDrivers/Support/solaris \
506 src/VBox/HostDrivers/Support/win \
[10029]507 src/VBox/HostDrivers/VBoxNetFlt \
[10020]508 src/VBox/HostDrivers/VBoxNetFlt/darwin \
509 src/VBox/HostDrivers/VBoxNetFlt/linux \
510 src/VBox/HostDrivers/VBoxNetFlt/solaris \
511 src/VBox/HostDrivers/VBoxNetFlt/win \
[10029]512 src/VBox/HostDrivers/VBoxNetNat \
[10020]513 src/VBox/HostDrivers/VBoxNetNat/darwin \
514 src/VBox/HostDrivers/VBoxNetNat/linux \
515 src/VBox/HostDrivers/VBoxNetNat/solaris \
516 src/VBox/HostDrivers/VBoxNetNat/win \
[17850]517 src/VBox/HostDrivers/VBoxNetAdp \
518 src/VBox/HostDrivers/VBoxNetAdp/darwin \
519 src/VBox/HostDrivers/VBoxNetAdp/linux \
520 src/VBox/HostDrivers/VBoxNetAdp/solaris \
521 src/VBox/HostDrivers/VBoxNetAdp/win \
[10029]522 src/VBox/HostDrivers/VBoxUSB \
[6307]523 src/VBox/HostDrivers/VBoxUSB/darwin \
524 src/VBox/HostDrivers/VBoxUSB/os2 \
[10020]525 src/VBox/HostDrivers/VBoxUSB/solaris \
[6307]526 src/VBox/HostDrivers/VBoxUSB/win \
527 src/VBox/HostDrivers/VBoxUSB/win/Device \
528 src/VBox/HostDrivers/VBoxUSB/win/Device/amd64 \
529 src/VBox/HostDrivers/VBoxUSB/win/Device/x86 \
530 src/VBox/HostDrivers/VBoxUSB/win/Filter \
531 src/VBox/HostDrivers/VBoxUSB/win/Install \
532 src/VBox/HostDrivers/VBoxUSB/win/Monitor \
533 src/VBox/HostDrivers/VBoxUSB/win/Monitor/win32 \
534 src/VBox/HostDrivers/VBoxUSB/win/Monitor/win64 \
535 src/VBox/HostDrivers/VBoxUSB/win/usbd \
[33747]536 src/VBox/Storage
[6288]537
538# These must come first in order to make things look nice.
[10226]539VBOX_CORE_DOXYFILE_INPUT_FIRST =\
[6288]540 $(PATH_ROOT)/doc/VBox-doc.c \
541 $(PATH_ROOT)/doc/VBox-CodingGuidelines.cpp \
[19010]542 $(PATH_ROOT)/doc/VBox-MakefileGuidelines.cpp \
[6288]543 $(PATH_ROOT)/src/VBox/VMM/VMMCodingGuidelines.cpp \
544 $(PATH_ROOT)/src/VBox/VMM/VMMDocsRawMode.cpp \
545 $(PATH_ROOT)/include/VBox/cdefs.h \
546 $(PATH_ROOT)/include/VBox/vmapi.h \
547 $(PATH_ROOT)/include/VBox/vmm.h \
548 $(PATH_ROOT)/include/VBox/cpum.h \
549 $(PATH_ROOT)/include/VBox/mm.h \
550 $(PATH_ROOT)/include/VBox/pgm.h \
551 $(PATH_ROOT)/include/VBox/selm.h \
552 $(PATH_ROOT)/include/VBox/trpm.h \
553 $(PATH_ROOT)/include/VBox/patm.h \
554 $(PATH_ROOT)/include/VBox/dbgf.h \
555 $(PATH_ROOT)/include/VBox/stam.h \
556 $(PATH_ROOT)/include/VBox/em.h \
557 $(PATH_ROOT)/include/VBox/pdm.h \
558 $(PATH_ROOT)/include/VBox/rem.h \
559 $(PATH_ROOT)/include/VBox/iom.h \
560 $(PATH_ROOT)/include/VBox/cfgm.h \
561 $(PATH_ROOT)/include/VBox/tm.h \
562 $(PATH_ROOT)/include/VBox/csam.h \
563 $(PATH_ROOT)/include/VBox/ssm.h \
564 $(PATH_ROOT)/include/VBox/hwaccm.h \
565 $(PATH_ROOT)/include/VBox/hwacc_svm.h \
566 $(PATH_ROOT)/include/VBox/hwacc_vmx.h \
[10029]567 \
[6288]568 $(PATH_ROOT)/src/VBox/VMM/CFGMInternal.h \
569 $(PATH_ROOT)/src/VBox/VMM/CPUMInternal.h \
570 $(PATH_ROOT)/src/VBox/VMM/DBGFInternal.h \
571 $(PATH_ROOT)/src/VBox/VMM/EMInternal.h \
572 $(PATH_ROOT)/src/VBox/VMM/HWACCMInternal.h \
573 $(PATH_ROOT)/src/VBox/VMM/IOMInternal.h \
574 $(PATH_ROOT)/src/VBox/VMM/MMInternal.h \
575 $(PATH_ROOT)/src/VBox/VMM/PDMInternal.h \
576 $(PATH_ROOT)/src/VBox/VMM/PGMInternal.h \
577 $(PATH_ROOT)/src/VBox/VMM/PATM/CSAMInternal.h \
578 $(PATH_ROOT)/src/VBox/VMM/PATM/PATMInternal.h \
579 $(PATH_ROOT)/src/VBox/VMM/REMInternal.h \
580 $(PATH_ROOT)/src/VBox/VMM/SELMInternal.h \
581 $(PATH_ROOT)/src/VBox/VMM/SSMInternal.h \
582 $(PATH_ROOT)/src/VBox/VMM/STAMInternal.h \
583 $(PATH_ROOT)/src/VBox/VMM/TMInternal.h \
584 $(PATH_ROOT)/src/VBox/VMM/TRPMInternal.h \
585 $(PATH_ROOT)/src/VBox/VMM/VMInternal.h \
586 $(PATH_ROOT)/src/VBox/VMM/VMMInternal.h \
[10029]587 \
[6288]588 $(PATH_ROOT)/include/VBox/vm.h \
589 \
590 $(PATH_ROOT)/include/VBox/sup.h \
[33573]591 $(PATH_ROOT)/include/VBox/vd.h \
[6288]592 $(PATH_ROOT)/include/VBox/types.h \
593 $(PATH_ROOT)/include/VBox/err.h \
594 $(PATH_ROOT)/include/VBox/x86.h \
595 $(PATH_ROOT)/include/VBox/cpumdis.h \
596 $(PATH_ROOT)/include/VBox/dbggui.h \
597 $(PATH_ROOT)/include/VBox/dis.h \
598 $(PATH_ROOT)/include/VBox/disopcode.h \
599 $(PATH_ROOT)/include/VBox/intnet.h \
600 $(PATH_ROOT)/include/VBox/settings.h \
601 $(PATH_ROOT)/include/VBox/pci.h \
602 $(PATH_ROOT)/include/VBox/scsi.h \
603 $(PATH_ROOT)/include/VBox/shflsvc.h \
604 $(PATH_ROOT)/include/VBox/hgcmsvc.h \
605 $(PATH_ROOT)/include/VBox/usb.h \
606 $(PATH_ROOT)/include/VBox/vusb.h \
[10029]607 \
[6288]608 $(PATH_ROOT)/include/VBox/log.h \
609 $(PATH_ROOT)/include/VBox/param.h \
610 $(PATH_ROOT)/include/VBox/version.h
611
[10226]612VBOX_CORE_DOXYFILE_INPUT := \
613 $(filter-out %.cpp.h, $(sort $(wildcard $(addsuffix /*.h, $(VBOX_CORE_DOXYFILE_INPUT_DIRS)))) ) \
614 $(foreach dir, $(VBOX_CORE_DOXYFILE_INPUT_DIRS), $(wildcard $(dir)/*.cpp $(dir)/*.c $(dir)/.asm))
615VBOX_CORE_DOXYFILE_INPUT := \
616 $(VBOX_CORE_DOXYFILE_INPUT_FIRST) \
617 $(filter-out $(VBOX_CORE_DOXYFILE_INPUT_FIRST), $(VBOX_CORE_DOXYFILE_INPUT))
[6288]618
619# And some some additional stuff.
[10226]620VBOX_CORE_DOXYFILE_INPUT += \
[6288]621 $(PATH_ROOT)/src/recompiler/VBoxRecompiler.c \
622 $(PATH_ROOT)/src/recompiler/VBoxREMWrapper.cpp
623
624
[10226]625VBOX_CORE_DOXYFILE_OUTPUT = $(PATH_OUT)/docs/Core
[13547]626BLDDIRS += $(VBOX_CORE_DOXYFILE_OUTPUT)
[6288]627
[10226]628-include $(PATH_TARGET)/Doxyfile.Core.dep
[6288]629
630# Generate the Doxyfile
[10226]631$(PATH_TARGET)/Doxyfile.Core: Doxyfile.Core \
632 $(comp-vars VBOX_CORE_DOXYFILE_INPUT,DOXYGEN_INPUT_PREV,FORCE) \
633 $(comp-vars VBOX_CORE_DOXYFILE_OUTPUT,DOXYGEN_OUTPUT_PREV,FORCE) \
[16532]634 | $$(dir $$@)
[10226]635 $(RM) -f $@ $@.tmp $(PATH_TARGET)/Doxyfile.Core.dep
[6288]636 $(CP) -f Doxyfile.Core $@.tmp
637 $(APPEND) $@.tmp
[10226]638 $(APPEND) $@.tmp "OUTPUT_DIRECTORY = $(VBOX_CORE_DOXYFILE_OUTPUT)"
639 $(APPEND) $@.tmp "WARN_LOGFILE = $(VBOX_CORE_DOXYFILE_OUTPUT)/errors"
[6288]640 $(APPEND) $@.tmp "INCLUDE_PATH = $(PATH_ROOT)/include $(PATH_ROOT)/src/VBox/VMM $(PATH_ROOT)/src/VBox/Main/include "
641 $(APPEND) $@.tmp "INCLUDE_FILE_PATTERNS = *.cpp.h"
642 $(APPEND) $@.tmp
[10226]643 $(APPEND) $@.tmp "INPUT = $(VBOX_CORE_DOXYFILE_INPUT)"
[6288]644 $(APPEND) $@.tmp
[8758]645 $(APPEND) $@.tmp "PREDEFINED += $(DEFS) $(DEFS.$(KBUILD_TARGET)) $(DEFS.$(KBUILD_TARGET_ARCH)) $(ARCH_BITS_DEFS)"
[6288]646 $(APPEND) $@.tmp "PREDEFINED += ARCH_BITS=HC_ARCH_BITS R3_ARCH_BITS=HC_ARCH_BITS R0_ARCH_BITS=HC_ARCH_BITS "
647 $(APPEND) $@.tmp
648 $(MV) -f $@.tmp $@
[10226]649 @$(APPEND) $(PATH_TARGET)/Doxyfile.Core.dep "DOXYGEN_OUTPUT_PREV = $(VBOX_CORE_DOXYFILE_OUTPUT)"
650 @$(APPEND) $(PATH_TARGET)/Doxyfile.Core.dep "DOXYGEN_INPUT_PREV = $(VBOX_CORE_DOXYFILE_INPUT)"
[6288]651
652# Do the actual job.
[13547]653$(PATH_TARGET)/docs.Core: $(PATH_TARGET)/Doxyfile.Core $$(VBOX_CORE_DOXYFILE_INPUT) | $(VBOX_CORE_DOXYFILE_OUTPUT)/
[10029]654 $(RM) -f $(PATH_TARGET)/docs.Core
[10226]655 $(RM) -Rf $(VBOX_CORE_DOXYFILE_OUTPUT)/html/
656 doxygen $(PATH_TARGET)/Doxyfile.Core
[6288]657 $(APPEND) $(PATH_TARGET)/docs.Core
[1]658
[6288]659
[27014]660#
661# Alias for kmk_time. Used by both the additions and testsuite build setups.
662#
663VBOX_KMK_TIME = $(KBUILD_BIN_PATH)/kmk_time
[1]664
[34637]665#
[34648]666# Common rsync bits.
[34637]667#
[34639]668
669##
[34648]670# The basic rsync invocation for syncing the tree into a VM; the source and
671# target specs are missing.
672#
[34639]673# @param 1 os name.
[34648]674# @param 2 arch or *.
675#
[34649]676VBOX_RSYNC_IN_FN = rsync -a -v --delete --delete-excluded --prune-empty-dirs \
[34637]677 --exclude .svn/ \
678 --exclude doc/Devices/ \
679 --exclude doc/tg/ \
680 --exclude doc/vp/ \
681 --exclude doc/L4VM/ \
682 --exclude tinderclient.log \
683 --exclude tools/FetchDir/ \
[34640]684 --exclude webtools/ \
685 $(foreach os,darwin freebsd linux solaris os2 win,$(if-expr "$(1)" != "$(os)", \
686 --exclude tools/$(os).x86/ \
[34650]687 --exclude tools/$(os).amd64/ \
688 --exclude out/$(os).amd64/ \
689 --exclude out/$(os).x86/ \
[34651]690 ,$(select \
691 "$(2)" == "x86" , --exclude out/$(os).amd64/$(KBUILD_TYPE)/, \
692 "$(2)" == "amd64", --exclude out/$(os).x86/$(KBUILD_TYPE)/) \
693 ))
[27014]694
[1]695#
[6052]696# Build the additions, all of them.
697#
[6129]698# This is currently tailored (hardcoded) for the additions
[6052]699# build box. Can make it pretty and configurable later.
700#
701# The fetching must be done in serial fashion, while the building
702# should be more flexible wrt to -jN.
703#
704additions-fetch:
[27076]705 + $(KMK) -C tools fetch VBOX_ONLY_ADDITIONS=1
706 + $(KMK) -C tools fetch KBUILD_TARGET_ARCH=amd64 KBUILD_TARGET=linux BUILD_TARGET_ARCH=amd64 BUILD_TARGET=linux VBOX_ONLY_ADDITIONS=1
707 + $(KMK) -C tools fetch KBUILD_TARGET_ARCH=x86 KBUILD_TARGET=linux BUILD_TARGET_ARCH=x86 BUILD_TARGET=linux VBOX_ONLY_ADDITIONS=1
708# + $(KMK) -C tools fetch KBUILD_TARGET_ARCH=x86 KBUILD_TARGET=os2 BUILD_TARGET_ARCH=x86 BUILD_TARGET=os2 VBOX_ONLY_ADDITIONS=1
709 + $(KMK) -C tools fetch KBUILD_TARGET_ARCH=amd64 KBUILD_TARGET=solaris BUILD_TARGET_ARCH=amd64 BUILD_TARGET=solaris VBOX_ONLY_ADDITIONS=1
710 + $(KMK) -C tools fetch KBUILD_TARGET_ARCH=x86 KBUILD_TARGET=solaris BUILD_TARGET_ARCH=x86 BUILD_TARGET=solaris VBOX_ONLY_ADDITIONS=1
711 + $(KMK) -C tools fetch KBUILD_TARGET_ARCH=amd64 KBUILD_TARGET=win BUILD_TARGET_ARCH=amd64 BUILD_TARGET=win VBOX_ONLY_ADDITIONS=1
712 + $(KMK) -C tools fetch KBUILD_TARGET_ARCH=x86 KBUILD_TARGET=win BUILD_TARGET_ARCH=x86 BUILD_TARGET=win VBOX_ONLY_ADDITIONS=1
[5957]713
[6052]714
[12337]715## @todo Currently combined solaris additions building assumes that amd64 is
[16043]716# built first. The windows amd64 additions need some x86 files, so don't change
[25220]717# the order of the windows builds. TODO: Split building and packing for these two VMs.
[6052]718additions-build: \
[25222]719 additions-build-solaris.amd64 \
720 additions-build-solaris.x86 \
[16043]721 additions-build-win.x86 \
[11898]722 additions-build-win.amd64 \
[6052]723 additions-build-os2.x86 \
[31139]724 additions-build-linux.x86.combined
[6052]725
[10161]726VBOX_ADDITIONS_BUILD.amd64 = VBOX_ONLY_ADDITIONS=1 VBOX_WITHOUT_ADDITIONS_ISO=1 \
727 KBUILD_TYPE=$(KBUILD_TYPE) BUILD_TYPE=$(KBUILD_TYPE) \
728 KBUILD_TARGET_ARCH=amd64 BUILD_TARGET_ARCH=amd64 \
[25209]729 VBOX_SVN_REV=$(VBOX_SVN_REV)
[10161]730
[8762]731VBOX_ADDITIONS_BUILD.x86 = VBOX_ONLY_ADDITIONS=1 VBOX_WITHOUT_ADDITIONS_ISO=1 \
732 KBUILD_TYPE=$(KBUILD_TYPE) BUILD_TYPE=$(KBUILD_TYPE) \
733 KBUILD_TARGET_ARCH=x86 BUILD_TARGET_ARCH=x86 \
[25209]734 VBOX_SVN_REV=$(VBOX_SVN_REV)
[6052]735
[12833]736# Automatically determine the additions build subdir name. Used for figuring
737# out directory names inside the additions building VMs.
738VBOX_ADDITIONS_BUILD_SUBDIRNAME := $(lastword $(subst /, ,$(PATH_ROOT)))
739
[25225]740# When building in parallel on a Windows host, make sure we finish the host
741# bit before kicking off any UNIX guest or we'll run into file sharing issues.
742ifeq ($(KBUILD_TARGET),win)
743VBOX_ADDITIONS_BUILD_WIN_HOST_FIRST = additions-build-win.x86 additions-build-win.amd64
744else
745VBOX_ADDITIONS_BUILD_WIN_HOST_FIRST =
746endif
747
[25220]748# ASSUMES the 32-bit edition has been built already. Also for serializing VM access.
[25221]749additions-build-win.amd64: additions-build-win.x86
[10161]750ifeq ($(KBUILD_TARGET),win)
[25209]751 + $(VBOX_KMK_TIME) $(KMK) $(VBOX_ADDITIONS_BUILD.amd64) all $(VBOX_ADD_HOST_BUILD_TWEAK)
752 + $(VBOX_KMK_TIME) $(KMK) $(VBOX_ADDITIONS_BUILD.amd64) packing
[10161]753else
[13525]754 $(call MSG_L1,Building Windows/amd64 additions)
[25223]755 $(VBOX_KMK_TIME) ssh vbox@192.168.27.5 " echo $@ && cd e:/$(VBOX_ADDITIONS_BUILD_SUBDIRNAME) && tools/env.sh kmk $(VBOX_ADDITIONS_BUILD.amd64) all packing "
[10161]756endif
757
[6052]758additions-build-win.x86:
[8758]759ifeq ($(KBUILD_TARGET),win)
[25209]760 + $(VBOX_KMK_TIME) $(KMK) $(VBOX_ADDITIONS_BUILD.x86) all $(VBOX_ADD_HOST_BUILD_TWEAK)
761 + $(VBOX_KMK_TIME) $(KMK) $(VBOX_ADDITIONS_BUILD.x86) packing
[6052]762else
[13525]763 $(call MSG_L1,Building Windows/x86 additions)
[25223]764 $(VBOX_KMK_TIME) ssh vbox@192.168.27.5 " echo $@ && cd e:/$(VBOX_ADDITIONS_BUILD_SUBDIRNAME) && tools/env.sh kmk $(VBOX_ADDITIONS_BUILD.x86) all packing"
[6052]765endif
[6129]766
[25221]767# ASSUMES the 64-bit edition are built first. This also serializes VM access.
768ifeq ($(KBUILD_TARGET),solaris)
[10161]769additions-build-solaris.amd64:
[25209]770 + $(VBOX_KMK_TIME) $(KMK) $(VBOX_ADDITIONS_BUILD.amd64) all $(VBOX_ADD_HOST_BUILD_TWEAK)
771 + $(VBOX_KMK_TIME) $(KMK) $(VBOX_ADDITIONS_BUILD.amd64) packing
[25221]772
773additions-build-solaris.x86: additions-build-solaris.amd64
774 + $(VBOX_KMK_TIME) $(KMK) $(VBOX_ADDITIONS_BUILD.x86) VBOX_WITH_COMBINED_SOLARIS_GUEST_PACKAGE=1 all $(VBOX_ADD_HOST_BUILD_TWEAK)
775 + $(VBOX_KMK_TIME) $(KMK) $(VBOX_ADDITIONS_BUILD.x86) VBOX_WITH_COMBINED_SOLARIS_GUEST_PACKAGE=1 packing
776
[10161]777else
[25683]778additions-build-solaris.rsync-into-vm: $(VBOX_ADDITIONS_BUILD_WIN_HOST_FIRST)
[25222]779 $(VBOX_KMK_TIME) rsync -a --delete --delete-excluded --exclude .svn --exclude FetchDir --exclude tinderclient.log --exclude win.amd64 --exclude win.x86 . 192.168.27.4:/mnt/tinderbox/$(VBOX_ADDITIONS_BUILD_SUBDIRNAME)
[25221]780
[25683]781additions-build-solaris.build-it: additions-build-solaris.rsync-into-vm
[25221]782 $(call MSG_L1,Building Solaris/amd64 additions)
[25223]783 $(VBOX_KMK_TIME) ssh vbox@192.168.27.4 " echo $@/amd64 && cd /mnt/tinderbox/$(VBOX_ADDITIONS_BUILD_SUBDIRNAME) && tools/env.sh --no-wine kmk $(VBOX_ADDITIONS_BUILD.amd64) all packing"
[13525]784 $(call MSG_L1,Building Solaris/x86 additions)
[25223]785 $(VBOX_KMK_TIME) ssh vbox@192.168.27.4 " 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"
[25221]786
[25222]787additions-build-solaris.rsync-out-of-vm: additions-build-solaris.build-it
788 $(VBOX_KMK_TIME) rsync -a --delete 192.168.27.4:/mnt/tinderbox/$(VBOX_ADDITIONS_BUILD_SUBDIRNAME)/out/solaris.x86 out/
789 $(VBOX_KMK_TIME) rsync -a --delete 192.168.27.4:/mnt/tinderbox/$(VBOX_ADDITIONS_BUILD_SUBDIRNAME)/out/solaris.amd64 out/
790
791.NOTPARALLEL: additions-build-solaris.rsync-out-of-vm additions-build-solaris.rsync-into-vm
792.PHONY: additions-build-solaris.rsync-out-of-vm additions-build-solaris.rsync-into-vm additions-build-solaris.build-it
793
794additions-build-solaris.amd64: additions-build-solaris.rsync-out-of-vm
795additions-build-solaris.x86: additions-build-solaris.rsync-out-of-vm
[8032]796endif
[6052]797
798additions-build-os2.x86:
[8758]799#ifeq ($(KBUILD_TARGET),os2)
[25209]800# + $(VBOX_KMK_TIME) $(KMK) $(VBOX_ADDITIONS_BUILD.x86) all $(VBOX_ADD_HOST_BUILD_TWEAK)
801# + $(VBOX_KMK_TIME) $(KMK) $(VBOX_ADDITIONS_BUILD.x86) packing
[6052]802#else
[18908]803# $(VBOX_KMK_TIME) ssh vbox@192.168.27.3 " cd /mnt/tinderbox/$(VBOX_ADDITIONS_BUILD_SUBDIRNAME) && tools/env.sh --no-wine kmk $(VBOX_ADDITIONS_BUILD.x86) "
[6052]804#endif
805
[25225]806additions-build-linux.amd64: $(VBOX_ADDITIONS_BUILD_WIN_HOST_FIRST)
[10161]807ifeq ($(KBUILD_TARGET).$(KBUILD_TARGET_ARCH),linux.amd64)
[25209]808 + $(VBOX_KMK_TIME) $(KMK) $(VBOX_ADDITIONS_BUILD.amd64) all $(VBOX_ADD_HOST_BUILD_TWEAK)
[31139]809 + $(VBOX_KMK_TIME) $(KMK) $(VBOX_ADDITIONS_BUILD.amd64) packing VBOX_WITHOUT_LINUX_GUEST_PACKAGE=1
[10161]810else
[13525]811 $(call MSG_L1,Building Linux/amd64 additions)
[31139]812 $(VBOX_KMK_TIME) ssh vbox@192.168.27.12 " 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"
[10161]813endif
814
[31139]815additions-build-linux.x86: $(VBOX_ADDITIONS_BUILD_WIN_HOST_FIRST)
[8904]816ifeq ($(KBUILD_TARGET).$(KBUILD_TARGET_ARCH),linux.x86)
[25209]817 + $(VBOX_KMK_TIME) $(KMK) $(VBOX_ADDITIONS_BUILD.x86) all $(VBOX_ADD_HOST_BUILD_TWEAK)
[31139]818 + $(VBOX_KMK_TIME) $(KMK) $(VBOX_ADDITIONS_BUILD.x86) packing VBOX_WITHOUT_LINUX_GUEST_PACKAGE=1
[6052]819else
[13525]820 $(call MSG_L1,Building Linux/x86 additions)
[31139]821 $(VBOX_KMK_TIME) ssh vbox@192.168.27.2 " echo $@ && 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"
822endif
823
824# Combined Linux Additions .run package. This depends on the archives
825# created during packing by the archetecture-specific builds.
826additions-build-linux.x86.combined: $(VBOX_ADDITIONS_BUILD_WIN_HOST_FIRST) additions-build-linux.x86 additions-build-linux.amd64
827ifeq ($(KBUILD_TARGET).$(KBUILD_TARGET_ARCH),linux.x86)
828 + $(VBOX_KMK_TIME) $(KMK) $(VBOX_ADDITIONS_BUILD.x86) all $(VBOX_ADD_HOST_BUILD_TWEAK)
829 + $(VBOX_KMK_TIME) $(KMK) $(VBOX_ADDITIONS_BUILD.x86) packing VBOX_WITH_COMBINED_LINUX_GUEST_PACKAGE=1
830else
831 $(call MSG_L1,Building Linux/x86 additions)
[31134]832 $(VBOX_KMK_TIME) ssh vbox@192.168.27.2 " echo $@ && 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"
[6052]833endif
834
835
836additions-packing:
837 + $(KMK) VBOX_ONLY_ADDITIONS=1 \
[9641]838 VBOX_WITH_ADDITIONS_ISO.freebsd.amd64= \
[9643]839 VBOX_WITH_ADDITIONS_ISO.freebsd.x86= \
[31139]840 VBOX_WITH_ADDITIONS_ISO.linux.amd64= \
[6052]841 VBOX_WITH_ADDITIONS_ISO.linux.x86=1 \
[31150]842 VBOX_WITH_COMBINED_LINUX_GUEST_PACKAGE=1 \
[12337]843 VBOX_WITH_ADDITIONS_ISO.solaris.amd64=1 \
[8058]844 VBOX_WITH_ADDITIONS_ISO.solaris.x86=1 \
[12337]845 VBOX_WITH_COMBINED_SOLARIS_GUEST_PACKAGE=1 \
[11898]846 VBOX_WITH_ADDITIONS_ISO.win.amd64=1 \
[9641]847 VBOX_WITH_ADDITIONS_ISO.win.x86=1 \
[6052]848 -C src/VBox/Additions \
849 $(VBOX_PATH_ADDITIONS)/VBoxGuestAdditions.iso
850
[25221]851.PHONY: \
852 additions-build-win.x86 \
853 additions-build-win.amd64 \
854 additions-build-solaris.amd64 \
855 additions-build-solaris.x86 \
856 additions-build-os2.x86 \
857 additions-build-linux.amd64 \
858 additions-build-linux.x86 \
[31139]859 additions-build-linux.x86.combined \
[25221]860 additions-packing
[12804]861
862
863#
[34482]864# Build the extension packs, all of them.
865#
866# This is tailored (hardcoded) for the extension pack build box.
867#
868# The fetching must be done in serial fashion, while the building should be
869# more flexible wrt to -jN.
870#
871extpacks-fetch:
872 + $(KMK) -C tools fetch VBOX_ONLY_EXTPACKS=1
[34620]873 + $(KMK) -C tools fetch KBUILD_TARGET_ARCH=amd64 KBUILD_TARGET=darwin BUILD_TARGET_ARCH=amd64 BUILD_TARGET=darwin VBOX_ONLY_EXTPACKS=1
874 + $(KMK) -C tools fetch KBUILD_TARGET_ARCH=x86 KBUILD_TARGET=darwin BUILD_TARGET_ARCH=x86 BUILD_TARGET=darwin VBOX_ONLY_EXTPACKS=1
[34482]875# + $(KMK) -C tools fetch KBUILD_TARGET_ARCH=amd64 KBUILD_TARGET=freebsd BUILD_TARGET_ARCH=amd64 BUILD_TARGET=freebsd VBOX_ONLY_EXTPACKS=1
876# + $(KMK) -C tools fetch KBUILD_TARGET_ARCH=x86 KBUILD_TARGET=freebsd BUILD_TARGET_ARCH=x86 BUILD_TARGET=freebsd VBOX_ONLY_EXTPACKS=1
877 + $(KMK) -C tools fetch KBUILD_TARGET_ARCH=amd64 KBUILD_TARGET=linux BUILD_TARGET_ARCH=amd64 BUILD_TARGET=linux VBOX_ONLY_EXTPACKS=1
878 + $(KMK) -C tools fetch KBUILD_TARGET_ARCH=x86 KBUILD_TARGET=linux BUILD_TARGET_ARCH=x86 BUILD_TARGET=linux VBOX_ONLY_EXTPACKS=1
879# + $(KMK) -C tools fetch KBUILD_TARGET_ARCH=x86 KBUILD_TARGET=os2 BUILD_TARGET_ARCH=x86 BUILD_TARGET=os2 VBOX_ONLY_EXTPACKS=1
880 + $(KMK) -C tools fetch KBUILD_TARGET_ARCH=amd64 KBUILD_TARGET=solaris BUILD_TARGET_ARCH=amd64 BUILD_TARGET=solaris VBOX_ONLY_EXTPACKS=1
881 + $(KMK) -C tools fetch KBUILD_TARGET_ARCH=x86 KBUILD_TARGET=solaris BUILD_TARGET_ARCH=x86 BUILD_TARGET=solaris VBOX_ONLY_EXTPACKS=1
882 + $(KMK) -C tools fetch KBUILD_TARGET_ARCH=amd64 KBUILD_TARGET=win BUILD_TARGET_ARCH=amd64 BUILD_TARGET=win VBOX_ONLY_EXTPACKS=1
883 + $(KMK) -C tools fetch KBUILD_TARGET_ARCH=x86 KBUILD_TARGET=win BUILD_TARGET_ARCH=x86 BUILD_TARGET=win VBOX_ONLY_EXTPACKS=1
884
885
886extpacks-build: \
[34625]887 extpacks-build-win.amd64 \
888 extpacks-build-win.x86 \
[34482]889 extpacks-build-solaris.amd64 \
890 extpacks-build-solaris.x86 \
[34625]891 extpacks-build-os2.x86 \
892 extpacks-build-linux.amd64 \
893 extpacks-build-linux.x86 \
[34620]894 extpacks-build-darwin.amd64 \
895 extpacks-build-darwin.x86 \
[34625]896 extpacks-build-freebsd.amd64 \
897 extpacks-build-freebsd.x86
[34482]898
899VBOX_EXTPACKS_BUILD.amd64 = VBOX_ONLY_EXTPACKS=1 \
900 KBUILD_TYPE=$(KBUILD_TYPE) BUILD_TYPE=$(KBUILD_TYPE) \
901 KBUILD_TARGET_ARCH=amd64 BUILD_TARGET_ARCH=amd64 \
902 VBOX_SVN_REV=$(VBOX_SVN_REV)
903
904VBOX_EXTPACKS_BUILD.x86 = VBOX_ONLY_EXTPACKS=1 \
905 KBUILD_TYPE=$(KBUILD_TYPE) BUILD_TYPE=$(KBUILD_TYPE) \
906 KBUILD_TARGET_ARCH=x86 BUILD_TARGET_ARCH=x86 \
907 VBOX_SVN_REV=$(VBOX_SVN_REV)
908
909# Automatically determine the extpack build subdir name. Used for figuring out
910# directory names inside the extension pack building VMs.
911VBOX_EXTPACKS_BUILD_SUBDIRNAME := $(lastword $(subst /, ,$(PATH_ROOT)))
912
913# When building in parallel on a Windows host, make sure we finish the host
914# bit before kicking off any UNIX guest or we'll run into file sharing issues.
915ifeq ($(KBUILD_TARGET),win)
916VBOX_EXTPACKS_BUILD_WIN_HOST_FIRST = extpacks-build-win.x86 extpacks-build-win.amd64
917else
918VBOX_EXTPACKS_BUILD_WIN_HOST_FIRST =
919endif
920
921extpacks-build-win.amd64:
922ifeq ($(KBUILD_TARGET),win)
923 + $(VBOX_KMK_TIME) $(KMK) $(VBOX_EXTPACKS_BUILD.amd64) all $(VBOX_EXTPACKS_HOST_BUILD_TWEAK)
924else
925 $(call MSG_L1,Building Windows/amd64 extension packs)
[34620]926 $(VBOX_KMK_TIME) ssh vbox@192.168.27.6 " echo $@ && cd e:/$(VBOX_EXTPACKS_BUILD_SUBDIRNAME) && tools/env.sh kmk $(VBOX_EXTPACKS_BUILD.amd64) all"
[34482]927endif
928
929extpacks-build-win.x86:
930ifeq ($(KBUILD_TARGET),win)
931 + $(VBOX_KMK_TIME) $(KMK) $(VBOX_EXTPACKS_BUILD.x86) all $(VBOX_EXTPACKS_HOST_BUILD_TWEAK)
932else
933 $(call MSG_L1,Building Windows/x86 extension packs)
[34620]934 $(VBOX_KMK_TIME) ssh vbox@192.168.27.16 " echo $@ && cd e:/$(VBOX_EXTPACKS_BUILD_SUBDIRNAME) && tools/env.sh kmk $(VBOX_EXTPACKS_BUILD.x86) all"
[34482]935endif
936
937ifeq ($(KBUILD_TARGET),solaris)
938extpacks-build-solaris.amd64:
939 + $(VBOX_KMK_TIME) $(KMK) $(VBOX_EXTPACKS_BUILD.amd64) all $(VBOX_EXTPACKS_HOST_BUILD_TWEAK)
940
941extpacks-build-solaris.x86: extpacks-build-solaris.amd64
942 + $(VBOX_KMK_TIME) $(KMK) $(VBOX_EXTPACKS_BUILD.x86) VBOX_WITH_COMBINED_SOLARIS_GUEST_PACKAGE=1 all $(VBOX_EXTPACKS_HOST_BUILD_TWEAK)
943
944else
945# Serialize 32-bit and 64-bit ASSUMING the same VM builds both.
946extpacks-build-solaris.rsync-into-vm: $(VBOX_EXTPACKS_BUILD_WIN_HOST_FIRST)
[34648]947 $(VBOX_KMK_TIME) $(call VBOX_RSYNC_IN_FN,solaris,*) . 192.168.27.4:/mnt/tinderbox/$(VBOX_EXTPACKS_BUILD_SUBDIRNAME)
[34482]948
949extpacks-build-solaris.build-it: extpacks-build-solaris.rsync-into-vm
950 $(call MSG_L1,Building Solaris/amd64 extension packs)
951 $(VBOX_KMK_TIME) ssh vbox@192.168.27.4 " echo $@/amd64 && cd /mnt/tinderbox/$(VBOX_EXTPACKS_BUILD_SUBDIRNAME) && tools/env.sh --no-wine kmk $(VBOX_EXTPACKS_BUILD.amd64) all"
952 $(call MSG_L1,Building Solaris/x86 extension packs)
953 $(VBOX_KMK_TIME) ssh vbox@192.168.27.4 " echo $@/x86 && cd /mnt/tinderbox/$(VBOX_EXTPACKS_BUILD_SUBDIRNAME) && tools/env.sh --no-wine kmk $(VBOX_EXTPACKS_BUILD.x86) all"
954
955extpacks-build-solaris.rsync-out-of-vm: extpacks-build-solaris.build-it
956 $(VBOX_KMK_TIME) rsync -a --delete 192.168.27.4:/mnt/tinderbox/$(VBOX_EXTPACKS_BUILD_SUBDIRNAME)/out/solaris.x86 out/
957 $(VBOX_KMK_TIME) rsync -a --delete 192.168.27.4:/mnt/tinderbox/$(VBOX_EXTPACKS_BUILD_SUBDIRNAME)/out/solaris.amd64 out/
958
959.NOTPARALLEL: extpacks-build-solaris.rsync-out-of-vm extpacks-build-solaris.rsync-into-vm
960.PHONY: extpacks-build-solaris.rsync-out-of-vm extpacks-build-solaris.rsync-into-vm extpacks-build-solaris.build-it
961
962extpacks-build-solaris.amd64: extpacks-build-solaris.rsync-out-of-vm
963extpacks-build-solaris.x86: extpacks-build-solaris.rsync-out-of-vm
964endif
965
966extpacks-build-os2.x86:
967#ifeq ($(KBUILD_TARGET),os2)
968# + $(VBOX_KMK_TIME) $(KMK) $(VBOX_EXTPACKS_BUILD.x86) all $(VBOX_EXTPACKS_HOST_BUILD_TWEAK)
969#else
970# $(VBOX_KMK_TIME) ssh vbox@192.168.27.3 " cd /mnt/tinderbox/$(VBOX_EXTPACKS_BUILD_SUBDIRNAME) && tools/env.sh --no-wine kmk $(VBOX_EXTPACKS_BUILD.x86) "
971#endif
972
973extpacks-build-linux.amd64: $(VBOX_EXTPACKS_BUILD_WIN_HOST_FIRST)
974ifeq ($(KBUILD_TARGET).$(KBUILD_TARGET_ARCH),linux.amd64)
975 + $(VBOX_KMK_TIME) $(KMK) $(VBOX_EXTPACKS_BUILD.amd64) all $(VBOX_EXTPACKS_HOST_BUILD_TWEAK)
976else
977 $(call MSG_L1,Building Linux/amd64 extension packs)
978 $(VBOX_KMK_TIME) ssh vbox@192.168.27.12 " echo $@ && cd /mnt/tinderbox/$(VBOX_EXTPACKS_BUILD_SUBDIRNAME) && tools/env.sh --no-wine kmk $(VBOX_EXTPACKS_BUILD.amd64) all"
979endif
980
981extpacks-build-linux.x86: $(VBOX_EXTPACKS_BUILD_WIN_HOST_FIRST)
982ifeq ($(KBUILD_TARGET).$(KBUILD_TARGET_ARCH),linux.x86)
983 + $(VBOX_KMK_TIME) $(KMK) $(VBOX_EXTPACKS_BUILD.x86) all $(VBOX_EXTPACKS_HOST_BUILD_TWEAK)
984else
985 $(call MSG_L1,Building Linux/x86 extension packs)
[34788]986 $(VBOX_KMK_TIME) ssh vbox@192.168.27.11 " echo $@ && cd /mnt/tinderbox/$(VBOX_EXTPACKS_BUILD_SUBDIRNAME) && tools/env.sh --no-wine kmk $(VBOX_EXTPACKS_BUILD.x86) all"
[34482]987endif
988
989extpacks-build-freebsd.amd64: $(VBOX_EXTPACKS_BUILD_WIN_HOST_FIRST)
[34625]990#ifeq ($(KBUILD_TARGET).$(KBUILD_TARGET_ARCH),freebsd.amd64)
991# + $(VBOX_KMK_TIME) $(KMK) $(VBOX_EXTPACKS_BUILD.amd64) all $(VBOX_EXTPACKS_HOST_BUILD_TWEAK)
992#else
993# $(call MSG_L1,Building FreeBSD/amd64 extension packs)
994# $(VBOX_KMK_TIME) ssh vbox@192.168.27.17 " echo $@ && cd /mnt/tinderbox/$(VBOX_EXTPACKS_BUILD_SUBDIRNAME) && tools/env.sh --no-wine kmk $(VBOX_EXTPACKS_BUILD.amd64) all"
995#endif
[34482]996
997extpacks-build-freebsd.x86: $(VBOX_EXTPACKS_BUILD_WIN_HOST_FIRST)
[34625]998#ifeq ($(KBUILD_TARGET).$(KBUILD_TARGET_ARCH),freebsd.x86)
999# + $(VBOX_KMK_TIME) $(KMK) $(VBOX_EXTPACKS_BUILD.x86) all $(VBOX_EXTPACKS_HOST_BUILD_TWEAK)
1000#else
1001# $(call MSG_L1,Building FreeBSD/x86 extension packs)
1002# $(VBOX_KMK_TIME) ssh vbox@192.168.27.7 " echo $@ && cd /mnt/tinderbox/$(VBOX_EXTPACKS_BUILD_SUBDIRNAME) && tools/env.sh --no-wine kmk $(VBOX_EXTPACKS_BUILD.x86) all"
1003#endif
[34482]1004
1005extpacks-build-darwin.amd64: $(VBOX_EXTPACKS_BUILD_WIN_HOST_FIRST)
1006ifeq ($(KBUILD_TARGET).$(KBUILD_TARGET_ARCH),darwin.amd64)
1007 + $(VBOX_KMK_TIME) $(KMK) $(VBOX_EXTPACKS_BUILD.amd64) all $(VBOX_EXTPACKS_HOST_BUILD_TWEAK)
1008else
1009 $(call MSG_L1,Building Darwin/amd64 extension packs)
[34648]1010 $(VBOX_KMK_TIME) $(call VBOX_RSYNC_IN_FN,darwin,amd64) . 192.168.27.15:/Users/vbox/tinderbox/$(VBOX_EXTPACKS_BUILD_SUBDIRNAME)
[34636]1011 $(VBOX_KMK_TIME) ssh vbox@192.168.27.15 " echo $@ && cd /Users/vbox/tinderbox/$(VBOX_EXTPACKS_BUILD_SUBDIRNAME) && tools/env.sh --no-wine kmk $(VBOX_EXTPACKS_BUILD.amd64) all"
[34644]1012 $(VBOX_KMK_TIME) rsync -am -v --delete 192.168.27.15:/Users/vbox/tinderbox/$(VBOX_EXTPACKS_BUILD_SUBDIRNAME)/out/darwin.amd64 out/
[34482]1013endif
1014
1015extpacks-build-darwin.x86: $(VBOX_EXTPACKS_BUILD_WIN_HOST_FIRST)
1016ifeq ($(KBUILD_TARGET).$(KBUILD_TARGET_ARCH),darwin.x86)
1017 + $(VBOX_KMK_TIME) $(KMK) $(VBOX_EXTPACKS_BUILD.x86) all $(VBOX_EXTPACKS_HOST_BUILD_TWEAK)
1018else
1019 $(call MSG_L1,Building Darwin/x86 extension packs)
[34648]1020 $(VBOX_KMK_TIME) $(call VBOX_RSYNC_IN_FN,darwin,x86) . 192.168.27.5:/Users/vbox/tinderbox/$(VBOX_EXTPACKS_BUILD_SUBDIRNAME)
[34636]1021 $(VBOX_KMK_TIME) ssh vbox@192.168.27.5 " echo $@ && cd /Users/vbox/tinderbox/$(VBOX_EXTPACKS_BUILD_SUBDIRNAME) && tools/env.sh --no-wine kmk $(VBOX_EXTPACKS_BUILD.x86) all"
[34644]1022 $(VBOX_KMK_TIME) rsync -am -v --delete 192.168.27.5:/Users/vbox/tinderbox/$(VBOX_EXTPACKS_BUILD_SUBDIRNAME)/out/darwin.x86 out/
[34482]1023endif
1024
1025
1026extpacks-packing:
[34484]1027 + $(KMK) VBOX_ONLY_EXTPACKS=1 \
[34622]1028 VBOX_WITH_EXTPACK_OS_ARCHS="darwin.amd64 darwin.x86 linux.amd64 linux.x86 solaris.amd64 solaris.x86 win.amd64 win.x86" \
[34484]1029 packing
[34622]1030# +++ freebsd.amd64 freebsd.x86 os2.x86 ^^^
[34482]1031
1032.PHONY: \
1033 extpacks-build-win.x86 \
1034 extpacks-build-win.amd64 \
1035 extpacks-build-solaris.amd64 \
1036 extpacks-build-solaris.x86 \
1037 extpacks-build-os2.x86 \
1038 extpacks-build-linux.amd64 \
1039 extpacks-build-linux.x86 \
1040 extpacks-build-freebsd.amd64 \
1041 extpacks-build-freebsd.x86 \
1042 extpacks-build-darwin.amd64 \
1043 extpacks-build-darwin.x86 \
1044 extpacks-packing
1045
1046
1047#
[27014]1048# Build the test suite, all of it.
1049#
1050# This is currently tailored (hardcoded) for the additions build box just like
1051# the additions build above, which it in fact is a copy of.
1052#
1053testsuite-fetch:
[27076]1054 + $(KMK) -C tools fetch VBOX_ONLY_TESTSUITE=1
[34625]1055 + $(KMK) -C tools fetch KBUILD_TARGET_ARCH=amd64 KBUILD_TARGET=darwin BUILD_TARGET_ARCH=amd64 BUILD_TARGET=darwin VBOX_ONLY_TESTSUITE=1
1056 + $(KMK) -C tools fetch KBUILD_TARGET_ARCH=x86 KBUILD_TARGET=darwin BUILD_TARGET_ARCH=x86 BUILD_TARGET=darwin VBOX_ONLY_TESTSUITE=1
1057# + $(KMK) -C tools fetch KBUILD_TARGET_ARCH=amd64 KBUILD_TARGET=freebsd BUILD_TARGET_ARCH=amd64 BUILD_TARGET=freebsd VBOX_ONLY_TESTSUITE=1
1058# + $(KMK) -C tools fetch KBUILD_TARGET_ARCH=x86 KBUILD_TARGET=freebsd BUILD_TARGET_ARCH=x86 BUILD_TARGET=freebsd VBOX_ONLY_TESTSUITE=1
[27029]1059 + $(KMK) -C tools fetch KBUILD_TARGET_ARCH=amd64 KBUILD_TARGET=linux BUILD_TARGET_ARCH=amd64 BUILD_TARGET=linux VBOX_ONLY_TESTSUITE=1
1060 + $(KMK) -C tools fetch KBUILD_TARGET_ARCH=x86 KBUILD_TARGET=linux BUILD_TARGET_ARCH=x86 BUILD_TARGET=linux VBOX_ONLY_TESTSUITE=1
1061# + $(KMK) -C tools fetch KBUILD_TARGET_ARCH=x86 KBUILD_TARGET=os2 BUILD_TARGET_ARCH=x86 BUILD_TARGET=os2 VBOX_ONLY_TESTSUITE=1
1062 + $(KMK) -C tools fetch KBUILD_TARGET_ARCH=amd64 KBUILD_TARGET=solaris BUILD_TARGET_ARCH=amd64 BUILD_TARGET=solaris VBOX_ONLY_TESTSUITE=1
1063 + $(KMK) -C tools fetch KBUILD_TARGET_ARCH=x86 KBUILD_TARGET=solaris BUILD_TARGET_ARCH=x86 BUILD_TARGET=solaris VBOX_ONLY_TESTSUITE=1
1064 + $(KMK) -C tools fetch KBUILD_TARGET_ARCH=amd64 KBUILD_TARGET=win BUILD_TARGET_ARCH=amd64 BUILD_TARGET=win VBOX_ONLY_TESTSUITE=1
1065 + $(KMK) -C tools fetch KBUILD_TARGET_ARCH=x86 KBUILD_TARGET=win BUILD_TARGET_ARCH=x86 BUILD_TARGET=win VBOX_ONLY_TESTSUITE=1
[27014]1066
1067
1068testsuite-build: \
1069 testsuite-build-solaris.amd64 \
1070 testsuite-build-solaris.x86 \
1071 testsuite-build-win.x86 \
1072 testsuite-build-win.amd64 \
1073 testsuite-build-os2.x86 \
1074 testsuite-build-linux.amd64 \
[34625]1075 testsuite-build-linux.x86 \
1076 testsuite-build-freebsd.amd64 \
1077 testsuite-build-freebsd.x86 \
1078 testsuite-build-darwin.amd64 \
1079 testsuite-build-darwin.x86
[27014]1080
[27070]1081VBOX_TESTSUITE_BUILD.amd64 = VBOX_ONLY_TESTSUITE=1 \
[27014]1082 KBUILD_TYPE=$(KBUILD_TYPE) BUILD_TYPE=$(KBUILD_TYPE) \
1083 KBUILD_TARGET_ARCH=amd64 BUILD_TARGET_ARCH=amd64 \
1084 VBOX_SVN_REV=$(VBOX_SVN_REV)
1085
[27070]1086VBOX_TESTSUITE_BUILD.x86 = VBOX_ONLY_TESTSUITE=1 \
[27014]1087 KBUILD_TYPE=$(KBUILD_TYPE) BUILD_TYPE=$(KBUILD_TYPE) \
1088 KBUILD_TARGET_ARCH=x86 BUILD_TARGET_ARCH=x86 \
1089 VBOX_SVN_REV=$(VBOX_SVN_REV)
1090
1091# Automatically determine the testsuite build subdir name. Used for figuring
1092# out directory names inside the test suite building VMs.
1093VBOX_TESTSUITE_BUILD_SUBDIRNAME := $(lastword $(subst /, ,$(PATH_ROOT)))
1094
1095# When building in parallel on a Windows host, make sure we finish the host
1096# bit before kicking off any UNIX guest or we'll run into file sharing issues.
1097ifeq ($(KBUILD_TARGET),win)
1098VBOX_TESTSUITE_BUILD_WIN_HOST_FIRST = testsuite-build-win.x86 testsuite-build-win.amd64
1099else
1100VBOX_TESTSUITE_BUILD_WIN_HOST_FIRST =
1101endif
1102
1103# ASSUMES the 32-bit edition has been built already. Also for serializing VM access.
1104testsuite-build-win.amd64: testsuite-build-win.x86
1105ifeq ($(KBUILD_TARGET),win)
1106 + $(VBOX_KMK_TIME) $(KMK) $(VBOX_TESTSUITE_BUILD.amd64) all $(VBOX_TESTSUITE_HOST_BUILD_TWEAK)
1107else
1108 $(call MSG_L1,Building Windows/amd64 testsuite)
[34625]1109 $(VBOX_KMK_TIME) ssh vbox@192.168.27.6 " echo $@ && cd e:/$(VBOX_TESTSUITE_BUILD_SUBDIRNAME) && tools/env.sh kmk $(VBOX_TESTSUITE_BUILD.amd64) all "
[27014]1110endif
1111
1112testsuite-build-win.x86:
1113ifeq ($(KBUILD_TARGET),win)
1114 + $(VBOX_KMK_TIME) $(KMK) $(VBOX_TESTSUITE_BUILD.x86) all $(VBOX_TESTSUITE_HOST_BUILD_TWEAK)
1115else
1116 $(call MSG_L1,Building Windows/x86 testsuite)
[34625]1117 $(VBOX_KMK_TIME) ssh vbox@192.168.27.16 " echo $@ && cd e:/$(VBOX_TESTSUITE_BUILD_SUBDIRNAME) && tools/env.sh kmk $(VBOX_TESTSUITE_BUILD.x86) all"
[27014]1118endif
1119
1120ifeq ($(KBUILD_TARGET),solaris)
1121testsuite-build-solaris.amd64:
1122 + $(VBOX_KMK_TIME) $(KMK) $(VBOX_TESTSUITE_BUILD.amd64) all $(VBOX_TESTSUITE_HOST_BUILD_TWEAK)
1123
[27070]1124testsuite-build-solaris.x86:
1125 + $(VBOX_KMK_TIME) $(KMK) $(VBOX_TESTSUITE_BUILD.x86) all $(VBOX_TESTSUITE_HOST_BUILD_TWEAK)
[27014]1126
1127else
1128testsuite-build-solaris.rsync-into-vm: $(VBOX_TESTSUITE_BUILD_WIN_HOST_FIRST)
1129 $(VBOX_KMK_TIME) rsync -a --delete --delete-excluded --exclude .svn --exclude FetchDir --exclude tinderclient.log --exclude win.amd64 --exclude win.x86 . 192.168.27.4:/mnt/tinderbox/$(VBOX_TESTSUITE_BUILD_SUBDIRNAME)
1130
1131testsuite-build-solaris.build-it: testsuite-build-solaris.rsync-into-vm
1132 $(call MSG_L1,Building Solaris/amd64 testsuite)
[27070]1133 $(VBOX_KMK_TIME) ssh vbox@192.168.27.4 " echo $@/amd64 && cd /mnt/tinderbox/$(VBOX_TESTSUITE_BUILD_SUBDIRNAME) && tools/env.sh --no-wine kmk $(VBOX_TESTSUITE_BUILD.amd64) all"
[27014]1134 $(call MSG_L1,Building Solaris/x86 testsuite)
[27070]1135 $(VBOX_KMK_TIME) ssh vbox@192.168.27.4 " echo $@/x86 && cd /mnt/tinderbox/$(VBOX_TESTSUITE_BUILD_SUBDIRNAME) && tools/env.sh --no-wine kmk $(VBOX_TESTSUITE_BUILD.x86) all "
[27014]1136
1137testsuite-build-solaris.rsync-out-of-vm: testsuite-build-solaris.build-it
[27070]1138 $(VBOX_KMK_TIME) rsync -a --delete 192.168.27.4:/mnt/tinderbox/$(VBOX_TESTSUITE_BUILD_SUBDIRNAME)/out/solaris.x86 out/
[27014]1139 $(VBOX_KMK_TIME) rsync -a --delete 192.168.27.4:/mnt/tinderbox/$(VBOX_TESTSUITE_BUILD_SUBDIRNAME)/out/solaris.amd64 out/
1140
1141.NOTPARALLEL: testsuite-build-solaris.rsync-out-of-vm testsuite-build-solaris.rsync-into-vm
1142.PHONY: testsuite-build-solaris.rsync-out-of-vm testsuite-build-solaris.rsync-into-vm testsuite-build-solaris.build-it
1143
1144testsuite-build-solaris.amd64: testsuite-build-solaris.rsync-out-of-vm
[27070]1145testsuite-build-solaris.x86: testsuite-build-solaris.rsync-out-of-vm
[27014]1146endif
1147
1148testsuite-build-os2.x86:
1149#ifeq ($(KBUILD_TARGET),os2)
1150# + $(VBOX_KMK_TIME) $(KMK) $(VBOX_TESTSUITE_BUILD.x86) all $(VBOX_TESTSUITE_HOST_BUILD_TWEAK)
1151#else
1152# $(VBOX_KMK_TIME) ssh vbox@192.168.27.3 " cd /mnt/tinderbox/$(VBOX_TESTSUITE_BUILD_SUBDIRNAME) && tools/env.sh --no-wine kmk $(VBOX_TESTSUITE_BUILD.x86) "
1153#endif
1154
1155testsuite-build-linux.amd64: $(VBOX_TESTSUITE_BUILD_WIN_HOST_FIRST)
1156ifeq ($(KBUILD_TARGET).$(KBUILD_TARGET_ARCH),linux.amd64)
1157 + $(VBOX_KMK_TIME) $(KMK) $(VBOX_TESTSUITE_BUILD.amd64) all $(VBOX_TESTSUITE_HOST_BUILD_TWEAK)
1158else
1159 $(call MSG_L1,Building Linux/amd64 testsuite)
[27070]1160 $(VBOX_KMK_TIME) ssh vbox@192.168.27.12 " echo $@ && cd /mnt/tinderbox/$(VBOX_TESTSUITE_BUILD_SUBDIRNAME) && tools/env.sh --no-wine kmk $(VBOX_TESTSUITE_BUILD.amd64) all"
[27014]1161endif
1162
1163testsuite-build-linux.x86: $(VBOX_TESTSUITE_BUILD_WIN_HOST_FIRST)
1164ifeq ($(KBUILD_TARGET).$(KBUILD_TARGET_ARCH),linux.x86)
1165 + $(VBOX_KMK_TIME) $(KMK) $(VBOX_TESTSUITE_BUILD.x86) all $(VBOX_TESTSUITE_HOST_BUILD_TWEAK)
1166else
1167 $(call MSG_L1,Building Linux/x86 testsuite)
[27070]1168 $(VBOX_KMK_TIME) ssh vbox@192.168.27.2 " echo $@ && cd /mnt/tinderbox/$(VBOX_TESTSUITE_BUILD_SUBDIRNAME) && tools/env.sh --no-wine kmk $(VBOX_TESTSUITE_BUILD.x86) all"
[27014]1169endif
1170
[34625]1171testsuite-build-freebsd.amd64: $(VBOX_TESTSUITE_BUILD_WIN_HOST_FIRST)
1172#ifeq ($(KBUILD_TARGET).$(KBUILD_TARGET_ARCH),freebsd.amd64)
1173# + $(VBOX_KMK_TIME) $(KMK) $(VBOX_TESTSUITE_BUILD.amd64) all $(VBOX_TESTSUITE_HOST_BUILD_TWEAK)
1174#else
1175# $(call MSG_L1,Building freebsd/amd64 testsuite)
1176# $(VBOX_KMK_TIME) ssh vbox@192.168.27.17 " echo $@ && cd /mnt/tinderbox/$(VBOX_TESTSUITE_BUILD_SUBDIRNAME) && tools/env.sh --no-wine kmk $(VBOX_TESTSUITE_BUILD.amd64) all"
1177#endif
[27014]1178
[34625]1179testsuite-build-freebsd.x86: $(VBOX_TESTSUITE_BUILD_WIN_HOST_FIRST)
1180#ifeq ($(KBUILD_TARGET).$(KBUILD_TARGET_ARCH),freebsd.x86)
1181# + $(VBOX_KMK_TIME) $(KMK) $(VBOX_TESTSUITE_BUILD.x86) all $(VBOX_TESTSUITE_HOST_BUILD_TWEAK)
1182#else
1183# $(call MSG_L1,Building freebsd/x86 testsuite)
1184# $(VBOX_KMK_TIME) ssh vbox@192.168.27.7 " echo $@ && cd /mnt/tinderbox/$(VBOX_TESTSUITE_BUILD_SUBDIRNAME) && tools/env.sh --no-wine kmk $(VBOX_TESTSUITE_BUILD.x86) all"
1185#endif
1186
1187testsuite-build-darwin.amd64: $(VBOX_TESTSUITE_BUILD_WIN_HOST_FIRST)
1188ifeq ($(KBUILD_TARGET).$(KBUILD_TARGET_ARCH),darwin.amd64)
1189 + $(VBOX_KMK_TIME) $(KMK) $(VBOX_TESTSUITE_BUILD.amd64) all $(VBOX_TESTSUITE_HOST_BUILD_TWEAK)
1190else
1191 $(call MSG_L1,Building darwin/amd64 testsuite)
[34652]1192 $(VBOX_KMK_TIME) $(call VBOX_RSYNC_IN_FN,darwin,amd64) . 192.168.27.15:/Users/vbox/tinderbox/$(VBOX_EXTPACKS_BUILD_SUBDIRNAME)
1193 $(VBOX_KMK_TIME) ssh vbox@192.168.27.15 " echo $@ && cd /Users/vbox/tinderbox/$(VBOX_TESTSUITE_BUILD_SUBDIRNAME) && tools/env.sh --no-wine kmk $(VBOX_TESTSUITE_BUILD.amd64) all"
1194 $(VBOX_KMK_TIME) rsync -am -v --delete 192.168.27.15:/Users/vbox/tinderbox/$(VBOX_EXTPACKS_BUILD_SUBDIRNAME)/out/darwin.amd64 out/
[34625]1195endif
1196
1197testsuite-build-darwin.x86: $(VBOX_TESTSUITE_BUILD_WIN_HOST_FIRST)
1198ifeq ($(KBUILD_TARGET).$(KBUILD_TARGET_ARCH),darwin.x86)
1199 + $(VBOX_KMK_TIME) $(KMK) $(VBOX_TESTSUITE_BUILD.x86) all $(VBOX_TESTSUITE_HOST_BUILD_TWEAK)
1200else
1201 $(call MSG_L1,Building darwin/x86 testsuite)
[34652]1202 $(VBOX_KMK_TIME) $(call VBOX_RSYNC_IN_FN,darwin,x86) . 192.168.27.5:/Users/vbox/tinderbox/$(VBOX_EXTPACKS_BUILD_SUBDIRNAME)
1203 $(VBOX_KMK_TIME) ssh vbox@192.168.27.5 " echo $@ && cd /Users/vbox/tinderbox/$(VBOX_TESTSUITE_BUILD_SUBDIRNAME) && tools/env.sh --no-wine kmk $(VBOX_TESTSUITE_BUILD.x86) all"
1204 $(VBOX_KMK_TIME) rsync -am -v --delete 192.168.27.5:/Users/vbox/tinderbox/$(VBOX_EXTPACKS_BUILD_SUBDIRNAME)/out/darwin.x86 out/
[34625]1205endif
1206
1207
[27014]1208testsuite-packing:
1209 + $(KMK) VBOX_ONLY_TESTSUITE=1 \
[34625]1210 VBOX_WITH_TESTSUITE_PACKING.darwin.amd64=1 \
1211 VBOX_WITH_TESTSUITE_PACKING.darwin.x86=2 \
[27078]1212 VBOX_WITH_TESTSUITE_PACKING.freebsd.amd64= \
1213 VBOX_WITH_TESTSUITE_PACKING.freebsd.x86= \
1214 VBOX_WITH_TESTSUITE_PACKING.linux.amd64=1 \
1215 VBOX_WITH_TESTSUITE_PACKING.linux.x86=1 \
1216 VBOX_WITH_TESTSUITE_PACKING.os2.x86= \
1217 VBOX_WITH_TESTSUITE_PACKING.solaris.amd64=1 \
1218 VBOX_WITH_TESTSUITE_PACKING.solaris.x86=1 \
1219 VBOX_WITH_TESTSUITE_PACKING.win.amd64=1 \
1220 VBOX_WITH_TESTSUITE_PACKING.win.x86=1 \
[33382]1221 -C src/VBox/Testsuite \
[27024]1222 $(PATH_OUT)/VBoxTestSuite.zip
[27014]1223
1224.PHONY: \
1225 testsuite-build-win.x86 \
1226 testsuite-build-win.amd64 \
1227 testsuite-build-solaris.amd64 \
1228 testsuite-build-solaris.x86 \
1229 testsuite-build-os2.x86 \
1230 testsuite-build-linux.amd64 \
1231 testsuite-build-linux.x86 \
[34625]1232 testsuite-build-freebsd.amd64 \
1233 testsuite-build-freebsd.x86 \
1234 testsuite-build-darwin.amd64 \
1235 testsuite-build-darwin.x86 \
[27014]1236 testsuite-packing
1237
1238
1239#
[23618]1240# Build the EFI firmware, all of it.
1241#
1242# Mainly hooks right now, maybe we need them later.
1243#
1244efi-fetch:
1245
1246efi-build: $(VBOX_VERSION_HEADER)
1247 $(PATH_ROOT)/webtools/tinderbox/client/efi-build.sh
1248
1249efi-packing:
1250
1251#
[19153]1252# Generate VirtualBox-OSE-x.x.x.tar.bz2 (OSE) tarballs for distribution
[293]1253# - includes kBuild
1254# - must be executed on an OSE checkout
1255#
1256
1257# the path where to store the tarball
[19153]1258TARBALLPATH ?= $(abspath $(PATH_ROOT)/..)
[293]1259# the root directory inside the tarball
[4448]1260TARBALLROOT ?= VirtualBox-$(VBOX_VERSION_STRING)
[293]1261# the name of the tarball file
[4448]1262TARBALLNAME ?= VirtualBox-$(VBOX_VERSION_STRING).tar.bz2
[19162]1263snapshot-ose:
[293]1264 @$(call MSG_L1,Creating tarball $(TARBALLPATH)/$(TARBALLNAME))
[31889]1265 @if [ -r "$(PATH_ROOT)/src/VBox/RDP/server/server.cpp" ]; then \
[19162]1266 echo; \
[31889]1267 echo "Found RDP stuff, refused to build OSE tarball!"; \
[19162]1268 echo; \
1269 exit 1; \
1270 fi; \
1271 if [ -z "$(VBOX_OSE)" ]; then \
1272 echo; \
1273 echo "Please do 'kmk snapshot-ose VBOX_OSE=1'"; \
1274 echo; \
1275 exit 1; \
[20645]1276 fi
[293]1277 $(QUIET)$(MKDIR) -p $(TARBALLPATH)
[19153]1278 $(QUIET)$(RM) -f $(TARBALLPATH)/$(TARBALLROOT)
[293]1279 $(QUIET)$(LN_SYMLINK) $(PATH_ROOT) $(TARBALLPATH)/$(TARBALLROOT)
1280 $(QUIET)tar -cjh --owner 0 --group 0 --totals \
1281 --exclude=.svn \
1282 --exclude=$(TARBALLROOT)/out \
1283 --exclude=$(TARBALLROOT)/env.sh \
1284 --exclude=$(TARBALLROOT)/configure.log \
[19158]1285 --exclude=$(TARBALLROOT)/build.log \
[293]1286 --exclude=$(TARBALLROOT)/AutoConfig.kmk \
1287 --exclude=$(TARBALLROOT)/LocalConfig.kmk \
[19158]1288 --exclude=$(TARBALLROOT)/prebuild \
[293]1289 -C $(TARBALLPATH) \
1290 -f $(TARBALLPATH)/$(TARBALLNAME) \
1291 $(TARBALLROOT)
1292 $(QUIET)$(RM) $(TARBALLPATH)/$(TARBALLROOT)
[16532]1293
1294
1295#
[19162]1296# Generate VirtualBox-x.x.x.tar.bz2 (PUEL) zip archives for internal use only
1297# - includes kBuild
[19594]1298# - must be executed on an PUEL checkout
[19162]1299#
1300
1301# the path where to store the zip archive
1302ZIPPATH ?= $(abspath $(PATH_ROOT)/..)
1303# the root directory inside the zip archive
1304ZIPROOT ?= VirtualBox-$(VBOX_VERSION_STRING)
1305# the name of the zip archive
1306ZIPNAME ?= VirtualBox-$(VBOX_VERSION_STRING).zip
1307snapshot-puel:
1308 @$(call MSG_L1,Creating zip $(ZIPPATH)/$(ZIPNAME))
[31889]1309 @if [ ! -r "$(PATH_ROOT)/src/VBox/RDP/server/server.cpp" ]; then \
[19162]1310 echo; \
[31889]1311 echo "Did not find RDP stuff, is this an OSE branch?"; \
[19162]1312 echo; \
1313 exit 1; \
1314 fi
[19163]1315 @if [ -z "$(PASSWORD)" ]; then \
[19162]1316 echo; \
1317 echo "Please specify a password with PASSWORD=..."; \
1318 echo; \
1319 exit 1; \
1320 fi
1321 $(QUIET)$(MKDIR) -p $(ZIPPATH)
1322 $(QUIET)$(RM) -f $(ZIPPATH)/$(ZIPROOT)
[19683]1323 $(QUIET)$(RM) -f $(ZIPPATH)/$(ZIPNAME)
[19162]1324 $(QUIET)$(LN_SYMLINK) $(PATH_ROOT) $(ZIPPATH)/$(ZIPROOT)
1325 $(QUIET)(cd $(ZIPPATH); 7z a \
1326 -l -tzip -mmt=on -mx=7 -p$(PASSWORD) \
1327 -xr!.svn \
[19683]1328 -i!$(ZIPROOT)/Config.kmk \
1329 -i!$(ZIPROOT)/Doxyfile.Core \
1330 -i!$(ZIPROOT)/Makefile.kmk \
1331 -i!$(ZIPROOT)/configure \
1332 -i!$(ZIPROOT)/configure.vbs \
1333 -i!$(ZIPROOT)/doc \
1334 -i!$(ZIPROOT)/include \
1335 -i!$(ZIPROOT)/kBuild \
1336 -i!$(ZIPROOT)/src \
1337 -i!$(ZIPROOT)/tools/env.sh \
1338 -i!$(ZIPROOT)/tools/linux.x86/bin/* \
1339 -i!$(ZIPROOT)/tools/linux.amd64/bin/* \
[19162]1340 -x!$(ZIPROOT)/doc/Devices \
1341 -x!$(ZIPROOT)/doc/\*pdf \
1342 -x!$(ZIPROOT)/doc/L4VM \
1343 -x!$(ZIPROOT)/doc/VMM \
1344 -x!$(ZIPROOT)/doc/licenses_old \
1345 -x!$(ZIPROOT)/doc/manual/de_DE \
1346 -x!$(ZIPROOT)/doc/manual/fr_FR \
1347 -x!$(ZIPROOT)/src/tests \
[23030]1348 -x!$(ZIPROOT)/src/VBox/Artwork/2008-\* \
[19162]1349 -x!$(ZIPROOT)/src/VBox/Installer/AMI \
1350 -x!$(ZIPROOT)/src/VBox/Installer/Avanquest \
1351 -x!$(ZIPROOT)/src/VBox/Installer/Encore \
1352 -x!$(ZIPROOT)/src/VBox/Installer/linux/debian \
1353 -x!$(ZIPROOT)/src/VBox/Installer/linux/rpm \
[19683]1354 $(ZIPPATH)/$(ZIPNAME))
[19162]1355 $(QUIET)$(RM) $(ZIPPATH)/$(ZIPROOT)
1356
1357
1358#
[16532]1359# Generate ALL the rules.
1360#
1361include $(KBUILD_PATH)/subfooter.kmk
1362
1363
1364#
1365# Generate x86.mac and err.mac.
1366#
1367incs:
[30724]1368 $(SED) -f include/VBox/err.sed --output include/VBox/err.mac include/VBox/err.h
[16532]1369 $(APPEND) include/VBox/err.mac '%include "iprt/err.mac"'
[30724]1370 $(SED) -f include/VBox/err.sed --output include/iprt/err.mac include/iprt/err.h
[34113]1371 $(SED) -f include/VBox/various.sed --output include/VBox/apic.mac include/VBox/apic.h
[30724]1372 $(SED) -f include/VBox/various.sed --output include/VBox/x86.mac include/VBox/x86.h
1373 $(SED) -f include/VBox/various.sed --output include/VBox/param.mac include/VBox/param.h
1374 $(SED) -f include/VBox/various.sed --output include/VBox/VMMDevTesting.mac include/VBox/VMMDevTesting.h
[16532]1375
1376
1377#
1378# Generate Visual SlickEdit tagging #defines.
1379#
1380vslick.h: include/VBox/cdefs.h include/iprt/cdefs.h $(MAKEFILE)
1381 $(RM) -f -- $@ $@.tmp $@.tmp2 $@.tmp3
1382 $(APPEND) $@.tmp '// autogenerated'
[29929]1383 @$(APPEND) $@.tmp '#define IN_SLICKEDIT '
[20374]1384 @$(APPEND) $@.tmp '#define RT_C_DECLS_BEGIN '
1385 @$(APPEND) $@.tmp '#define RT_C_DECLS_END '
[28299]1386 @$(APPEND) $@.tmp '#define RT_NO_THROW '
1387 @$(APPEND) $@.tmp '#define RT_THROW(type) throw(type)'
[16532]1388
1389 @$(APPEND) $@.tmp '#define ATL_NO_VTABLE '
1390 @$(APPEND) $@.tmp '#define BEGIN_COM_MAP(a) '
[22522]1391 @$(APPEND) $@.tmp '#define COM_INTERFACE_ENTRY(a) '
1392 @$(APPEND) $@.tmp '#define COM_INTERFACE_ENTRY2(a,b) '
1393 @$(APPEND) $@.tmp '#define COM_INTERFACE_ENTRY3(a,b,c) '
1394 @$(APPEND) $@.tmp '#define COM_INTERFACE_ENTRY4(a,b,c,d) '
[16532]1395 @$(APPEND) $@.tmp '#define END_COM_MAP(a) '
1396
1397 @$(APPEND) $@.tmp '#define COM_DECL_READONLY_ENUM_AND_COLLECTION(a) '
[29868]1398 @$(APPEND) $@.tmp '#define COMGETTER(n) n '
1399 @$(APPEND) $@.tmp '#define COMSETTER(n) n '
[16532]1400 @$(APPEND) $@.tmp '#define ComSafeArrayIn(t,a) t a[] '
1401 @$(APPEND) $@.tmp '#define ComSafeArrayOut(t,a) t * a[] '
[22522]1402 @$(APPEND) $@.tmp '#define DECLARE_CLASSFACTORY(a) '
1403 @$(APPEND) $@.tmp '#define DECLARE_CLASSFACTORY_SINGLETON(a) '
1404 @$(APPEND) $@.tmp '#define DECLARE_REGISTRY_RESOURCEID(a) '
[16532]1405 @$(APPEND) $@.tmp '#define DECLARE_NOT_AGGREGATABLE(a) '
1406 @$(APPEND) $@.tmp '#define DECLARE_PROTECT_FINAL_CONSTRUCT(a) '
[22522]1407 @$(APPEND) $@.tmp '#define DECLARE_EMPTY_CTOR_DTOR(a) a(); ~a();'
1408 @$(APPEND) $@.tmp '#define DEFINE_EMPTY_CTOR_DTOR(a) a::a() {} a::~a() {}'
[16532]1409 @$(APPEND) $@.tmp '#define NS_DECL_ISUPPORTS '
[24300]1410 @$(APPEND) $@.tmp '#define NS_IMETHOD virtual nsresult '
1411 @$(APPEND) $@.tmp '#define NS_IMETHOD_(type) virtual type '
1412 @$(APPEND) $@.tmp '#define NS_IMETHODIMP nsresult '
1413 @$(APPEND) $@.tmp '#define NS_IMETHODIMP_(type) type '
[16532]1414 @$(APPEND) $@.tmp '#define PARSERS_EXPORT '
[24300]1415if1of ($(KBUILD_HOST),win)
[34075]1416 @$(APPEND) $@.tmp '#define COM_STRUCT_OR_CLASS(I) struct I '
[24300]1417 @$(APPEND) $@.tmp '#define STDMETHOD(m) virtual HRESULT m '
1418 @$(APPEND) $@.tmp '#define STDMETHOD_(type,m) virtual type m '
1419 @$(APPEND) $@.tmp '#define STDMETHODIMP HRESULT '
1420 @$(APPEND) $@.tmp '#define STDMETHODIMP_(type) type '
1421else
[34075]1422 @$(APPEND) $@.tmp '#define COM_STRUCT_OR_CLASS(I) class I '
[24300]1423 @$(APPEND) $@.tmp '#define STDMETHOD(m) virtual nsresult m '
1424 @$(APPEND) $@.tmp '#define STDMETHOD_(type,m) virtual type m '
1425 @$(APPEND) $@.tmp '#define STDMETHODIMP nsresult '
1426 @$(APPEND) $@.tmp '#define STDMETHODIMP_(type) type '
1427endif
[22522]1428 @$(APPEND) $@.tmp '#define VBOX_SCRIPTABLE(a) public a '
1429 @$(APPEND) $@.tmp '#define VBOX_SCRIPTABLE_IMPL(a) '
1430 @$(APPEND) $@.tmp '#define VIRTUALBOXBASE_ADD_ERRORINFO_SUPPORT(a) '
[16532]1431
1432 @$(APPEND) $@.tmp '#define CTX_SUFF(var) var##R3 '
1433 @$(APPEND) $@.tmp '#define CTXAllSUFF(var) var##R3 '
1434 @$(APPEND) $@.tmp '#define CTXSUFF(var) var##HC '
[22522]1435 @$(APPEND) $@.tmp '#define OTHERCTXSUFF(var) var##GC '
[16532]1436 @$(APPEND) $@.tmp '#define CTXALLMID(first, last) first##R3##last '
1437 @$(APPEND) $@.tmp '#define CTXMID(first, last) first##HC##last '
1438 @$(APPEND) $@.tmp '#define OTHERCTXMID(first, last) first##GC##last '
1439 @$(APPEND) $@.tmp '#define CTXTYPE(GCType, R3Type, R0Type) R3Type '
1440 @$(APPEND) $@.tmp '#define RCTYPE(RCType, HCType) RCType '
1441 @$(APPEND) $@.tmp '#define GCTYPE(GCType, HCType) GCType '
1442 @$(APPEND) $@.tmp '#define RCPTRTYPE(RCType) RCType '
1443 @$(APPEND) $@.tmp '#define GCPTRTYPE(GCType) GCType '
1444 @$(APPEND) $@.tmp '#define HCPTRTYPE(HCType) HCType '
1445 @$(APPEND) $@.tmp '#define R3R0PTRTYPE(HCType) HCType '
1446 @$(APPEND) $@.tmp '#define R0PTRTYPE(R3Type) R3Type '
1447 @$(APPEND) $@.tmp '#define R3PTRTYPE(R0Type) R0Type '
1448 @$(APPEND) $@.tmp '#define RT_SRC_POS __FILE__, __LINE__, __PRETTY_FUNCTION__ '
1449 @$(APPEND) $@.tmp '#define RT_SRC_POS_DECL const char *pszFile, unsigned iLine, const char *pszFunction '
1450 @$(APPEND) $@.tmp '#define RT_SRC_POS_ARGS pszFile, iLine, pszFunction '
1451 @$(APPEND) $@.tmp '#define RTCALL'
1452 @$(APPEND) $@.tmp '#define DECLINLINE(type) inline type '
[28299]1453 @$(APPEND) $@.tmp '#define DECL_FORCE_INLINE(type) inline type '
[22804]1454 @$(APPEND) $@.tmp '#define DECL_INVALID(type) type '
[16532]1455
1456 @$(APPEND) $@.tmp '#define PDMDEVINSINT_DECLARED 1'
[22522]1457 @$(APPEND) $@.tmp '#define VBOX_WITH_HGCM 1'
[16532]1458 @$(APPEND) $@.tmp '#define VBOXCALL'
1459
[29666]1460 @$(APPEND) $@.tmp '#define PGM_CTX(a,b) b'
1461 @$(APPEND) $@.tmp '#define PGM_CTX3(a,b,c) c'
1462 @$(APPEND) $@.tmp '#define PGM_GST_NAME(name) PGM_GST_NAME_AMD64(name)'
1463 @$(APPEND) $@.tmp '#define PGM_GST_NAME_REAL(name) PGM_CTX3(name)'
1464 @$(APPEND) $@.tmp '#define PGM_GST_NAME_PROT(name) PGM_CTX3(pgm,GstProt,name)'
1465 @$(APPEND) $@.tmp '#define PGM_GST_NAME_32BIT(name) PGM_CTX3(pgm,Gst32Bit,name)'
1466 @$(APPEND) $@.tmp '#define PGM_GST_NAME_PAE(name) PGM_CTX3(pgm,GstPAE,name)'
1467 @$(APPEND) $@.tmp '#define PGM_GST_NAME_AMD64(name) PGM_CTX3(pgm,GstAMD64,name)'
1468 @$(APPEND) $@.tmp '#define PGM_GST_DECL(type, name) type PGM_GST_NAME(name)'
1469 @$(APPEND) $@.tmp '#define PGM_SHW_NAME(name) PGM_GST_NAME_AMD64(name)'
1470 @$(APPEND) $@.tmp '#define PGM_SHW_NAME_32BIT(name) PGM_CTX3(pgm,Shw32Bit,name)'
1471 @$(APPEND) $@.tmp '#define PGM_SHW_NAME_PAE(name) PGM_CTX3(pgm,ShwPAE,name)'
1472 @$(APPEND) $@.tmp '#define PGM_SHW_NAME_AMD64(name) PGM_CTX3(pgm,ShwAMD64,name)'
1473 @$(APPEND) $@.tmp '#define PGM_SHW_NAME_NESTED(name) PGM_CTX3(pgm,ShwNested,name)'
1474 @$(APPEND) $@.tmp '#define PGM_SHW_NAME_EPT(name) PGM_CTX3(pgm,ShwEPT,name)'
1475 @$(APPEND) $@.tmp '#define PGM_SHW_DECL(type, name) type PGM_SHW_NAME(name)'
1476 @$(APPEND) $@.tmp '#define PGM_BTH_NAME(name) PGM_BTH_NAME_NESTED_AMD64(name)'
1477 @$(APPEND) $@.tmp '#define PGM_BTH_NAME_32BIT_REAL(name) PGM_CTX3(pgm,Bth,name)'
1478 @$(APPEND) $@.tmp '#define PGM_BTH_NAME_32BIT_PROT(name) PGM_CTX3(pgm,Bth,name)'
1479 @$(APPEND) $@.tmp '#define PGM_BTH_NAME_32BIT_32BIT(name) PGM_CTX3(pgm,Bth,name)'
1480 @$(APPEND) $@.tmp '#define PGM_BTH_NAME_PAE_REAL(name) PGM_CTX3(pgm,Bth,name)'
1481 @$(APPEND) $@.tmp '#define PGM_BTH_NAME_PAE_PROT(name) PGM_CTX3(pgm,Bth,name)'
1482 @$(APPEND) $@.tmp '#define PGM_BTH_NAME_PAE_32BIT(name) PGM_CTX3(pgm,Bth,name)'
1483 @$(APPEND) $@.tmp '#define PGM_BTH_NAME_PAE_PAE(name) PGM_CTX3(pgm,Bth,name)'
1484 @$(APPEND) $@.tmp '#define PGM_BTH_NAME_AMD64_PROT(name) PGM_CTX3(pgm,Bth,name)'
1485 @$(APPEND) $@.tmp '#define PGM_BTH_NAME_AMD64_AMD64(name) PGM_CTX3(pgm,Bth,name)'
1486 @$(APPEND) $@.tmp '#define PGM_BTH_NAME_NESTED_REAL(name) PGM_CTX3(pgm,Bth,name)'
1487 @$(APPEND) $@.tmp '#define PGM_BTH_NAME_NESTED_PROT(name) PGM_CTX3(pgm,Bth,name)'
1488 @$(APPEND) $@.tmp '#define PGM_BTH_NAME_NESTED_32BIT(name) PGM_CTX3(pgm,Bth,name)'
1489 @$(APPEND) $@.tmp '#define PGM_BTH_NAME_NESTED_PAE(name) PGM_CTX3(pgm,Bth,name)'
1490 @$(APPEND) $@.tmp '#define PGM_BTH_NAME_NESTED_AMD64(name) PGM_CTX3(pgm,Bth,name)'
1491 @$(APPEND) $@.tmp '#define PGM_BTH_NAME_EPT_REAL(name) PGM_CTX3(pgm,Bth,name)'
1492 @$(APPEND) $@.tmp '#define PGM_BTH_NAME_EPT_PROT(name) PGM_CTX3(pgm,Bth,name)'
1493 @$(APPEND) $@.tmp '#define PGM_BTH_NAME_EPT_32BIT(name) PGM_CTX3(pgm,Bth,name)'
1494 @$(APPEND) $@.tmp '#define PGM_BTH_NAME_EPT_PAE(name) PGM_CTX3(pgm,Bth,name)'
1495 @$(APPEND) $@.tmp '#define PGM_BTH_NAME_EPT_AMD64(name) PGM_CTX3(pgm,Bth,name)'
1496 @$(APPEND) $@.tmp '#define PGM_BTH_DECL(type, name) type PGM_BTH_NAME(name)'
1497
[16532]1498 $(SED) -e '/__cdecl/d' \
1499 -e '/^ *# *define.*DECL/!d' \
1500 -e '/DECLS/d' \
1501 -e '/DECLARE_CLS_/d' \
1502 -e '/_SRC_POS_DECL/d' \
1503 -e '/declspec/d' \
1504 -e '/__attribute__/d' \
1505 -e 's/# */#/g' \
1506 -e 's/ */ /g' \
1507 -e '/(type) DECLEXPORT/d' \
1508 -e '/ DECLEXPORT_CLASS/d' \
1509 -e 's/ *VBOXCALL//' \
1510 -e 's/ *RTCALL//' \
1511 -e 's/(type) DECLIMPORT(type)/(type) type/' \
1512 -e '/ DECLASM(type) type/d' \
1513 -e '/define *DECL..CALLBACKMEMBER(type[^)]*) *RT/d' \
1514 -e '/define *DECLINLINE(type)/d' \
[28299]1515 -e '/define *DECL_FORCE_INLINE(type)/d' \
[22804]1516 -e '/ *DECL_INVALID(/d' \
[16532]1517 -e '/define RT[DATGRC03]*DECL(type) *DECLHIDDEN(type)/d' \
1518 \
1519 --append $@.tmp \
1520 $(filter-out include/VBox/err.h, $(wildcard include/VBox/*.h)) \
1521 include/iprt/cdefs.h
[28299]1522 $(CAT_EXT) $@.tmp \
1523 | $(SED_EXT) -e 's/_/\x1F/g' -e 's/(/\x1E/g' -e 's/[[:space:]][[:space:]]*/\x1C/g' \
1524 | sort $(if-expr "$(KBUILD_TARGET)" == "win",,-f) \
1525 | $(SED_EXT) -e 's/\x1F/_/g' -e 's/\x1E/(/g' -e 's/\x1C/ /g' \
1526 | $(SED_EXT) -e 's/$$/\n/' --output $@.tmp2
[16532]1527 $(MV) -f $@.tmp2 $@
1528 $(RM) -f $@.tmp $@.tmp2 $@.tmp3
1529ifeq ($(KBUILD_HOST),win)
1530 @$(ECHO) 'TODO: Merge vslick.h with your "$(HOMEDRIVE)$(HOMEPATH)\Documents\My SlickEdit Config\x.y.z\usercpp.h" file.'
[29933]1531else ifeq ($(KBUILD_HOST),darwin)
1532 @$(ECHO) "TODO: Merge ./vslick.h with your ~/Library/Application\ Support/SlickEdit/x.y.z/unxcpp.h file."
[16532]1533else
1534 @$(ECHO) "TODO: Merge ./vslick.h with your ~/.slickedit/x.y.z/unxcpp.h file."
1535endif
1536
1537
1538#
1539# Add fetching of the tools to the 'up[date][2]' targets.
1540#
1541up update up2 update2::
1542ifndef VBOX_OSE
1543 +$(MAKE) -C tools fetch
1544else
1545 $(MAKE) -C tools -f Makefile-ose.kmk fetch
1546endif
1547
1548
1549
1550#
1551# Aliases for building the SDK.
1552#
1553.NOTPARALLEL: sdk sdk-fetch
1554sdk:
1555 + $(KMK) VBOX_ONLY_SDK=1 \
1556 pass_bldprogs pass_others pass_installs pass_packing
1557
1558sdk-fetch:
1559 + $(KMK) KBUILD_TARGET=win KBUILD_TARGET_ARCH=x86 -C tools fetch
1560
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