VirtualBox

source: vbox/trunk/Makefile.kmk@ 34609

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

*.kmk: Removed all references to VBOX_SINGLE_MAKEFILE and all the associated ifndef sections.

  • Property svn:eol-style set to native
  • Property svn:keywords set to Author Date Id Revision
File size: 63.7 KB
Line 
1# $Id: Makefile.kmk 34609 2010-12-02 14:04:24Z vboxsync $
2## @file
3# Top level makefile.
4#
5
6#
7# Copyright (C) 2006-2010 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_ADDITIONS) && !defined(VBOX_ONLY_EXTPACKS) && !defined(VBOX_ONLY_TESTSUITE)
25 include $(PATH_SUB_CURRENT)/doc/manual/Makefile.kmk
26endif
27include $(PATH_SUB_CURRENT)/src/Makefile.kmk
28
29
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 \
41 $(VBOX_SVN_REV_KMK) \
42 $(PATH_OUT)/GCCConfig.kmk
43
44
45if !defined(VBOX_ONLY_ADDITIONS) \
46 && !defined(VBOX_ONLY_DOCS) \
47 && !defined(VBOX_ONLY_EXTPACKS) \
48 && !defined(VBOX_ONLY_TESTSUITE) # -> line 418b ;-)
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
57 nobin_SOURCES =
58 ifdef VBOX_LICENSE_FILES
59 nobin_SOURCES += \
60 $(VBOX_BRAND_LICENSE_HTML)=>License-$(VBOX_LICENSE_VER).html \
61 $(foreach f,$(VBOX_INSTALLER_ADD_LANGUAGES),$(VBOX_BRAND_$(f)_LICENSE_HTML)=>License-$(VBOX_LICENSE_VER)-$(f).html)
62 endif
63endif # !OSE
64
65
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#
73INSTALLS += bin
74
75bin_INST = $(INST_BIN)
76
77# The SDL DLLs
78if1of ($(KBUILD_TARGET), win os2)
79 ifneq ($(VBOX_WITH_VBOXSDL)$(VBOX_WITH_VBOXBFE),)
80 include $(KBUILD_PATH)/sdks/LIBSDL.kmk
81 bin_SOURCES += \
82 $(DLL_SDK_LIBSDL_SDL)
83 ifdef VBOX_WITH_SECURELABEL
84 bin_SOURCES += \
85 $(DLL_SDK_LIBSDL_SDLTTF)
86 endif
87 ifeq ($(KBUILD_TARGET),os2)
88 bin_SOURCES += \
89 $(DLL_SDK_LIBSDL_FSLIB)
90 endif
91 endif
92endif
93
94
95# The compiler runtime DLLs.
96ifeq ($(KBUILD_TARGET).$(VBOX_WITHOUT_COMPILER_REDIST),win.)
97 ifdef VBOX_USE_VCC80
98 include $(KBUILD_PATH)/tools/VCC80X86.kmk
99 include $(KBUILD_PATH)/tools/VCC80AMD64.kmk
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
114 ifeq ($(VBOX_VCC_CRT_TYPE),d)
115 bin_SOURCES.x86 += \
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
122 bin_SOURCES.amd64 += \
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
129 endif
130 endif
131 ifndef VBOX_USE_VCC80
132 VBOX_INSTALL_VCC70_RT = 1
133 endif
134 ifeq ($(KBUILD_TARGET).$(KBUILD_TARGET_ARCH),win.x86)
135 VBOX_INSTALL_VCC70_RT = 1
136 endif
137 ifdef VBOX_INSTALL_VCC70_RT
138 include $(KBUILD_PATH)/tools/VCC70.kmk
139
140 ## @todo Move these defines to VCC70.
141 DLL_TOOL_VCC70_MSVCR71 ?= $(PATH_TOOL_VCC70)/bin/msvcr71.dll
142 ifneq ($(wildcard $(DLL_TOOL_VCC70_MSVCR71)),)
143 bin_SOURCES += \
144 $(DLL_TOOL_VCC70_MSVCR71)=>msvcr71.dll \
145 $(DLL_TOOL_VCC70_MSVCR71)=>testcase/msvcr71.dll
146 endif
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
157 ifneq ($(wildcard $(DLL_TOOL_VCC70_MSVCP71)),)
158 bin_SOURCES += \
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
168 endif
169 endif
170
171 DLL_TOOL_VCC70_MSVCRT ?= $(PATH_TOOL_VCC70)/bin/msvcrt.dll
172 ifneq ($(wildcard $(DLL_TOOL_VCC70_MSVCRT)),)
173 bin_SOURCES += \
174 $(DLL_TOOL_VCC70_MSVCRT)=>msvcrt.dll \
175 $(DLL_TOOL_VCC70_MSVCRT)=>testcase/msvcrt.dll
176 endif
177 endif
178endif
179
180
181#
182# Install our Qt DLLs / Shared Objects / Frameworks.
183# Note: The installer fixes the darwin .dylibs when hardening is enabled.
184#
185ifeq ($(KBUILD_TARGET),darwin)
186 INSTALLS += qt4-bin
187 qt4-bin_MODE = 755
188 qt4-bin_INST = $(INST_VIRTUALBOX)Contents/
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))
191 ifdef VBOX_WITH_COCOA_QT
192 qt4-bin_SOURCES += \
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 += \
199 $(VBOX_PATH_QT4)/plugins/accessible/libqtaccessiblewidgets.dylib=>MacOS/accessible/libqtaccessiblewidgets.dylib
200 endif
201 qt4-bin_SYMLINKS = $(foreach qtmod, $(VBOX_QT4_MOD_NAMES) \
202 ,Frameworks/$(qtmod).framework/$(qtmod)=>Versions/4/$(qtmod))
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 = \
214 $(foreach qtmod,$(VBOX_QT4_MOD_NAMES),$(VBOX_PATH_QT4_LIB)/$(qtmod)4$(SUFF_DLL)) \
215 $(VBOX_PATH_QT4)/plugins/accessible/qtaccessiblewidgets4$(SUFF_DLL)=>accessible/qtaccessiblewidgets4$(SUFF_DLL)
216 else
217 INSTALLS += qt4-bin
218 qt4-bin_MODE = 755
219 qt4-bin_INST = $(INST_BIN)
220 qt4-bin_SOURCES = \
221 $(foreach qtmod,$(VBOX_QT4_MOD_NAMES),$(VBOX_PATH_QT4_LIB)/lib$(qtmod)$(SUFF_DLL).4) \
222 $(VBOX_PATH_QT4)/plugins/accessible/libqtaccessiblewidgets$(SUFF_DLL)=>accessible/libqtaccessiblewidgets$(SUFF_DLL)
223 endif
224 endif # VBOX_WITH_QT4_SUN
225endif
226
227
228#
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
235 ifeq ($(KBUILD_TARGET_ARCH),amd64)
236 INSTALLS += buildserver-additions
237 endif
238 else
239 INSTALLS += buildserver-additions
240 endif
241
242#
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#
247buildserver-additions_INST = $(INST_ADDITIONS_ISO)
248buildserver-additions_MODE = 0644
249buildserver-additions_SOURCES = $(PATH_TARGET)/VBoxGuestAdditions.iso
250buildserver-additions_CLEANS = $(PATH_TARGET)/VBoxGuestAdditions.iso $(PATH_TARGET)/VBoxGuestAdditions.iso.tmp
251
252$(PATH_TARGET)/VBoxGuestAdditions.iso: $(VBOX_SVN_REV_KMK) $(PATH_DEVTOOLS)/bin/additions.sh | $$(dir $$@)
253 $(RM) -f $(PATH_TARGET)/VBoxGuestAdditions.iso $(PATH_TARGET)/VBoxGuestAdditions.iso.tmp
254 ifneq ($(KBUILD_HOST),win)
255 $(SHELL) $(PATH_DEVTOOLS)/bin/additions.sh --cmd fetch --filename $(PATH_TARGET)/VBoxGuestAdditions.iso.tmp
256 else
257 $(KMK) --affinity 1 -f $(MAKEFILE) buildserver-additions-affinity-hack
258 endif
259 $(CP) -f $(PATH_TARGET)/VBoxGuestAdditions.iso.tmp $(PATH_TARGET)/VBoxGuestAdditions.iso
260 $(RM) -f $(PATH_TARGET)/VBoxGuestAdditions.iso.tmp
261
262 ifeq ($(KBUILD_HOST),win)
263buildserver-additions-affinity-hack:
264 $(SHELL) $(PATH_DEVTOOLS)/bin/additions.sh --cmd fetch --filename $(PATH_TARGET)/VBoxGuestAdditions.iso.tmp
265 endif
266endif
267
268
269#
270#
271# Install documentation files (at the moment the .chm) from the build server.
272#
273ifdef VBOX_WITH_DOCS_FROM_BUILD_SERVER
274## @todo r=bird: Too much mess now for $(PATH_TARGET); move to doc/manual/.
275INSTALLS += buildserver-docs
276buildserver-docs_INST = $(INST_BIN)
277buildserver-docs_MODE = 0644
278buildserver-docs_SOURCES = \
279 $(addprefix $(PATH_TARGET)/, \
280 VirtualBox.chm UserManual.pdf \
281 $(foreach f,$(VBOX_MANUAL_ADD_LANGUAGES),VirtualBox_$(f).chm UserManual_$(f).pdf))
282buildserver-docs_CLEANS = \
283 $(buildserver-docs_0_OUTDIR)/unpacked.ts \
284 $(buildserver-docs_0_OUTDIR)/VBoxDocumentation.zip \
285 $(buildserver-docs_0_OUTDIR)/VBoxDocumentation.zip.tmp \
286 $(addprefix $(PATH_TARGET)/, \
287 VirtualBox.chm UserManual.pdf \
288 $(foreach f,$(VBOX_MANUAL_ADD_LANGUAGES),VirtualBox_$(f).chm UserManual_$(f).pdf))
289
290## @todo Hack to get at TOOL_ZIP_UNPACK; see if this can be integrated somehow...
291include $(KBUILD_PATH)/tools/ZIP.kmk
292
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
296 $(call MSG_L1,Unpacking documentation)
297 $(QUIET)$(TOOL_ZIP_UNPACK) $(TOOL_ZIP_UNPACKFLAGS) -o $< -d $(PATH_TARGET)
298 $(APPEND) -t $@ "done"
299
300$$(buildserver-docs_0_OUTDIR)/VBoxDocumentation.zip: $(VBOX_SVN_REV_KMK) $(PATH_DEVTOOLS)/bin/documentation.sh | $$(dir $$@)
301 $(RM) -f $@ $@.tmp
302 ifneq ($(KBUILD_HOST),win)
303 $(SHELL) $(PATH_DEVTOOLS)/bin/documentation.sh --cmd fetch --filename $@.tmp
304 else
305 $(KMK) --affinity 1 -f $(MAKEFILE) buildserver-documentation-affinity-hack
306 endif
307 $(CP) -f $@.tmp $@
308 $(RM) -f $@.tmp
309## @todo kBuild: The $(CP)/$(RM) stuff can be replaced by a simple $(TOUCH) once that has been added to kBuild.
310
311 ifeq ($(KBUILD_HOST),win)
312buildserver-documentation-affinity-hack:
313 $(SHELL) $(PATH_DEVTOOLS)/bin/documentation.sh --cmd fetch --filename $(buildserver-docs_0_OUTDIR)/VBoxDocumentation.zip.tmp
314 endif
315endif # VBOX_WITH_DOCS_FROM_BUILD_SERVER
316
317
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)
339
340 ## @todo Hack to get at TOOL_ZIP_UNPACK; see if this can be integrated somehow...
341 include $(KBUILD_PATH)/tools/ZIP.kmk
342
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
347 $(call MSG_L1,Unpacking EFI firmware)
348 $(QUIET)$(TOOL_ZIP_UNPACK) $(TOOL_ZIP_UNPACKFLAGS) -o $< -d $(buildserver-efifw_0_OUTDIR)
349 $(APPEND) -t $@ "done"
350
351 $$(buildserver-efifw_0_OUTDIR)/VBoxEfiFirmware.zip: \
352 $(VBOX_SVN_REV_KMK) $(PATH_DEVTOOLS)/bin/efi_firmware.sh | $$(dir $$@)
353 $(RM) -f $@ $@.tmp
354 ifneq ($(KBUILD_HOST),win)
355 $(SHELL) $(PATH_DEVTOOLS)/bin/efi_firmware.sh --cmd fetch --filename $@.tmp
356 else
357 $(KMK) --affinity 1 -f $(MAKEFILE) buildserver-efifw-affinity-hack
358 endif
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.
362
363 ifeq ($(KBUILD_HOST),win)
364 buildserver-efifw-affinity-hack:
365 $(SHELL) $(PATH_DEVTOOLS)/bin/efi_firmware.sh --cmd fetch --filename $(buildserver-efifw_0_OUTDIR)/VBoxEfiFirmware.zip.tmp
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
379
380
381#
382# Install staged binaries on platforms where we can't cross
383# compile things.
384#
385ifn1of ($(KBUILD_TARGET), l4 linux win)
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
393 staged-additions_INST = $(INST_ADDITIONS_ISO)
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
411endif # !VBOX_ONLY_ADDITIONS && !VBOX_ONLY_DOCS && !VBOX_ONLY_EXTPACKS && !VBOX_ONLY_TESTSUITE
412
413
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.
417docs:
418else # !VBOX_ONLY_DOCS
419#
420# Generate documentation.
421# (This should be converted into a separate pass or merged with an existing one later.)
422#
423 ifdef VBOX_WITH_ALL_DOXYGEN_TARGETS
424docs: docs.Core
425 endif
426endif # !VBOX_ONLY_DOCS
427
428docs.Core docs.core: $(PATH_TARGET)/docs.Core
429
430
431
432#
433# The core (VMM+REM+Devices+Main) documentation.
434#
435# This includes so much because we wish to have the complete CFGM
436# and GCFGM lists.
437#
438OTHER_CLEAN += \
439 $(PATH_TARGET)/Doxyfile.Core \
440 $(PATH_TARGET)/Doxyfile.Core.dep
441
442VBOX_CORE_DOXYFILE_INPUT_DIRS = \
443 include/iprt \
444 include/iprt/cpp \
445 include/iprt/linux \
446 include/VBox \
447 include/VBox/com \
448 include/VBox/HostServices \
449 include/VBox/GuestHost \
450 include/VBox/HGSMI \
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 \
461 src/VBox/Devices \
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 \
483 src/VBox/Main \
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 \
492 src/VBox/Main/win \
493 src/VBox/Main/xpcom \
494 src/VBox/HostServices \
495 src/VBox/HostServices/SharedClipboard \
496 src/VBox/HostServices/SharedFolders \
497 src/VBox/HostServices/SharedInfoServices \
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 \
507 src/VBox/HostDrivers/VBoxNetFlt \
508 src/VBox/HostDrivers/VBoxNetFlt/darwin \
509 src/VBox/HostDrivers/VBoxNetFlt/linux \
510 src/VBox/HostDrivers/VBoxNetFlt/solaris \
511 src/VBox/HostDrivers/VBoxNetFlt/win \
512 src/VBox/HostDrivers/VBoxNetNat \
513 src/VBox/HostDrivers/VBoxNetNat/darwin \
514 src/VBox/HostDrivers/VBoxNetNat/linux \
515 src/VBox/HostDrivers/VBoxNetNat/solaris \
516 src/VBox/HostDrivers/VBoxNetNat/win \
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 \
522 src/VBox/HostDrivers/VBoxUSB \
523 src/VBox/HostDrivers/VBoxUSB/darwin \
524 src/VBox/HostDrivers/VBoxUSB/os2 \
525 src/VBox/HostDrivers/VBoxUSB/solaris \
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 \
536 src/VBox/Storage
537
538# These must come first in order to make things look nice.
539VBOX_CORE_DOXYFILE_INPUT_FIRST =\
540 $(PATH_ROOT)/doc/VBox-doc.c \
541 $(PATH_ROOT)/doc/VBox-CodingGuidelines.cpp \
542 $(PATH_ROOT)/doc/VBox-MakefileGuidelines.cpp \
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 \
567 \
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 \
587 \
588 $(PATH_ROOT)/include/VBox/vm.h \
589 \
590 $(PATH_ROOT)/include/VBox/sup.h \
591 $(PATH_ROOT)/include/VBox/vd.h \
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 \
607 \
608 $(PATH_ROOT)/include/VBox/log.h \
609 $(PATH_ROOT)/include/VBox/param.h \
610 $(PATH_ROOT)/include/VBox/version.h
611
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))
618
619# And some some additional stuff.
620VBOX_CORE_DOXYFILE_INPUT += \
621 $(PATH_ROOT)/src/recompiler/VBoxRecompiler.c \
622 $(PATH_ROOT)/src/recompiler/VBoxREMWrapper.cpp
623
624
625VBOX_CORE_DOXYFILE_OUTPUT = $(PATH_OUT)/docs/Core
626BLDDIRS += $(VBOX_CORE_DOXYFILE_OUTPUT)
627
628-include $(PATH_TARGET)/Doxyfile.Core.dep
629
630# Generate the Doxyfile
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) \
634 | $$(dir $$@)
635 $(RM) -f $@ $@.tmp $(PATH_TARGET)/Doxyfile.Core.dep
636 $(CP) -f Doxyfile.Core $@.tmp
637 $(APPEND) $@.tmp
638 $(APPEND) $@.tmp "OUTPUT_DIRECTORY = $(VBOX_CORE_DOXYFILE_OUTPUT)"
639 $(APPEND) $@.tmp "WARN_LOGFILE = $(VBOX_CORE_DOXYFILE_OUTPUT)/errors"
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
643 $(APPEND) $@.tmp "INPUT = $(VBOX_CORE_DOXYFILE_INPUT)"
644 $(APPEND) $@.tmp
645 $(APPEND) $@.tmp "PREDEFINED += $(DEFS) $(DEFS.$(KBUILD_TARGET)) $(DEFS.$(KBUILD_TARGET_ARCH)) $(ARCH_BITS_DEFS)"
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 $@
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)"
651
652# Do the actual job.
653$(PATH_TARGET)/docs.Core: $(PATH_TARGET)/Doxyfile.Core $$(VBOX_CORE_DOXYFILE_INPUT) | $(VBOX_CORE_DOXYFILE_OUTPUT)/
654 $(RM) -f $(PATH_TARGET)/docs.Core
655 $(RM) -Rf $(VBOX_CORE_DOXYFILE_OUTPUT)/html/
656 doxygen $(PATH_TARGET)/Doxyfile.Core
657 $(APPEND) $(PATH_TARGET)/docs.Core
658
659
660#
661# Alias for kmk_time. Used by both the additions and testsuite build setups.
662#
663VBOX_KMK_TIME = $(KBUILD_BIN_PATH)/kmk_time
664
665
666#
667# Build the additions, all of them.
668#
669# This is currently tailored (hardcoded) for the additions
670# build box. Can make it pretty and configurable later.
671#
672# The fetching must be done in serial fashion, while the building
673# should be more flexible wrt to -jN.
674#
675additions-fetch:
676 + $(KMK) -C tools fetch VBOX_ONLY_ADDITIONS=1
677 + $(KMK) -C tools fetch KBUILD_TARGET_ARCH=amd64 KBUILD_TARGET=linux BUILD_TARGET_ARCH=amd64 BUILD_TARGET=linux VBOX_ONLY_ADDITIONS=1
678 + $(KMK) -C tools fetch KBUILD_TARGET_ARCH=x86 KBUILD_TARGET=linux BUILD_TARGET_ARCH=x86 BUILD_TARGET=linux VBOX_ONLY_ADDITIONS=1
679# + $(KMK) -C tools fetch KBUILD_TARGET_ARCH=x86 KBUILD_TARGET=os2 BUILD_TARGET_ARCH=x86 BUILD_TARGET=os2 VBOX_ONLY_ADDITIONS=1
680 + $(KMK) -C tools fetch KBUILD_TARGET_ARCH=amd64 KBUILD_TARGET=solaris BUILD_TARGET_ARCH=amd64 BUILD_TARGET=solaris VBOX_ONLY_ADDITIONS=1
681 + $(KMK) -C tools fetch KBUILD_TARGET_ARCH=x86 KBUILD_TARGET=solaris BUILD_TARGET_ARCH=x86 BUILD_TARGET=solaris VBOX_ONLY_ADDITIONS=1
682 + $(KMK) -C tools fetch KBUILD_TARGET_ARCH=amd64 KBUILD_TARGET=win BUILD_TARGET_ARCH=amd64 BUILD_TARGET=win VBOX_ONLY_ADDITIONS=1
683 + $(KMK) -C tools fetch KBUILD_TARGET_ARCH=x86 KBUILD_TARGET=win BUILD_TARGET_ARCH=x86 BUILD_TARGET=win VBOX_ONLY_ADDITIONS=1
684
685
686## @todo Currently combined solaris additions building assumes that amd64 is
687# built first. The windows amd64 additions need some x86 files, so don't change
688# the order of the windows builds. TODO: Split building and packing for these two VMs.
689additions-build: \
690 additions-build-solaris.amd64 \
691 additions-build-solaris.x86 \
692 additions-build-win.x86 \
693 additions-build-win.amd64 \
694 additions-build-os2.x86 \
695 additions-build-linux.x86.combined
696
697VBOX_ADDITIONS_BUILD.amd64 = VBOX_ONLY_ADDITIONS=1 VBOX_WITHOUT_ADDITIONS_ISO=1 \
698 KBUILD_TYPE=$(KBUILD_TYPE) BUILD_TYPE=$(KBUILD_TYPE) \
699 KBUILD_TARGET_ARCH=amd64 BUILD_TARGET_ARCH=amd64 \
700 VBOX_SVN_REV=$(VBOX_SVN_REV)
701
702VBOX_ADDITIONS_BUILD.x86 = VBOX_ONLY_ADDITIONS=1 VBOX_WITHOUT_ADDITIONS_ISO=1 \
703 KBUILD_TYPE=$(KBUILD_TYPE) BUILD_TYPE=$(KBUILD_TYPE) \
704 KBUILD_TARGET_ARCH=x86 BUILD_TARGET_ARCH=x86 \
705 VBOX_SVN_REV=$(VBOX_SVN_REV)
706
707# Automatically determine the additions build subdir name. Used for figuring
708# out directory names inside the additions building VMs.
709VBOX_ADDITIONS_BUILD_SUBDIRNAME := $(lastword $(subst /, ,$(PATH_ROOT)))
710
711# When building in parallel on a Windows host, make sure we finish the host
712# bit before kicking off any UNIX guest or we'll run into file sharing issues.
713ifeq ($(KBUILD_TARGET),win)
714VBOX_ADDITIONS_BUILD_WIN_HOST_FIRST = additions-build-win.x86 additions-build-win.amd64
715else
716VBOX_ADDITIONS_BUILD_WIN_HOST_FIRST =
717endif
718
719# ASSUMES the 32-bit edition has been built already. Also for serializing VM access.
720additions-build-win.amd64: additions-build-win.x86
721ifeq ($(KBUILD_TARGET),win)
722 + $(VBOX_KMK_TIME) $(KMK) $(VBOX_ADDITIONS_BUILD.amd64) all $(VBOX_ADD_HOST_BUILD_TWEAK)
723 + $(VBOX_KMK_TIME) $(KMK) $(VBOX_ADDITIONS_BUILD.amd64) packing
724else
725 $(call MSG_L1,Building Windows/amd64 additions)
726 $(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 "
727endif
728
729additions-build-win.x86:
730ifeq ($(KBUILD_TARGET),win)
731 + $(VBOX_KMK_TIME) $(KMK) $(VBOX_ADDITIONS_BUILD.x86) all $(VBOX_ADD_HOST_BUILD_TWEAK)
732 + $(VBOX_KMK_TIME) $(KMK) $(VBOX_ADDITIONS_BUILD.x86) packing
733else
734 $(call MSG_L1,Building Windows/x86 additions)
735 $(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"
736endif
737
738# ASSUMES the 64-bit edition are built first. This also serializes VM access.
739ifeq ($(KBUILD_TARGET),solaris)
740additions-build-solaris.amd64:
741 + $(VBOX_KMK_TIME) $(KMK) $(VBOX_ADDITIONS_BUILD.amd64) all $(VBOX_ADD_HOST_BUILD_TWEAK)
742 + $(VBOX_KMK_TIME) $(KMK) $(VBOX_ADDITIONS_BUILD.amd64) packing
743
744additions-build-solaris.x86: additions-build-solaris.amd64
745 + $(VBOX_KMK_TIME) $(KMK) $(VBOX_ADDITIONS_BUILD.x86) VBOX_WITH_COMBINED_SOLARIS_GUEST_PACKAGE=1 all $(VBOX_ADD_HOST_BUILD_TWEAK)
746 + $(VBOX_KMK_TIME) $(KMK) $(VBOX_ADDITIONS_BUILD.x86) VBOX_WITH_COMBINED_SOLARIS_GUEST_PACKAGE=1 packing
747
748else
749additions-build-solaris.rsync-into-vm: $(VBOX_ADDITIONS_BUILD_WIN_HOST_FIRST)
750 $(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)
751
752additions-build-solaris.build-it: additions-build-solaris.rsync-into-vm
753 $(call MSG_L1,Building Solaris/amd64 additions)
754 $(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"
755 $(call MSG_L1,Building Solaris/x86 additions)
756 $(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"
757
758additions-build-solaris.rsync-out-of-vm: additions-build-solaris.build-it
759 $(VBOX_KMK_TIME) rsync -a --delete 192.168.27.4:/mnt/tinderbox/$(VBOX_ADDITIONS_BUILD_SUBDIRNAME)/out/solaris.x86 out/
760 $(VBOX_KMK_TIME) rsync -a --delete 192.168.27.4:/mnt/tinderbox/$(VBOX_ADDITIONS_BUILD_SUBDIRNAME)/out/solaris.amd64 out/
761
762.NOTPARALLEL: additions-build-solaris.rsync-out-of-vm additions-build-solaris.rsync-into-vm
763.PHONY: additions-build-solaris.rsync-out-of-vm additions-build-solaris.rsync-into-vm additions-build-solaris.build-it
764
765additions-build-solaris.amd64: additions-build-solaris.rsync-out-of-vm
766additions-build-solaris.x86: additions-build-solaris.rsync-out-of-vm
767endif
768
769additions-build-os2.x86:
770#ifeq ($(KBUILD_TARGET),os2)
771# + $(VBOX_KMK_TIME) $(KMK) $(VBOX_ADDITIONS_BUILD.x86) all $(VBOX_ADD_HOST_BUILD_TWEAK)
772# + $(VBOX_KMK_TIME) $(KMK) $(VBOX_ADDITIONS_BUILD.x86) packing
773#else
774# $(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) "
775#endif
776
777additions-build-linux.amd64: $(VBOX_ADDITIONS_BUILD_WIN_HOST_FIRST)
778ifeq ($(KBUILD_TARGET).$(KBUILD_TARGET_ARCH),linux.amd64)
779 + $(VBOX_KMK_TIME) $(KMK) $(VBOX_ADDITIONS_BUILD.amd64) all $(VBOX_ADD_HOST_BUILD_TWEAK)
780 + $(VBOX_KMK_TIME) $(KMK) $(VBOX_ADDITIONS_BUILD.amd64) packing VBOX_WITHOUT_LINUX_GUEST_PACKAGE=1
781else
782 $(call MSG_L1,Building Linux/amd64 additions)
783 $(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"
784endif
785
786additions-build-linux.x86: $(VBOX_ADDITIONS_BUILD_WIN_HOST_FIRST)
787ifeq ($(KBUILD_TARGET).$(KBUILD_TARGET_ARCH),linux.x86)
788 + $(VBOX_KMK_TIME) $(KMK) $(VBOX_ADDITIONS_BUILD.x86) all $(VBOX_ADD_HOST_BUILD_TWEAK)
789 + $(VBOX_KMK_TIME) $(KMK) $(VBOX_ADDITIONS_BUILD.x86) packing VBOX_WITHOUT_LINUX_GUEST_PACKAGE=1
790else
791 $(call MSG_L1,Building Linux/x86 additions)
792 $(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"
793endif
794
795# Combined Linux Additions .run package. This depends on the archives
796# created during packing by the archetecture-specific builds.
797additions-build-linux.x86.combined: $(VBOX_ADDITIONS_BUILD_WIN_HOST_FIRST) additions-build-linux.x86 additions-build-linux.amd64
798ifeq ($(KBUILD_TARGET).$(KBUILD_TARGET_ARCH),linux.x86)
799 + $(VBOX_KMK_TIME) $(KMK) $(VBOX_ADDITIONS_BUILD.x86) all $(VBOX_ADD_HOST_BUILD_TWEAK)
800 + $(VBOX_KMK_TIME) $(KMK) $(VBOX_ADDITIONS_BUILD.x86) packing VBOX_WITH_COMBINED_LINUX_GUEST_PACKAGE=1
801else
802 $(call MSG_L1,Building Linux/x86 additions)
803 $(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"
804endif
805
806
807additions-packing:
808 + $(KMK) VBOX_ONLY_ADDITIONS=1 \
809 VBOX_WITH_ADDITIONS_ISO.freebsd.amd64= \
810 VBOX_WITH_ADDITIONS_ISO.freebsd.x86= \
811 VBOX_WITH_ADDITIONS_ISO.linux.amd64= \
812 VBOX_WITH_ADDITIONS_ISO.linux.x86=1 \
813 VBOX_WITH_COMBINED_LINUX_GUEST_PACKAGE=1 \
814 VBOX_WITH_ADDITIONS_ISO.solaris.amd64=1 \
815 VBOX_WITH_ADDITIONS_ISO.solaris.x86=1 \
816 VBOX_WITH_COMBINED_SOLARIS_GUEST_PACKAGE=1 \
817 VBOX_WITH_ADDITIONS_ISO.win.amd64=1 \
818 VBOX_WITH_ADDITIONS_ISO.win.x86=1 \
819 -C src/VBox/Additions \
820 $(VBOX_PATH_ADDITIONS)/VBoxGuestAdditions.iso
821
822.PHONY: \
823 additions-build-win.x86 \
824 additions-build-win.amd64 \
825 additions-build-solaris.amd64 \
826 additions-build-solaris.x86 \
827 additions-build-os2.x86 \
828 additions-build-linux.amd64 \
829 additions-build-linux.x86 \
830 additions-build-linux.x86.combined \
831 additions-packing
832
833
834#
835# Build the extension packs, all of them.
836#
837# This is tailored (hardcoded) for the extension pack build box.
838#
839# The fetching must be done in serial fashion, while the building should be
840# more flexible wrt to -jN.
841#
842extpacks-fetch:
843 + $(KMK) -C tools fetch VBOX_ONLY_EXTPACKS=1
844# + $(KMK) -C tools fetch KBUILD_TARGET_ARCH=amd64 KBUILD_TARGET=darwin BUILD_TARGET_ARCH=amd64 BUILD_TARGET=darwin VBOX_ONLY_EXTPACKS=1
845# + $(KMK) -C tools fetch KBUILD_TARGET_ARCH=x86 KBUILD_TARGET=darwin BUILD_TARGET_ARCH=x86 BUILD_TARGET=darwin VBOX_ONLY_EXTPACKS=1
846# + $(KMK) -C tools fetch KBUILD_TARGET_ARCH=amd64 KBUILD_TARGET=freebsd BUILD_TARGET_ARCH=amd64 BUILD_TARGET=freebsd VBOX_ONLY_EXTPACKS=1
847# + $(KMK) -C tools fetch KBUILD_TARGET_ARCH=x86 KBUILD_TARGET=freebsd BUILD_TARGET_ARCH=x86 BUILD_TARGET=freebsd VBOX_ONLY_EXTPACKS=1
848 + $(KMK) -C tools fetch KBUILD_TARGET_ARCH=amd64 KBUILD_TARGET=linux BUILD_TARGET_ARCH=amd64 BUILD_TARGET=linux VBOX_ONLY_EXTPACKS=1
849 + $(KMK) -C tools fetch KBUILD_TARGET_ARCH=x86 KBUILD_TARGET=linux BUILD_TARGET_ARCH=x86 BUILD_TARGET=linux VBOX_ONLY_EXTPACKS=1
850# + $(KMK) -C tools fetch KBUILD_TARGET_ARCH=x86 KBUILD_TARGET=os2 BUILD_TARGET_ARCH=x86 BUILD_TARGET=os2 VBOX_ONLY_EXTPACKS=1
851 + $(KMK) -C tools fetch KBUILD_TARGET_ARCH=amd64 KBUILD_TARGET=solaris BUILD_TARGET_ARCH=amd64 BUILD_TARGET=solaris VBOX_ONLY_EXTPACKS=1
852 + $(KMK) -C tools fetch KBUILD_TARGET_ARCH=x86 KBUILD_TARGET=solaris BUILD_TARGET_ARCH=x86 BUILD_TARGET=solaris VBOX_ONLY_EXTPACKS=1
853 + $(KMK) -C tools fetch KBUILD_TARGET_ARCH=amd64 KBUILD_TARGET=win BUILD_TARGET_ARCH=amd64 BUILD_TARGET=win VBOX_ONLY_EXTPACKS=1
854 + $(KMK) -C tools fetch KBUILD_TARGET_ARCH=x86 KBUILD_TARGET=win BUILD_TARGET_ARCH=x86 BUILD_TARGET=win VBOX_ONLY_EXTPACKS=1
855
856
857extpacks-build: \
858 extpacks-build-solaris.amd64 \
859 extpacks-build-solaris.x86 \
860 extpacks-build-linux.x86 \
861 extpacks-build-linux.amd64 \
862 extpacks-build-win.x86 \
863 extpacks-build-win.amd64
864# extpacks-build-darwin.x86
865# extpacks-build-darwin.amd64
866# extpacks-build-freebsd.x86
867# extpacks-build-freebsd.amd64
868# extpacks-build-os2.x86
869
870VBOX_EXTPACKS_BUILD.amd64 = VBOX_ONLY_EXTPACKS=1 \
871 KBUILD_TYPE=$(KBUILD_TYPE) BUILD_TYPE=$(KBUILD_TYPE) \
872 KBUILD_TARGET_ARCH=amd64 BUILD_TARGET_ARCH=amd64 \
873 VBOX_SVN_REV=$(VBOX_SVN_REV)
874
875VBOX_EXTPACKS_BUILD.x86 = VBOX_ONLY_EXTPACKS=1 \
876 KBUILD_TYPE=$(KBUILD_TYPE) BUILD_TYPE=$(KBUILD_TYPE) \
877 KBUILD_TARGET_ARCH=x86 BUILD_TARGET_ARCH=x86 \
878 VBOX_SVN_REV=$(VBOX_SVN_REV)
879
880# Automatically determine the extpack build subdir name. Used for figuring out
881# directory names inside the extension pack building VMs.
882VBOX_EXTPACKS_BUILD_SUBDIRNAME := $(lastword $(subst /, ,$(PATH_ROOT)))
883
884# When building in parallel on a Windows host, make sure we finish the host
885# bit before kicking off any UNIX guest or we'll run into file sharing issues.
886ifeq ($(KBUILD_TARGET),win)
887VBOX_EXTPACKS_BUILD_WIN_HOST_FIRST = extpacks-build-win.x86 extpacks-build-win.amd64
888else
889VBOX_EXTPACKS_BUILD_WIN_HOST_FIRST =
890endif
891
892extpacks-build-win.amd64:
893ifeq ($(KBUILD_TARGET),win)
894 + $(VBOX_KMK_TIME) $(KMK) $(VBOX_EXTPACKS_BUILD.amd64) all $(VBOX_EXTPACKS_HOST_BUILD_TWEAK)
895else
896 $(call MSG_L1,Building Windows/amd64 extension packs)
897 $(VBOX_KMK_TIME) ssh vbox@192.168.27.5 " echo $@ && cd e:/$(VBOX_EXTPACKS_BUILD_SUBDIRNAME) && tools/env.sh kmk $(VBOX_EXTPACKS_BUILD.amd64) all"
898endif
899
900extpacks-build-win.x86:
901ifeq ($(KBUILD_TARGET),win)
902 + $(VBOX_KMK_TIME) $(KMK) $(VBOX_EXTPACKS_BUILD.x86) all $(VBOX_EXTPACKS_HOST_BUILD_TWEAK)
903else
904 $(call MSG_L1,Building Windows/x86 extension packs)
905 $(VBOX_KMK_TIME) ssh vbox@192.168.27.5 " echo $@ && cd e:/$(VBOX_EXTPACKS_BUILD_SUBDIRNAME) && tools/env.sh kmk $(VBOX_EXTPACKS_BUILD.x86) all"
906endif
907
908ifeq ($(KBUILD_TARGET),solaris)
909extpacks-build-solaris.amd64:
910 + $(VBOX_KMK_TIME) $(KMK) $(VBOX_EXTPACKS_BUILD.amd64) all $(VBOX_EXTPACKS_HOST_BUILD_TWEAK)
911
912extpacks-build-solaris.x86: extpacks-build-solaris.amd64
913 + $(VBOX_KMK_TIME) $(KMK) $(VBOX_EXTPACKS_BUILD.x86) VBOX_WITH_COMBINED_SOLARIS_GUEST_PACKAGE=1 all $(VBOX_EXTPACKS_HOST_BUILD_TWEAK)
914
915else
916# Serialize 32-bit and 64-bit ASSUMING the same VM builds both.
917extpacks-build-solaris.rsync-into-vm: $(VBOX_EXTPACKS_BUILD_WIN_HOST_FIRST)
918 $(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_EXTPACKS_BUILD_SUBDIRNAME)
919
920extpacks-build-solaris.build-it: extpacks-build-solaris.rsync-into-vm
921 $(call MSG_L1,Building Solaris/amd64 extension packs)
922 $(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"
923 $(call MSG_L1,Building Solaris/x86 extension packs)
924 $(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"
925
926extpacks-build-solaris.rsync-out-of-vm: extpacks-build-solaris.build-it
927 $(VBOX_KMK_TIME) rsync -a --delete 192.168.27.4:/mnt/tinderbox/$(VBOX_EXTPACKS_BUILD_SUBDIRNAME)/out/solaris.x86 out/
928 $(VBOX_KMK_TIME) rsync -a --delete 192.168.27.4:/mnt/tinderbox/$(VBOX_EXTPACKS_BUILD_SUBDIRNAME)/out/solaris.amd64 out/
929
930.NOTPARALLEL: extpacks-build-solaris.rsync-out-of-vm extpacks-build-solaris.rsync-into-vm
931.PHONY: extpacks-build-solaris.rsync-out-of-vm extpacks-build-solaris.rsync-into-vm extpacks-build-solaris.build-it
932
933extpacks-build-solaris.amd64: extpacks-build-solaris.rsync-out-of-vm
934extpacks-build-solaris.x86: extpacks-build-solaris.rsync-out-of-vm
935endif
936
937extpacks-build-os2.x86:
938#ifeq ($(KBUILD_TARGET),os2)
939# + $(VBOX_KMK_TIME) $(KMK) $(VBOX_EXTPACKS_BUILD.x86) all $(VBOX_EXTPACKS_HOST_BUILD_TWEAK)
940#else
941# $(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) "
942#endif
943
944extpacks-build-linux.amd64: $(VBOX_EXTPACKS_BUILD_WIN_HOST_FIRST)
945ifeq ($(KBUILD_TARGET).$(KBUILD_TARGET_ARCH),linux.amd64)
946 + $(VBOX_KMK_TIME) $(KMK) $(VBOX_EXTPACKS_BUILD.amd64) all $(VBOX_EXTPACKS_HOST_BUILD_TWEAK)
947else
948 $(call MSG_L1,Building Linux/amd64 extension packs)
949 $(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"
950endif
951
952extpacks-build-linux.x86: $(VBOX_EXTPACKS_BUILD_WIN_HOST_FIRST)
953ifeq ($(KBUILD_TARGET).$(KBUILD_TARGET_ARCH),linux.x86)
954 + $(VBOX_KMK_TIME) $(KMK) $(VBOX_EXTPACKS_BUILD.x86) all $(VBOX_EXTPACKS_HOST_BUILD_TWEAK)
955else
956 $(call MSG_L1,Building Linux/x86 extension packs)
957 $(VBOX_KMK_TIME) ssh vbox@192.168.27.2 " echo $@ && cd /mnt/tinderbox/$(VBOX_EXTPACKS_BUILD_SUBDIRNAME) && tools/env.sh --no-wine kmk $(VBOX_EXTPACKS_BUILD.x86) all"
958endif
959
960extpacks-build-freebsd.amd64: $(VBOX_EXTPACKS_BUILD_WIN_HOST_FIRST)
961ifeq ($(KBUILD_TARGET).$(KBUILD_TARGET_ARCH),freebsd.amd64)
962 + $(VBOX_KMK_TIME) $(KMK) $(VBOX_EXTPACKS_BUILD.amd64) all $(VBOX_EXTPACKS_HOST_BUILD_TWEAK)
963else
964 $(call MSG_L1,Building FreeBSD/amd64 extension packs)
965 $(VBOX_KMK_TIME) ssh vbox@192.168.27.14 " echo $@ && cd /mnt/tinderbox/$(VBOX_EXTPACKS_BUILD_SUBDIRNAME) && tools/env.sh --no-wine kmk $(VBOX_EXTPACKS_BUILD.amd64) all"
966endif
967
968extpacks-build-freebsd.x86: $(VBOX_EXTPACKS_BUILD_WIN_HOST_FIRST)
969ifeq ($(KBUILD_TARGET).$(KBUILD_TARGET_ARCH),freebsd.x86)
970 + $(VBOX_KMK_TIME) $(KMK) $(VBOX_EXTPACKS_BUILD.x86) all $(VBOX_EXTPACKS_HOST_BUILD_TWEAK)
971else
972 $(call MSG_L1,Building FreeBSD/x86 extension packs)
973 $(VBOX_KMK_TIME) ssh vbox@192.168.27.4 " echo $@ && cd /mnt/tinderbox/$(VBOX_EXTPACKS_BUILD_SUBDIRNAME) && tools/env.sh --no-wine kmk $(VBOX_EXTPACKS_BUILD.x86) all"
974endif
975
976extpacks-build-darwin.amd64: $(VBOX_EXTPACKS_BUILD_WIN_HOST_FIRST)
977ifeq ($(KBUILD_TARGET).$(KBUILD_TARGET_ARCH),darwin.amd64)
978 + $(VBOX_KMK_TIME) $(KMK) $(VBOX_EXTPACKS_BUILD.amd64) all $(VBOX_EXTPACKS_HOST_BUILD_TWEAK)
979else
980 $(call MSG_L1,Building Darwin/amd64 extension packs)
981 $(VBOX_KMK_TIME) ssh vbox@192.168.27.15 " echo $@ && cd /mnt/tinderbox/$(VBOX_EXTPACKS_BUILD_SUBDIRNAME) && tools/env.sh --no-wine kmk $(VBOX_EXTPACKS_BUILD.amd64) all"
982endif
983
984extpacks-build-darwin.x86: $(VBOX_EXTPACKS_BUILD_WIN_HOST_FIRST)
985ifeq ($(KBUILD_TARGET).$(KBUILD_TARGET_ARCH),darwin.x86)
986 + $(VBOX_KMK_TIME) $(KMK) $(VBOX_EXTPACKS_BUILD.x86) all $(VBOX_EXTPACKS_HOST_BUILD_TWEAK)
987else
988 $(call MSG_L1,Building Darwin/x86 extension packs)
989 $(VBOX_KMK_TIME) ssh vbox@192.168.27.5 " echo $@ && cd /mnt/tinderbox/$(VBOX_EXTPACKS_BUILD_SUBDIRNAME) && tools/env.sh --no-wine kmk $(VBOX_EXTPACKS_BUILD.x86) all"
990endif
991
992
993extpacks-packing:
994 + $(KMK) VBOX_ONLY_EXTPACKS=1 \
995 VBOX_WITH_EXTPACK_OS_ARCHS="linux.amd64 linux.x86 solaris.amd64 solaris.x86 win.amd64 win.x86" \
996 packing
997# +++ darwin.amd64 darwin.x86 freebsd.amd64 freebsd.x86 os2.x86 ^^^
998
999.PHONY: \
1000 extpacks-build-win.x86 \
1001 extpacks-build-win.amd64 \
1002 extpacks-build-solaris.amd64 \
1003 extpacks-build-solaris.x86 \
1004 extpacks-build-os2.x86 \
1005 extpacks-build-linux.amd64 \
1006 extpacks-build-linux.x86 \
1007 extpacks-build-freebsd.amd64 \
1008 extpacks-build-freebsd.x86 \
1009 extpacks-build-darwin.amd64 \
1010 extpacks-build-darwin.x86 \
1011 extpacks-packing
1012
1013
1014#
1015# Build the test suite, all of it.
1016#
1017# This is currently tailored (hardcoded) for the additions build box just like
1018# the additions build above, which it in fact is a copy of.
1019#
1020testsuite-fetch:
1021 + $(KMK) -C tools fetch VBOX_ONLY_TESTSUITE=1
1022# + $(KMK) -C tools fetch KBUILD_TARGET_ARCH=amd64 KBUILD_TARGET=darwin BUILD_TARGET_ARCH=amd64 BUILD_TARGET=darwin VBOX_ONLY_TESTSUITE=1
1023# + $(KMK) -C tools fetch KBUILD_TARGET_ARCH=x86 KBUILD_TARGET=darwin BUILD_TARGET_ARCH=x86 BUILD_TARGET=darwin VBOX_ONLY_TESTSUITE=1
1024 + $(KMK) -C tools fetch KBUILD_TARGET_ARCH=amd64 KBUILD_TARGET=linux BUILD_TARGET_ARCH=amd64 BUILD_TARGET=linux VBOX_ONLY_TESTSUITE=1
1025 + $(KMK) -C tools fetch KBUILD_TARGET_ARCH=x86 KBUILD_TARGET=linux BUILD_TARGET_ARCH=x86 BUILD_TARGET=linux VBOX_ONLY_TESTSUITE=1
1026# + $(KMK) -C tools fetch KBUILD_TARGET_ARCH=x86 KBUILD_TARGET=os2 BUILD_TARGET_ARCH=x86 BUILD_TARGET=os2 VBOX_ONLY_TESTSUITE=1
1027 + $(KMK) -C tools fetch KBUILD_TARGET_ARCH=amd64 KBUILD_TARGET=solaris BUILD_TARGET_ARCH=amd64 BUILD_TARGET=solaris VBOX_ONLY_TESTSUITE=1
1028 + $(KMK) -C tools fetch KBUILD_TARGET_ARCH=x86 KBUILD_TARGET=solaris BUILD_TARGET_ARCH=x86 BUILD_TARGET=solaris VBOX_ONLY_TESTSUITE=1
1029 + $(KMK) -C tools fetch KBUILD_TARGET_ARCH=amd64 KBUILD_TARGET=win BUILD_TARGET_ARCH=amd64 BUILD_TARGET=win VBOX_ONLY_TESTSUITE=1
1030 + $(KMK) -C tools fetch KBUILD_TARGET_ARCH=x86 KBUILD_TARGET=win BUILD_TARGET_ARCH=x86 BUILD_TARGET=win VBOX_ONLY_TESTSUITE=1
1031
1032
1033testsuite-build: \
1034 testsuite-build-solaris.amd64 \
1035 testsuite-build-solaris.x86 \
1036 testsuite-build-win.x86 \
1037 testsuite-build-win.amd64 \
1038 testsuite-build-os2.x86 \
1039 testsuite-build-linux.amd64 \
1040 testsuite-build-linux.x86
1041
1042VBOX_TESTSUITE_BUILD.amd64 = VBOX_ONLY_TESTSUITE=1 \
1043 KBUILD_TYPE=$(KBUILD_TYPE) BUILD_TYPE=$(KBUILD_TYPE) \
1044 KBUILD_TARGET_ARCH=amd64 BUILD_TARGET_ARCH=amd64 \
1045 VBOX_SVN_REV=$(VBOX_SVN_REV)
1046
1047VBOX_TESTSUITE_BUILD.x86 = VBOX_ONLY_TESTSUITE=1 \
1048 KBUILD_TYPE=$(KBUILD_TYPE) BUILD_TYPE=$(KBUILD_TYPE) \
1049 KBUILD_TARGET_ARCH=x86 BUILD_TARGET_ARCH=x86 \
1050 VBOX_SVN_REV=$(VBOX_SVN_REV)
1051
1052# Automatically determine the testsuite build subdir name. Used for figuring
1053# out directory names inside the test suite building VMs.
1054VBOX_TESTSUITE_BUILD_SUBDIRNAME := $(lastword $(subst /, ,$(PATH_ROOT)))
1055
1056# When building in parallel on a Windows host, make sure we finish the host
1057# bit before kicking off any UNIX guest or we'll run into file sharing issues.
1058ifeq ($(KBUILD_TARGET),win)
1059VBOX_TESTSUITE_BUILD_WIN_HOST_FIRST = testsuite-build-win.x86 testsuite-build-win.amd64
1060else
1061VBOX_TESTSUITE_BUILD_WIN_HOST_FIRST =
1062endif
1063
1064# ASSUMES the 32-bit edition has been built already. Also for serializing VM access.
1065testsuite-build-win.amd64: testsuite-build-win.x86
1066ifeq ($(KBUILD_TARGET),win)
1067 + $(VBOX_KMK_TIME) $(KMK) $(VBOX_TESTSUITE_BUILD.amd64) all $(VBOX_TESTSUITE_HOST_BUILD_TWEAK)
1068else
1069 $(call MSG_L1,Building Windows/amd64 testsuite)
1070 $(VBOX_KMK_TIME) ssh vbox@192.168.27.5 " echo $@ && cd e:/$(VBOX_TESTSUITE_BUILD_SUBDIRNAME) && tools/env.sh kmk $(VBOX_TESTSUITE_BUILD.amd64) all "
1071endif
1072
1073testsuite-build-win.x86:
1074ifeq ($(KBUILD_TARGET),win)
1075 + $(VBOX_KMK_TIME) $(KMK) $(VBOX_TESTSUITE_BUILD.x86) all $(VBOX_TESTSUITE_HOST_BUILD_TWEAK)
1076else
1077 $(call MSG_L1,Building Windows/x86 testsuite)
1078 $(VBOX_KMK_TIME) ssh vbox@192.168.27.5 " echo $@ && cd e:/$(VBOX_TESTSUITE_BUILD_SUBDIRNAME) && tools/env.sh kmk $(VBOX_TESTSUITE_BUILD.x86) all"
1079endif
1080
1081ifeq ($(KBUILD_TARGET),solaris)
1082testsuite-build-solaris.amd64:
1083 + $(VBOX_KMK_TIME) $(KMK) $(VBOX_TESTSUITE_BUILD.amd64) all $(VBOX_TESTSUITE_HOST_BUILD_TWEAK)
1084
1085testsuite-build-solaris.x86:
1086 + $(VBOX_KMK_TIME) $(KMK) $(VBOX_TESTSUITE_BUILD.x86) all $(VBOX_TESTSUITE_HOST_BUILD_TWEAK)
1087
1088else
1089testsuite-build-solaris.rsync-into-vm: $(VBOX_TESTSUITE_BUILD_WIN_HOST_FIRST)
1090 $(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)
1091
1092testsuite-build-solaris.build-it: testsuite-build-solaris.rsync-into-vm
1093 $(call MSG_L1,Building Solaris/amd64 testsuite)
1094 $(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"
1095 $(call MSG_L1,Building Solaris/x86 testsuite)
1096 $(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 "
1097
1098testsuite-build-solaris.rsync-out-of-vm: testsuite-build-solaris.build-it
1099 $(VBOX_KMK_TIME) rsync -a --delete 192.168.27.4:/mnt/tinderbox/$(VBOX_TESTSUITE_BUILD_SUBDIRNAME)/out/solaris.x86 out/
1100 $(VBOX_KMK_TIME) rsync -a --delete 192.168.27.4:/mnt/tinderbox/$(VBOX_TESTSUITE_BUILD_SUBDIRNAME)/out/solaris.amd64 out/
1101
1102.NOTPARALLEL: testsuite-build-solaris.rsync-out-of-vm testsuite-build-solaris.rsync-into-vm
1103.PHONY: testsuite-build-solaris.rsync-out-of-vm testsuite-build-solaris.rsync-into-vm testsuite-build-solaris.build-it
1104
1105testsuite-build-solaris.amd64: testsuite-build-solaris.rsync-out-of-vm
1106testsuite-build-solaris.x86: testsuite-build-solaris.rsync-out-of-vm
1107endif
1108
1109testsuite-build-os2.x86:
1110#ifeq ($(KBUILD_TARGET),os2)
1111# + $(VBOX_KMK_TIME) $(KMK) $(VBOX_TESTSUITE_BUILD.x86) all $(VBOX_TESTSUITE_HOST_BUILD_TWEAK)
1112#else
1113# $(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) "
1114#endif
1115
1116testsuite-build-linux.amd64: $(VBOX_TESTSUITE_BUILD_WIN_HOST_FIRST)
1117ifeq ($(KBUILD_TARGET).$(KBUILD_TARGET_ARCH),linux.amd64)
1118 + $(VBOX_KMK_TIME) $(KMK) $(VBOX_TESTSUITE_BUILD.amd64) all $(VBOX_TESTSUITE_HOST_BUILD_TWEAK)
1119else
1120 $(call MSG_L1,Building Linux/amd64 testsuite)
1121 $(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"
1122endif
1123
1124testsuite-build-linux.x86: $(VBOX_TESTSUITE_BUILD_WIN_HOST_FIRST)
1125ifeq ($(KBUILD_TARGET).$(KBUILD_TARGET_ARCH),linux.x86)
1126 + $(VBOX_KMK_TIME) $(KMK) $(VBOX_TESTSUITE_BUILD.x86) all $(VBOX_TESTSUITE_HOST_BUILD_TWEAK)
1127else
1128 $(call MSG_L1,Building Linux/x86 testsuite)
1129 $(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"
1130endif
1131
1132
1133testsuite-packing:
1134 + $(KMK) VBOX_ONLY_TESTSUITE=1 \
1135 VBOX_WITH_TESTSUITE_PACKING.darwin.amd64= \
1136 VBOX_WITH_TESTSUITE_PACKING.darwin.x86= \
1137 VBOX_WITH_TESTSUITE_PACKING.freebsd.amd64= \
1138 VBOX_WITH_TESTSUITE_PACKING.freebsd.x86= \
1139 VBOX_WITH_TESTSUITE_PACKING.linux.amd64=1 \
1140 VBOX_WITH_TESTSUITE_PACKING.linux.x86=1 \
1141 VBOX_WITH_TESTSUITE_PACKING.os2.x86= \
1142 VBOX_WITH_TESTSUITE_PACKING.solaris.amd64=1 \
1143 VBOX_WITH_TESTSUITE_PACKING.solaris.x86=1 \
1144 VBOX_WITH_TESTSUITE_PACKING.win.amd64=1 \
1145 VBOX_WITH_TESTSUITE_PACKING.win.x86=1 \
1146 -C src/VBox/Testsuite \
1147 $(PATH_OUT)/VBoxTestSuite.zip
1148
1149.PHONY: \
1150 testsuite-build-win.x86 \
1151 testsuite-build-win.amd64 \
1152 testsuite-build-solaris.amd64 \
1153 testsuite-build-solaris.x86 \
1154 testsuite-build-os2.x86 \
1155 testsuite-build-linux.amd64 \
1156 testsuite-build-linux.x86 \
1157 testsuite-packing
1158
1159
1160#
1161# Build the EFI firmware, all of it.
1162#
1163# Mainly hooks right now, maybe we need them later.
1164#
1165efi-fetch:
1166
1167efi-build: $(VBOX_VERSION_HEADER)
1168 $(PATH_ROOT)/webtools/tinderbox/client/efi-build.sh
1169
1170efi-packing:
1171
1172#
1173# Generate VirtualBox-OSE-x.x.x.tar.bz2 (OSE) tarballs for distribution
1174# - includes kBuild
1175# - must be executed on an OSE checkout
1176#
1177
1178# the path where to store the tarball
1179TARBALLPATH ?= $(abspath $(PATH_ROOT)/..)
1180# the root directory inside the tarball
1181TARBALLROOT ?= VirtualBox-$(VBOX_VERSION_STRING)
1182# the name of the tarball file
1183TARBALLNAME ?= VirtualBox-$(VBOX_VERSION_STRING).tar.bz2
1184snapshot-ose:
1185 @$(call MSG_L1,Creating tarball $(TARBALLPATH)/$(TARBALLNAME))
1186 @if [ -r "$(PATH_ROOT)/src/VBox/RDP/server/server.cpp" ]; then \
1187 echo; \
1188 echo "Found RDP stuff, refused to build OSE tarball!"; \
1189 echo; \
1190 exit 1; \
1191 fi; \
1192 if [ -z "$(VBOX_OSE)" ]; then \
1193 echo; \
1194 echo "Please do 'kmk snapshot-ose VBOX_OSE=1'"; \
1195 echo; \
1196 exit 1; \
1197 fi
1198 $(QUIET)$(MKDIR) -p $(TARBALLPATH)
1199 $(QUIET)$(RM) -f $(TARBALLPATH)/$(TARBALLROOT)
1200 $(QUIET)$(LN_SYMLINK) $(PATH_ROOT) $(TARBALLPATH)/$(TARBALLROOT)
1201 $(QUIET)tar -cjh --owner 0 --group 0 --totals \
1202 --exclude=.svn \
1203 --exclude=$(TARBALLROOT)/out \
1204 --exclude=$(TARBALLROOT)/env.sh \
1205 --exclude=$(TARBALLROOT)/configure.log \
1206 --exclude=$(TARBALLROOT)/build.log \
1207 --exclude=$(TARBALLROOT)/AutoConfig.kmk \
1208 --exclude=$(TARBALLROOT)/LocalConfig.kmk \
1209 --exclude=$(TARBALLROOT)/prebuild \
1210 -C $(TARBALLPATH) \
1211 -f $(TARBALLPATH)/$(TARBALLNAME) \
1212 $(TARBALLROOT)
1213 $(QUIET)$(RM) $(TARBALLPATH)/$(TARBALLROOT)
1214
1215
1216#
1217# Generate VirtualBox-x.x.x.tar.bz2 (PUEL) zip archives for internal use only
1218# - includes kBuild
1219# - must be executed on an PUEL checkout
1220#
1221
1222# the path where to store the zip archive
1223ZIPPATH ?= $(abspath $(PATH_ROOT)/..)
1224# the root directory inside the zip archive
1225ZIPROOT ?= VirtualBox-$(VBOX_VERSION_STRING)
1226# the name of the zip archive
1227ZIPNAME ?= VirtualBox-$(VBOX_VERSION_STRING).zip
1228snapshot-puel:
1229 @$(call MSG_L1,Creating zip $(ZIPPATH)/$(ZIPNAME))
1230 @if [ ! -r "$(PATH_ROOT)/src/VBox/RDP/server/server.cpp" ]; then \
1231 echo; \
1232 echo "Did not find RDP stuff, is this an OSE branch?"; \
1233 echo; \
1234 exit 1; \
1235 fi
1236 @if [ -z "$(PASSWORD)" ]; then \
1237 echo; \
1238 echo "Please specify a password with PASSWORD=..."; \
1239 echo; \
1240 exit 1; \
1241 fi
1242 $(QUIET)$(MKDIR) -p $(ZIPPATH)
1243 $(QUIET)$(RM) -f $(ZIPPATH)/$(ZIPROOT)
1244 $(QUIET)$(RM) -f $(ZIPPATH)/$(ZIPNAME)
1245 $(QUIET)$(LN_SYMLINK) $(PATH_ROOT) $(ZIPPATH)/$(ZIPROOT)
1246 $(QUIET)(cd $(ZIPPATH); 7z a \
1247 -l -tzip -mmt=on -mx=7 -p$(PASSWORD) \
1248 -xr!.svn \
1249 -i!$(ZIPROOT)/Config.kmk \
1250 -i!$(ZIPROOT)/Doxyfile.Core \
1251 -i!$(ZIPROOT)/Makefile.kmk \
1252 -i!$(ZIPROOT)/configure \
1253 -i!$(ZIPROOT)/configure.vbs \
1254 -i!$(ZIPROOT)/doc \
1255 -i!$(ZIPROOT)/include \
1256 -i!$(ZIPROOT)/kBuild \
1257 -i!$(ZIPROOT)/src \
1258 -i!$(ZIPROOT)/tools/env.sh \
1259 -i!$(ZIPROOT)/tools/linux.x86/bin/* \
1260 -i!$(ZIPROOT)/tools/linux.amd64/bin/* \
1261 -x!$(ZIPROOT)/doc/Devices \
1262 -x!$(ZIPROOT)/doc/\*pdf \
1263 -x!$(ZIPROOT)/doc/L4VM \
1264 -x!$(ZIPROOT)/doc/VMM \
1265 -x!$(ZIPROOT)/doc/licenses_old \
1266 -x!$(ZIPROOT)/doc/manual/de_DE \
1267 -x!$(ZIPROOT)/doc/manual/fr_FR \
1268 -x!$(ZIPROOT)/src/tests \
1269 -x!$(ZIPROOT)/src/VBox/Artwork/2008-\* \
1270 -x!$(ZIPROOT)/src/VBox/Installer/AMI \
1271 -x!$(ZIPROOT)/src/VBox/Installer/Avanquest \
1272 -x!$(ZIPROOT)/src/VBox/Installer/Encore \
1273 -x!$(ZIPROOT)/src/VBox/Installer/linux/debian \
1274 -x!$(ZIPROOT)/src/VBox/Installer/linux/rpm \
1275 $(ZIPPATH)/$(ZIPNAME))
1276 $(QUIET)$(RM) $(ZIPPATH)/$(ZIPROOT)
1277
1278
1279#
1280# Generate ALL the rules.
1281#
1282include $(KBUILD_PATH)/subfooter.kmk
1283
1284
1285#
1286# Generate x86.mac and err.mac.
1287#
1288incs:
1289 $(SED) -f include/VBox/err.sed --output include/VBox/err.mac include/VBox/err.h
1290 $(APPEND) include/VBox/err.mac '%include "iprt/err.mac"'
1291 $(SED) -f include/VBox/err.sed --output include/iprt/err.mac include/iprt/err.h
1292 $(SED) -f include/VBox/various.sed --output include/VBox/apic.mac include/VBox/apic.h
1293 $(SED) -f include/VBox/various.sed --output include/VBox/x86.mac include/VBox/x86.h
1294 $(SED) -f include/VBox/various.sed --output include/VBox/param.mac include/VBox/param.h
1295 $(SED) -f include/VBox/various.sed --output include/VBox/VMMDevTesting.mac include/VBox/VMMDevTesting.h
1296
1297
1298#
1299# Generate Visual SlickEdit tagging #defines.
1300#
1301vslick.h: include/VBox/cdefs.h include/iprt/cdefs.h $(MAKEFILE)
1302 $(RM) -f -- $@ $@.tmp $@.tmp2 $@.tmp3
1303 $(APPEND) $@.tmp '// autogenerated'
1304 @$(APPEND) $@.tmp '#define IN_SLICKEDIT '
1305 @$(APPEND) $@.tmp '#define RT_C_DECLS_BEGIN '
1306 @$(APPEND) $@.tmp '#define RT_C_DECLS_END '
1307 @$(APPEND) $@.tmp '#define RT_NO_THROW '
1308 @$(APPEND) $@.tmp '#define RT_THROW(type) throw(type)'
1309
1310 @$(APPEND) $@.tmp '#define ATL_NO_VTABLE '
1311 @$(APPEND) $@.tmp '#define BEGIN_COM_MAP(a) '
1312 @$(APPEND) $@.tmp '#define COM_INTERFACE_ENTRY(a) '
1313 @$(APPEND) $@.tmp '#define COM_INTERFACE_ENTRY2(a,b) '
1314 @$(APPEND) $@.tmp '#define COM_INTERFACE_ENTRY3(a,b,c) '
1315 @$(APPEND) $@.tmp '#define COM_INTERFACE_ENTRY4(a,b,c,d) '
1316 @$(APPEND) $@.tmp '#define END_COM_MAP(a) '
1317
1318 @$(APPEND) $@.tmp '#define COM_DECL_READONLY_ENUM_AND_COLLECTION(a) '
1319 @$(APPEND) $@.tmp '#define COMGETTER(n) n '
1320 @$(APPEND) $@.tmp '#define COMSETTER(n) n '
1321 @$(APPEND) $@.tmp '#define ComSafeArrayIn(t,a) t a[] '
1322 @$(APPEND) $@.tmp '#define ComSafeArrayOut(t,a) t * a[] '
1323 @$(APPEND) $@.tmp '#define DECLARE_CLASSFACTORY(a) '
1324 @$(APPEND) $@.tmp '#define DECLARE_CLASSFACTORY_SINGLETON(a) '
1325 @$(APPEND) $@.tmp '#define DECLARE_REGISTRY_RESOURCEID(a) '
1326 @$(APPEND) $@.tmp '#define DECLARE_NOT_AGGREGATABLE(a) '
1327 @$(APPEND) $@.tmp '#define DECLARE_PROTECT_FINAL_CONSTRUCT(a) '
1328 @$(APPEND) $@.tmp '#define DECLARE_EMPTY_CTOR_DTOR(a) a(); ~a();'
1329 @$(APPEND) $@.tmp '#define DEFINE_EMPTY_CTOR_DTOR(a) a::a() {} a::~a() {}'
1330 @$(APPEND) $@.tmp '#define NS_DECL_ISUPPORTS '
1331 @$(APPEND) $@.tmp '#define NS_IMETHOD virtual nsresult '
1332 @$(APPEND) $@.tmp '#define NS_IMETHOD_(type) virtual type '
1333 @$(APPEND) $@.tmp '#define NS_IMETHODIMP nsresult '
1334 @$(APPEND) $@.tmp '#define NS_IMETHODIMP_(type) type '
1335 @$(APPEND) $@.tmp '#define PARSERS_EXPORT '
1336if1of ($(KBUILD_HOST),win)
1337 @$(APPEND) $@.tmp '#define COM_STRUCT_OR_CLASS(I) struct I '
1338 @$(APPEND) $@.tmp '#define STDMETHOD(m) virtual HRESULT m '
1339 @$(APPEND) $@.tmp '#define STDMETHOD_(type,m) virtual type m '
1340 @$(APPEND) $@.tmp '#define STDMETHODIMP HRESULT '
1341 @$(APPEND) $@.tmp '#define STDMETHODIMP_(type) type '
1342else
1343 @$(APPEND) $@.tmp '#define COM_STRUCT_OR_CLASS(I) class I '
1344 @$(APPEND) $@.tmp '#define STDMETHOD(m) virtual nsresult m '
1345 @$(APPEND) $@.tmp '#define STDMETHOD_(type,m) virtual type m '
1346 @$(APPEND) $@.tmp '#define STDMETHODIMP nsresult '
1347 @$(APPEND) $@.tmp '#define STDMETHODIMP_(type) type '
1348endif
1349 @$(APPEND) $@.tmp '#define VBOX_SCRIPTABLE(a) public a '
1350 @$(APPEND) $@.tmp '#define VBOX_SCRIPTABLE_IMPL(a) '
1351 @$(APPEND) $@.tmp '#define VIRTUALBOXBASE_ADD_ERRORINFO_SUPPORT(a) '
1352
1353 @$(APPEND) $@.tmp '#define CTX_SUFF(var) var##R3 '
1354 @$(APPEND) $@.tmp '#define CTXAllSUFF(var) var##R3 '
1355 @$(APPEND) $@.tmp '#define CTXSUFF(var) var##HC '
1356 @$(APPEND) $@.tmp '#define OTHERCTXSUFF(var) var##GC '
1357 @$(APPEND) $@.tmp '#define CTXALLMID(first, last) first##R3##last '
1358 @$(APPEND) $@.tmp '#define CTXMID(first, last) first##HC##last '
1359 @$(APPEND) $@.tmp '#define OTHERCTXMID(first, last) first##GC##last '
1360 @$(APPEND) $@.tmp '#define CTXTYPE(GCType, R3Type, R0Type) R3Type '
1361 @$(APPEND) $@.tmp '#define RCTYPE(RCType, HCType) RCType '
1362 @$(APPEND) $@.tmp '#define GCTYPE(GCType, HCType) GCType '
1363 @$(APPEND) $@.tmp '#define RCPTRTYPE(RCType) RCType '
1364 @$(APPEND) $@.tmp '#define GCPTRTYPE(GCType) GCType '
1365 @$(APPEND) $@.tmp '#define HCPTRTYPE(HCType) HCType '
1366 @$(APPEND) $@.tmp '#define R3R0PTRTYPE(HCType) HCType '
1367 @$(APPEND) $@.tmp '#define R0PTRTYPE(R3Type) R3Type '
1368 @$(APPEND) $@.tmp '#define R3PTRTYPE(R0Type) R0Type '
1369 @$(APPEND) $@.tmp '#define RT_SRC_POS __FILE__, __LINE__, __PRETTY_FUNCTION__ '
1370 @$(APPEND) $@.tmp '#define RT_SRC_POS_DECL const char *pszFile, unsigned iLine, const char *pszFunction '
1371 @$(APPEND) $@.tmp '#define RT_SRC_POS_ARGS pszFile, iLine, pszFunction '
1372 @$(APPEND) $@.tmp '#define RTCALL'
1373 @$(APPEND) $@.tmp '#define DECLINLINE(type) inline type '
1374 @$(APPEND) $@.tmp '#define DECL_FORCE_INLINE(type) inline type '
1375 @$(APPEND) $@.tmp '#define DECL_INVALID(type) type '
1376
1377 @$(APPEND) $@.tmp '#define PDMDEVINSINT_DECLARED 1'
1378 @$(APPEND) $@.tmp '#define VBOX_WITH_HGCM 1'
1379 @$(APPEND) $@.tmp '#define VBOXCALL'
1380
1381 @$(APPEND) $@.tmp '#define PGM_CTX(a,b) b'
1382 @$(APPEND) $@.tmp '#define PGM_CTX3(a,b,c) c'
1383 @$(APPEND) $@.tmp '#define PGM_GST_NAME(name) PGM_GST_NAME_AMD64(name)'
1384 @$(APPEND) $@.tmp '#define PGM_GST_NAME_REAL(name) PGM_CTX3(name)'
1385 @$(APPEND) $@.tmp '#define PGM_GST_NAME_PROT(name) PGM_CTX3(pgm,GstProt,name)'
1386 @$(APPEND) $@.tmp '#define PGM_GST_NAME_32BIT(name) PGM_CTX3(pgm,Gst32Bit,name)'
1387 @$(APPEND) $@.tmp '#define PGM_GST_NAME_PAE(name) PGM_CTX3(pgm,GstPAE,name)'
1388 @$(APPEND) $@.tmp '#define PGM_GST_NAME_AMD64(name) PGM_CTX3(pgm,GstAMD64,name)'
1389 @$(APPEND) $@.tmp '#define PGM_GST_DECL(type, name) type PGM_GST_NAME(name)'
1390 @$(APPEND) $@.tmp '#define PGM_SHW_NAME(name) PGM_GST_NAME_AMD64(name)'
1391 @$(APPEND) $@.tmp '#define PGM_SHW_NAME_32BIT(name) PGM_CTX3(pgm,Shw32Bit,name)'
1392 @$(APPEND) $@.tmp '#define PGM_SHW_NAME_PAE(name) PGM_CTX3(pgm,ShwPAE,name)'
1393 @$(APPEND) $@.tmp '#define PGM_SHW_NAME_AMD64(name) PGM_CTX3(pgm,ShwAMD64,name)'
1394 @$(APPEND) $@.tmp '#define PGM_SHW_NAME_NESTED(name) PGM_CTX3(pgm,ShwNested,name)'
1395 @$(APPEND) $@.tmp '#define PGM_SHW_NAME_EPT(name) PGM_CTX3(pgm,ShwEPT,name)'
1396 @$(APPEND) $@.tmp '#define PGM_SHW_DECL(type, name) type PGM_SHW_NAME(name)'
1397 @$(APPEND) $@.tmp '#define PGM_BTH_NAME(name) PGM_BTH_NAME_NESTED_AMD64(name)'
1398 @$(APPEND) $@.tmp '#define PGM_BTH_NAME_32BIT_REAL(name) PGM_CTX3(pgm,Bth,name)'
1399 @$(APPEND) $@.tmp '#define PGM_BTH_NAME_32BIT_PROT(name) PGM_CTX3(pgm,Bth,name)'
1400 @$(APPEND) $@.tmp '#define PGM_BTH_NAME_32BIT_32BIT(name) PGM_CTX3(pgm,Bth,name)'
1401 @$(APPEND) $@.tmp '#define PGM_BTH_NAME_PAE_REAL(name) PGM_CTX3(pgm,Bth,name)'
1402 @$(APPEND) $@.tmp '#define PGM_BTH_NAME_PAE_PROT(name) PGM_CTX3(pgm,Bth,name)'
1403 @$(APPEND) $@.tmp '#define PGM_BTH_NAME_PAE_32BIT(name) PGM_CTX3(pgm,Bth,name)'
1404 @$(APPEND) $@.tmp '#define PGM_BTH_NAME_PAE_PAE(name) PGM_CTX3(pgm,Bth,name)'
1405 @$(APPEND) $@.tmp '#define PGM_BTH_NAME_AMD64_PROT(name) PGM_CTX3(pgm,Bth,name)'
1406 @$(APPEND) $@.tmp '#define PGM_BTH_NAME_AMD64_AMD64(name) PGM_CTX3(pgm,Bth,name)'
1407 @$(APPEND) $@.tmp '#define PGM_BTH_NAME_NESTED_REAL(name) PGM_CTX3(pgm,Bth,name)'
1408 @$(APPEND) $@.tmp '#define PGM_BTH_NAME_NESTED_PROT(name) PGM_CTX3(pgm,Bth,name)'
1409 @$(APPEND) $@.tmp '#define PGM_BTH_NAME_NESTED_32BIT(name) PGM_CTX3(pgm,Bth,name)'
1410 @$(APPEND) $@.tmp '#define PGM_BTH_NAME_NESTED_PAE(name) PGM_CTX3(pgm,Bth,name)'
1411 @$(APPEND) $@.tmp '#define PGM_BTH_NAME_NESTED_AMD64(name) PGM_CTX3(pgm,Bth,name)'
1412 @$(APPEND) $@.tmp '#define PGM_BTH_NAME_EPT_REAL(name) PGM_CTX3(pgm,Bth,name)'
1413 @$(APPEND) $@.tmp '#define PGM_BTH_NAME_EPT_PROT(name) PGM_CTX3(pgm,Bth,name)'
1414 @$(APPEND) $@.tmp '#define PGM_BTH_NAME_EPT_32BIT(name) PGM_CTX3(pgm,Bth,name)'
1415 @$(APPEND) $@.tmp '#define PGM_BTH_NAME_EPT_PAE(name) PGM_CTX3(pgm,Bth,name)'
1416 @$(APPEND) $@.tmp '#define PGM_BTH_NAME_EPT_AMD64(name) PGM_CTX3(pgm,Bth,name)'
1417 @$(APPEND) $@.tmp '#define PGM_BTH_DECL(type, name) type PGM_BTH_NAME(name)'
1418
1419 $(SED) -e '/__cdecl/d' \
1420 -e '/^ *# *define.*DECL/!d' \
1421 -e '/DECLS/d' \
1422 -e '/DECLARE_CLS_/d' \
1423 -e '/_SRC_POS_DECL/d' \
1424 -e '/declspec/d' \
1425 -e '/__attribute__/d' \
1426 -e 's/# */#/g' \
1427 -e 's/ */ /g' \
1428 -e '/(type) DECLEXPORT/d' \
1429 -e '/ DECLEXPORT_CLASS/d' \
1430 -e 's/ *VBOXCALL//' \
1431 -e 's/ *RTCALL//' \
1432 -e 's/(type) DECLIMPORT(type)/(type) type/' \
1433 -e '/ DECLASM(type) type/d' \
1434 -e '/define *DECL..CALLBACKMEMBER(type[^)]*) *RT/d' \
1435 -e '/define *DECLINLINE(type)/d' \
1436 -e '/define *DECL_FORCE_INLINE(type)/d' \
1437 -e '/ *DECL_INVALID(/d' \
1438 -e '/define RT[DATGRC03]*DECL(type) *DECLHIDDEN(type)/d' \
1439 \
1440 --append $@.tmp \
1441 $(filter-out include/VBox/err.h, $(wildcard include/VBox/*.h)) \
1442 include/iprt/cdefs.h
1443 $(CAT_EXT) $@.tmp \
1444 | $(SED_EXT) -e 's/_/\x1F/g' -e 's/(/\x1E/g' -e 's/[[:space:]][[:space:]]*/\x1C/g' \
1445 | sort $(if-expr "$(KBUILD_TARGET)" == "win",,-f) \
1446 | $(SED_EXT) -e 's/\x1F/_/g' -e 's/\x1E/(/g' -e 's/\x1C/ /g' \
1447 | $(SED_EXT) -e 's/$$/\n/' --output $@.tmp2
1448 $(MV) -f $@.tmp2 $@
1449 $(RM) -f $@.tmp $@.tmp2 $@.tmp3
1450ifeq ($(KBUILD_HOST),win)
1451 @$(ECHO) 'TODO: Merge vslick.h with your "$(HOMEDRIVE)$(HOMEPATH)\Documents\My SlickEdit Config\x.y.z\usercpp.h" file.'
1452else ifeq ($(KBUILD_HOST),darwin)
1453 @$(ECHO) "TODO: Merge ./vslick.h with your ~/Library/Application\ Support/SlickEdit/x.y.z/unxcpp.h file."
1454else
1455 @$(ECHO) "TODO: Merge ./vslick.h with your ~/.slickedit/x.y.z/unxcpp.h file."
1456endif
1457
1458
1459#
1460# Add fetching of the tools to the 'up[date][2]' targets.
1461#
1462up update up2 update2::
1463ifndef VBOX_OSE
1464 +$(MAKE) -C tools fetch
1465else
1466 $(MAKE) -C tools -f Makefile-ose.kmk fetch
1467endif
1468
1469
1470
1471#
1472# Aliases for building the SDK.
1473#
1474.NOTPARALLEL: sdk sdk-fetch
1475sdk:
1476 + $(KMK) VBOX_ONLY_SDK=1 \
1477 pass_bldprogs pass_others pass_installs pass_packing
1478
1479sdk-fetch:
1480 + $(KMK) KBUILD_TARGET=win KBUILD_TARGET_ARCH=x86 -C tools fetch
1481
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