VirtualBox

source: vbox/trunk/Makefile.kmk@ 27014

Last change on this file since 27014 was 27014, checked in by vboxsync, 15 years ago

makefiles: Preps for building the test suite.

  • Property svn:eol-style set to native
  • Property svn:keywords set to Author Date Id Revision
File size: 50.2 KB
Line 
1# $Id: Makefile.kmk 27014 2010-03-04 11:59:54Z vboxsync $
2## @file
3# Top level makefile.
4#
5
6#
7# Copyright (C) 2006-2010 Sun Microsystems, Inc.
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# Please contact Sun Microsystems, Inc., 4150 Network Circle, Santa
18# Clara, CA 95054 USA or visit http://www.sun.com if you need
19# additional information or have any questions.
20#
21
22SUB_DEPTH = .
23include $(KBUILD_PATH)/subheader.kmk
24
25#
26# Sub-makefiles / Sub-directories.
27#
28ifdef VBOX_SINGLE_MAKEFILE
29 if defined(VBOX_WITH_DOCS) && !defined(VBOX_ONLY_ADDITIONS) && !defined(VBOX_ONLY_TESTSUITE)
30 include $(PATH_SUB_CURRENT)/doc/manual/Makefile.kmk
31 endif
32 include $(PATH_SUB_CURRENT)/src/Makefile.kmk
33else
34 if defined(VBOX_WITH_DOCS) && !defined(VBOX_ONLY_ADDITIONS) && !defined(VBOX_ONLY_TESTSUITE)
35 SUBDIRS = doc/manual
36 endif
37 SUBDIRS += src
38endif
39
40
41#
42# Clean up global stuff that Config.kmk generates.
43#
44OTHER_CLEAN += \
45 $(VBOX_PACKAGE_HEADER) \
46 $(VBOX_LICENSE_VER_KMK) \
47 $(VBOX_VERSION_MK) \
48 $(VBOX_VERSION_HEADER) \
49 $(VBOX_VERSION_STAMP) \
50 $(wildcard $(PATH_OUT)/version-stamp-*.*.*) \
51 $(VBOX_SVN_REV_KMK).ts \
52 $(VBOX_SVN_REV_KMK) \
53 $(PATH_OUT)/GCCConfig.kmk
54
55
56if !defined(VBOX_ONLY_ADDITIONS) && !defined(VBOX_ONLY_TESTSUITE) && !defined(VBOX_ONLY_DOCS) # -> line 400
57
58ifndef VBOX_OSE
59 #
60 # Install the license (and misc non-executable stuff).
61 #
62 INSTALLS += nobin
63 nobin_INST = $(INST_BIN)
64 nobin_MODE = 0644
65 nobin_SOURCES =
66 ifdef VBOX_LICENSE_FILES
67 nobin_SOURCES += \
68 $(VBOX_BRAND_LICENSE_HTML)=>License-$(VBOX_LICENSE_VER).html \
69 $(foreach f,$(VBOX_INSTALLER_ADD_LANGUAGES),$(VBOX_BRAND_$(f)_LICENSE_HTML)=>License-$(VBOX_LICENSE_VER)-$(f).html)
70 endif
71endif # !OSE
72
73
74#
75# Install external binaries (mostly redistributable parts of tools we use).
76# This must be done *before* we build the manual.
77#
78# To avoid dragging in unnecessary tools and sdks here, we don't use the .win
79# and .linux property suffixes.
80#
81INSTALLS += bin
82
83bin_INST = $(INST_BIN)
84
85# The SDL DLLs
86if1of ($(KBUILD_TARGET), win os2)
87 ifneq ($(VBOX_WITH_VBOXSDL)$(VBOX_WITH_VBOXBFE),)
88 include $(KBUILD_PATH)/sdks/LIBSDL.kmk
89 bin_SOURCES += \
90 $(DLL_SDK_LIBSDL_SDL)
91 ifdef VBOX_WITH_SECURELABEL
92 bin_SOURCES += \
93 $(DLL_SDK_LIBSDL_SDLTTF)
94 endif
95 ifeq ($(KBUILD_TARGET),os2)
96 bin_SOURCES += \
97 $(DLL_SDK_LIBSDL_FSLIB)
98 endif
99 endif
100endif
101
102
103# The compiler runtime DLLs.
104ifeq ($(KBUILD_TARGET).$(VBOX_WITHOUT_COMPILER_REDIST),win.)
105 ifdef VBOX_USE_VCC80
106 include $(KBUILD_PATH)/tools/VCC80X86.kmk
107 include $(KBUILD_PATH)/tools/VCC80AMD64.kmk
108 bin_SOURCES.x86 += \
109 $(PATH_TOOL_VCC80X86)/redist/x86/Microsoft.VC80.CRT/Microsoft.VC80.CRT.manifest=>Microsoft.VC80.CRT/Microsoft.VC80.CRT.manifest \
110 $(PATH_TOOL_VCC80X86)/redist/x86/Microsoft.VC80.CRT/msvcr80.dll=>Microsoft.VC80.CRT/msvcr80.dll \
111 $(PATH_TOOL_VCC80X86)/redist/x86/Microsoft.VC80.CRT/msvcp80.dll=>Microsoft.VC80.CRT/msvcp80.dll \
112 $(PATH_TOOL_VCC80X86)/redist/x86/Microsoft.VC80.CRT/Microsoft.VC80.CRT.manifest=>testcase/Microsoft.VC80.CRT/Microsoft.VC80.CRT.manifest \
113 $(PATH_TOOL_VCC80X86)/redist/x86/Microsoft.VC80.CRT/msvcr80.dll=>testcase/Microsoft.VC80.CRT/msvcr80.dll \
114 $(PATH_TOOL_VCC80X86)/redist/x86/Microsoft.VC80.CRT/msvcp80.dll=>testcase/Microsoft.VC80.CRT/msvcp80.dll
115 bin_SOURCES.amd64 += \
116 $(PATH_TOOL_VCC80AMD64)/redist/amd64/Microsoft.VC80.CRT/Microsoft.VC80.CRT.manifest=>Microsoft.VC80.CRT/Microsoft.VC80.CRT.manifest \
117 $(PATH_TOOL_VCC80AMD64)/redist/amd64/Microsoft.VC80.CRT/msvcr80.dll=>Microsoft.VC80.CRT/msvcr80.dll \
118 $(PATH_TOOL_VCC80AMD64)/redist/amd64/Microsoft.VC80.CRT/msvcp80.dll=>Microsoft.VC80.CRT/msvcp80.dll \
119 $(PATH_TOOL_VCC80AMD64)/redist/amd64/Microsoft.VC80.CRT/Microsoft.VC80.CRT.manifest=>testcase/Microsoft.VC80.CRT/Microsoft.VC80.CRT.manifest \
120 $(PATH_TOOL_VCC80AMD64)/redist/amd64/Microsoft.VC80.CRT/msvcr80.dll=>testcase/Microsoft.VC80.CRT/msvcr80.dll \
121 $(PATH_TOOL_VCC80AMD64)/redist/amd64/Microsoft.VC80.CRT/msvcp80.dll=>testcase/Microsoft.VC80.CRT/msvcp80.dll
122 ifeq ($(VBOX_VCC_CRT_TYPE),d)
123 bin_SOURCES.x86 += \
124 $(PATH_TOOL_VCC80X86)/redist/Debug_NonRedist/x86/Microsoft.VC80.DebugCRT/Microsoft.VC80.DebugCRT.manifest=>Microsoft.VC80.DebugCRT/Microsoft.VC80.DebugCRT.manifest \
125 $(PATH_TOOL_VCC80X86)/redist/Debug_NonRedist/x86/Microsoft.VC80.DebugCRT/msvcr80d.dll=>Microsoft.VC80.DebugCRT/msvcr80d.dll \
126 $(PATH_TOOL_VCC80X86)/redist/Debug_NonRedist/x86/Microsoft.VC80.DebugCRT/msvcp80d.dll=>Microsoft.VC80.DebugCRT/msvcp80d.dll \
127 $(PATH_TOOL_VCC80X86)/redist/Debug_NonRedist/x86/Microsoft.VC80.DebugCRT/Microsoft.VC80.DebugCRT.manifest=>testcase/Microsoft.VC80.DebugCRT/Microsoft.VC80.DebugCRT.manifest \
128 $(PATH_TOOL_VCC80X86)/redist/Debug_NonRedist/x86/Microsoft.VC80.DebugCRT/msvcr80d.dll=>testcase/Microsoft.VC80.DebugCRT/msvcr80d.dll \
129 $(PATH_TOOL_VCC80X86)/redist/Debug_NonRedist/x86/Microsoft.VC80.DebugCRT/msvcp80d.dll=>testcase/Microsoft.VC80.DebugCRT/msvcp80d.dll
130 bin_SOURCES.amd64 += \
131 $(PATH_TOOL_VCC80AMD64)/redist/Debug_NonRedist/amd64/Microsoft.VC80.DebugCRT/Microsoft.VC80.DebugCRT.manifest=>Microsoft.VC80.DebugCRT/Microsoft.VC80.DebugCRT.manifest \
132 $(PATH_TOOL_VCC80AMD64)/redist/Debug_NonRedist/amd64/Microsoft.VC80.DebugCRT/msvcr80d.dll=>Microsoft.VC80.DebugCRT/msvcr80d.dll \
133 $(PATH_TOOL_VCC80AMD64)/redist/Debug_NonRedist/amd64/Microsoft.VC80.DebugCRT/msvcp80d.dll=>Microsoft.VC80.DebugCRT/msvcp80d.dll \
134 $(PATH_TOOL_VCC80AMD64)/redist/Debug_NonRedist/amd64/Microsoft.VC80.DebugCRT/Microsoft.VC80.DebugCRT.manifest=>testcase/Microsoft.VC80.DebugCRT/Microsoft.VC80.DebugCRT.manifest \
135 $(PATH_TOOL_VCC80AMD64)/redist/Debug_NonRedist/amd64/Microsoft.VC80.DebugCRT/msvcr80d.dll=>testcase/Microsoft.VC80.DebugCRT/msvcr80d.dll \
136 $(PATH_TOOL_VCC80AMD64)/redist/Debug_NonRedist/amd64/Microsoft.VC80.DebugCRT/msvcp80d.dll=>testcase/Microsoft.VC80.DebugCRT/msvcp80d.dll
137 endif
138 endif
139 ifndef VBOX_USE_VCC80
140 VBOX_INSTALL_VCC70_RT = 1
141 endif
142 ifeq ($(KBUILD_TARGET).$(KBUILD_TARGET_ARCH),win.x86)
143 VBOX_INSTALL_VCC70_RT = 1
144 endif
145 ifdef VBOX_INSTALL_VCC70_RT
146 include $(KBUILD_PATH)/tools/VCC70.kmk
147
148 ## @todo Move these defines to VCC70.
149 DLL_TOOL_VCC70_MSVCR71 ?= $(PATH_TOOL_VCC70)/bin/msvcr71.dll
150 ifneq ($(wildcard $(DLL_TOOL_VCC70_MSVCR71)),)
151 bin_SOURCES += \
152 $(DLL_TOOL_VCC70_MSVCR71)=>msvcr71.dll \
153 $(DLL_TOOL_VCC70_MSVCR71)=>testcase/msvcr71.dll
154 endif
155 ifeq ($(VBOX_VCC_CRT_TYPE),d)
156 DLL_TOOL_VCC70_MSVCR71D ?= $(PATH_TOOL_VCC70)/bin/msvcr71d.dll
157 ifneq ($(wildcard $(DLL_TOOL_VCC70_MSVCR71D)),)
158 bin_SOURCES += \
159 $(DLL_TOOL_VCC70_MSVCR71D)=>msvcr71d.dll \
160 $(DLL_TOOL_VCC70_MSVCR71D)=>testcase/msvcr71d.dll
161 endif
162 endif
163
164 DLL_TOOL_VCC70_MSVCP71 ?= $(PATH_TOOL_VCC70)/bin/msvcp71.dll
165 ifneq ($(wildcard $(DLL_TOOL_VCC70_MSVCP71)),)
166 bin_SOURCES += \
167 $(DLL_TOOL_VCC70_MSVCP71)=>msvcp71.dll \
168 $(DLL_TOOL_VCC70_MSVCP71)=>testcase/msvcp71.dll
169 endif
170 ifeq ($(VBOX_VCC_CRT_TYPE),d)
171 DLL_TOOL_VCC70_MSVCP71D ?= $(PATH_TOOL_VCC70)/bin/msvcp71d.dll
172 ifneq ($(wildcard $(DLL_TOOL_VCC70_MSVCP71D)),)
173 bin_SOURCES += \
174 $(DLL_TOOL_VCC70_MSVCP71D)=>msvcp71d.dll \
175 $(DLL_TOOL_VCC70_MSVCP71D)=>testcase/msvcp71d.dll
176 endif
177 endif
178
179 DLL_TOOL_VCC70_MSVCRT ?= $(PATH_TOOL_VCC70)/bin/msvcrt.dll
180 ifneq ($(wildcard $(DLL_TOOL_VCC70_MSVCRT)),)
181 bin_SOURCES += \
182 $(DLL_TOOL_VCC70_MSVCRT)=>msvcrt.dll \
183 $(DLL_TOOL_VCC70_MSVCRT)=>testcase/msvcrt.dll
184 endif
185 endif
186endif
187
188
189ifdef VBOX_WITH_QT4_SUN
190#
191# Install our Qt DLLs / Shared Objects / Frameworks.
192# Note: The installer fixes the darwin .dylibs when hardening is enabled.
193#
194 INSTALLS += qt4-bin
195 qt4-bin_MODE = 755
196 ifeq ($(KBUILD_TARGET),darwin)
197 qt4-bin_INST = $(INST_VIRTUALBOX)Contents/
198 qt4-bin_SOURCES = $(foreach qtmod, QtCore QtGui QtNetwork $(if $(VBOX_GUI_USE_QGL), QtOpenGL,) \
199 ,$(VBOX_PATH_QT4)/Frameworks/$(qtmod)VBox.framework/Versions/4/$(qtmod)VBox=>Frameworks/$(qtmod)VBox.framework/Versions/4/$(qtmod)VBox)
200 ifdef VBOX_WITH_COCOA_QT
201 qt4-bin_SOURCES += \
202 $(VBOX_PATH_QT4)/Frameworks/QtGuiVBox.framework/Versions/4/Resources/qt_menu.nib/classes.nib=>Frameworks/QtGuiVBox.framework/Versions/4/Resources/qt_menu.nib/classes.nib \
203 $(VBOX_PATH_QT4)/Frameworks/QtGuiVBox.framework/Versions/4/Resources/qt_menu.nib/info.nib=>Frameworks/QtGuiVBox.framework/Versions/4/Resources/qt_menu.nib/info.nib \
204 $(VBOX_PATH_QT4)/Frameworks/QtGuiVBox.framework/Versions/4/Resources/qt_menu.nib/keyedobjects.nib=>Frameworks/QtGuiVBox.framework/Versions/4/Resources/qt_menu.nib/keyedobjects.nib
205 endif
206 qt4-bin_SOURCES += \
207 $(VBOX_PATH_QT4)/plugins/accessible/libqtaccessiblewidgets.dylib=>MacOS/accessible/libqtaccessiblewidgets.dylib
208 qt4-bin_SYMLINKS = $(foreach qtmod, QtCore QtGui QtNetwork $(if $(VBOX_GUI_USE_QGL), QtOpenGL,) \
209 ,Frameworks/$(qtmod)VBox.framework/$(qtmod)VBox=>Versions/4/$(qtmod)VBox)
210 ifdef VBOX_WITH_COCOA_QT
211 qt4-bin_SYMLINKS += \
212 Frameworks/QtGuiVBox.framework/Resources=>Versions/4/Resources/
213 endif
214 else ifeq ($(KBUILD_TARGET),win)
215 qt4-bin_INST = $(INST_BIN)
216 qt4-bin_SOURCES = \
217 $(VBOX_PATH_QT4_LIB)/QtCoreVBox4.dll \
218 $(VBOX_PATH_QT4_LIB)/QtGuiVBox4.dll \
219 $(VBOX_PATH_QT4_LIB)/QtNetworkVBox4.dll \
220 $(if $(VBOX_GUI_USE_QGL), $(VBOX_PATH_QT4_LIB)/QtOpenGLVBox4.dll,) \
221 $(VBOX_PATH_QT4)/plugins/accessible/qtaccessiblewidgets4.dll=>accessible/qtaccessiblewidgets4.dll
222 else
223 qt4-bin_INST = $(INST_BIN)
224 qt4-bin_SOURCES = \
225 $(VBOX_PATH_QT4_LIB)/libQtCoreVBox.so.4 \
226 $(VBOX_PATH_QT4_LIB)/libQtGuiVBox.so.4 \
227 $(VBOX_PATH_QT4_LIB)/libQtNetworkVBox.so.4 \
228 $(if $(VBOX_GUI_USE_QGL), $(VBOX_PATH_QT4_LIB)/libQtOpenGLVBox.so.4,) \
229 $(VBOX_PATH_QT4)/plugins/accessible/libqtaccessiblewidgets$(SUFF_DLL)=>accessible/libqtaccessiblewidgets$(SUFF_DLL)
230 endif
231endif # VBOX_WITH_QT4_SUN
232
233
234#
235# For building the combined package, just get the additions .ISO
236# once for amd64 to prevent version inconsistences. In all other
237# cases we get the .ISO per target architecture.
238#
239ifdef VBOX_WITH_ADDITIONS_FROM_BUILD_SERVER
240 ifdef VBOX_WITH_COMBINED_PACKAGE
241 ifeq ($(KBUILD_TARGET_ARCH),amd64)
242 INSTALLS += buildserver-additions
243 endif
244 else
245 INSTALLS += buildserver-additions
246 endif
247
248#
249# Install additions iso from the build server.
250# The $(CP)/$(RM) stuff can be replaced by a simple $(TOUCH) once that has
251# been added to kBuild.
252#
253buildserver-additions_INST = $(INST_ADDITIONS_ISO)
254buildserver-additions_MODE = 0644
255buildserver-additions_SOURCES = $(PATH_TARGET)/VBoxGuestAdditions.iso
256buildserver-additions_CLEANS = $(PATH_TARGET)/VBoxGuestAdditions.iso $(PATH_TARGET)/VBoxGuestAdditions.iso.tmp
257
258$(PATH_TARGET)/VBoxGuestAdditions.iso: $(VBOX_SVN_REV_KMK) $(PATH_DEVTOOLS)/bin/additions.sh | $$(dir $$@)
259 $(RM) -f $(PATH_TARGET)/VBoxGuestAdditions.iso $(PATH_TARGET)/VBoxGuestAdditions.iso.tmp
260 ifneq ($(KBUILD_HOST),win)
261 $(SHELL) $(PATH_DEVTOOLS)/bin/additions.sh --cmd fetch --filename $(PATH_TARGET)/VBoxGuestAdditions.iso.tmp
262 else
263 $(KMK) --affinity 1 -f $(MAKEFILE) VBOX_SINGLE_MAKEFILE= buildserver-additions-affinity-hack
264 endif
265 $(CP) -f $(PATH_TARGET)/VBoxGuestAdditions.iso.tmp $(PATH_TARGET)/VBoxGuestAdditions.iso
266 $(RM) -f $(PATH_TARGET)/VBoxGuestAdditions.iso.tmp
267
268 ifeq ($(KBUILD_HOST),win)
269buildserver-additions-affinity-hack:
270 $(SHELL) $(PATH_DEVTOOLS)/bin/additions.sh --cmd fetch --filename $(PATH_TARGET)/VBoxGuestAdditions.iso.tmp
271 endif
272endif
273
274
275#
276#
277# Install documentation files (at the moment the .chm) from the build server.
278#
279ifdef VBOX_WITH_DOCS_FROM_BUILD_SERVER
280## @todo r=bird: Too much mess now for $(PATH_TARGET); move to doc/manual/.
281INSTALLS += buildserver-docs
282buildserver-docs_INST = $(INST_BIN)
283buildserver-docs_MODE = 0644
284buildserver-docs_SOURCES = \
285 $(addprefix $(PATH_TARGET)/, \
286 VirtualBox.chm UserManual.pdf \
287 $(foreach f,$(VBOX_MANUAL_ADD_LANGUAGES),VirtualBox_$(f).chm UserManual_$(f).pdf))
288buildserver-docs_CLEANS = \
289 $(buildserver-docs_0_OUTDIR)/unpacked.ts \
290 $(buildserver-docs_0_OUTDIR)/VBoxDocumentation.zip \
291 $(buildserver-docs_0_OUTDIR)/VBoxDocumentation.zip.tmp \
292 $(addprefix $(PATH_TARGET)/, \
293 VirtualBox.chm UserManual.pdf \
294 $(foreach f,$(VBOX_MANUAL_ADD_LANGUAGES),VirtualBox_$(f).chm UserManual_$(f).pdf))
295
296## @todo Hack to get at TOOL_ZIP_UNPACK; see if this can be integrated somehow...
297include $(KBUILD_PATH)/tools/ZIP.kmk
298
299$$(buildserver-docs_0_OUTDIR)/unpacked.ts +| $(PATH_TARGET)/VirtualBox.chm $(PATH_TARGET)/UserManual.pdf \
300$(foreach f,$(VBOX_MANUAL_ADD_LANGUAGES),$(PATH_TARGET)/VirtualBox_$(f).chm $(PATH_TARGET)/UserManual_$(f).pdf): \
301 $$(buildserver-docs_0_OUTDIR)/VBoxDocumentation.zip
302 $(call MSG_L1,Unpacking documentation)
303 $(QUIET)$(TOOL_ZIP_UNPACK) $(TOOL_ZIP_UNPACKFLAGS) -o $< -d $(PATH_TARGET)
304 $(APPEND) -t $@ "done"
305
306$$(buildserver-docs_0_OUTDIR)/VBoxDocumentation.zip: $(VBOX_SVN_REV_KMK) $(PATH_DEVTOOLS)/bin/documentation.sh | $$(dir $$@)
307 $(RM) -f $@ $@.tmp
308 ifneq ($(KBUILD_HOST),win)
309 $(SHELL) $(PATH_DEVTOOLS)/bin/documentation.sh --cmd fetch --filename $@.tmp
310 else
311 $(KMK) --affinity 1 -f $(MAKEFILE) VBOX_SINGLE_MAKEFILE= buildserver-documentation-affinity-hack
312 endif
313 $(CP) -f $@.tmp $@
314 $(RM) -f $@.tmp
315## @todo kBuild: The $(CP)/$(RM) stuff can be replaced by a simple $(TOUCH) once that has been added to kBuild.
316
317 ifeq ($(KBUILD_HOST),win)
318buildserver-documentation-affinity-hack:
319 $(SHELL) $(PATH_DEVTOOLS)/bin/documentation.sh --cmd fetch --filename $(buildserver-docs_0_OUTDIR)/VBoxDocumentation.zip.tmp
320 endif
321endif # VBOX_WITH_DOCS_FROM_BUILD_SERVER
322
323
324#
325# Install EFI firmware image
326#
327ifdef VBOX_WITH_EFIFW_FROM_BUILD_SERVER
328#
329# Either from the build server.
330#
331INSTALLS += buildserver-efifw
332buildserver-efifw_INST = $(INST_BIN)
333buildserver-efifw_MODE = 0644
334buildserver-efifw_SOURCES = \
335 $(buildserver-efifw_0_OUTDIR)/FV/VBOX.fd=>VBoxEFI32.fd \
336 $(buildserver-efifw_0_OUTDIR)/FV/VBOX64.fd=>VBoxEFI64.fd
337buildserver-efifw_CLEANS = \
338 $(buildserver-efifw_0_OUTDIR)/unpacked.ts \
339 $(buildserver-efifw_0_OUTDIR)/FV/VBOX.fd \
340 $(buildserver-efifw_0_OUTDIR)/FV/VBOX64.fd \
341 $(buildserver-efifw_0_OUTDIR)/VBoxEfiFirmware.zip \
342 $(buildserver-efifw_0_OUTDIR)/VBoxEfiFirmware.zip.tmp
343## @todo rainy day: cleanup the output directory (zip contains lots more)
344
345## @todo Hack to get at TOOL_ZIP_UNPACK; see if this can be integrated somehow...
346include $(KBUILD_PATH)/tools/ZIP.kmk
347
348$$(buildserver-efifw_0_OUTDIR)/unpacked.ts +| $$(buildserver-efifw_0_OUTDIR)/FV/VBOX.fd \
349 $$(buildserver-efifw_0_OUTDIR)/FV/VBOX64.fd: $$(buildserver-efifw_0_OUTDIR)/VBoxEfiFirmware.zip
350 $(call MSG_L1,Unpacking EFI firmware)
351 $(QUIET)$(TOOL_ZIP_UNPACK) $(TOOL_ZIP_UNPACKFLAGS) -o $< -d $(buildserver-efifw_0_OUTDIR)
352 $(APPEND) -t $@ "done"
353
354$$(buildserver-efifw_0_OUTDIR)/VBoxEfiFirmware.zip: $(VBOX_SVN_REV_KMK) $(PATH_DEVTOOLS)/bin/efi_firmware.sh | $$(dir $$@)
355 $(RM) -f $@ $@.tmp
356 ifneq ($(KBUILD_HOST),win)
357 $(SHELL) $(PATH_DEVTOOLS)/bin/efi_firmware.sh --cmd fetch --filename $@.tmp
358 else
359 $(KMK) --affinity 1 -f $(MAKEFILE) VBOX_SINGLE_MAKEFILE= buildserver-efifw-affinity-hack
360 endif
361 $(CP) -f $@.tmp $@
362 $(RM) -f $@.tmp
363## @todo kBuild: The $(CP)/$(RM) stuff can be replaced by a simple $(TOUCH) once that has been added to kBuild.
364
365 ifeq ($(KBUILD_HOST),win)
366buildserver-efifw-affinity-hack:
367 $(SHELL) $(PATH_DEVTOOLS)/bin/efi_firmware.sh --cmd fetch --filename $(buildserver-efifw_0_OUTDIR)/VBoxEfiFirmware.zip.tmp
368 endif
369else
370#
371# Or from the local copy
372#
373INSTALLS += local-efifw
374local-efifw_INST = $(INST_BIN)
375local-efifw_MODE = 0644
376local-efifw_SOURCES = \
377 $(PATH_ROOT)/src/VBox/Devices/EFI/FirmwareBin/VBoxEFI32.fd=>VBoxEFI32.fd \
378 $(PATH_ROOT)/src/VBox/Devices/EFI/FirmwareBin/VBoxEFI64.fd=>VBoxEFI64.fd
379endif # VBOX_WITH_EFIFW_FROM_BUILD_SERVER
380
381
382#
383# Install staged binaries on platforms where we can't cross
384# compile things.
385#
386ifn1of ($(KBUILD_TARGET), l4 linux win)
387 VBOX_PATH_STAGED ?= .
388
389 # Additions.
390 ifndef VBOX_WITH_LINUX_ADDITIONS
391 ifndef VBOX_WITH_WIN32_ADDITIONS
392 ifneq ($(wildcard $(VBOX_PATH_STAGED)/VBoxGuestAdditions.iso),)
393 INSTALLS += staged-additions
394 staged-additions_INST = $(INST_ADDITIONS_ISO)
395 staged-additions_MODE = 0644
396 staged-additions_SOURCES = $(VBOX_PATH_STAGED)/VBoxGuestAdditions.iso
397 endif
398 endif
399 endif
400
401 # guesttool.exe
402 ifndef VBOX_WITH_WIN32_ADDITIONS
403 ifneq ($(wildcard $(VBOX_PATH_STAGED)/guesttool.exe),)
404 INSTALLS += staged-guesttool
405 staged-guesttool_INST = $(INST_BIN)
406 staged-guesttool_SOURCES = $(VBOX_PATH_STAGED)/guesttool.exe
407 endif
408 endif
409
410endif
411
412endif # !VBOX_ONLY_ADDITIONS && !VBOX_ONLY_TESTSUITE && !VBOX_ONLY_DOCS
413
414
415ifdef VBOX_ONLY_DOCS
416# It may sound a bit odd, but for preparing the documentation package the
417# doxygen documentation isn't needed and increases the build time a lot.
418docs:
419else # !VBOX_ONLY_DOCS
420#
421# Generate documentation.
422# (This should be converted into a separate pass or merged with an existing one later.)
423#
424 ifdef VBOX_SINGLE_MAKEFILE
425 ifdef VBOX_WITH_ALL_DOXYGEN_TARGETS
426docs: docs.Core
427 endif
428 else # !VBOX_SINGLE_MAKEFILE
429docs: $(if $(VBOX_WITH_ALL_DOXYGEN_TARGETS),docs.Core)
430 $(KMK) -C src/VBox/Main docs.Main
431 ifdef VBOX_WITH_ALL_DOXYGEN_TARGETS
432 $(KMK) -C src/VBox/Runtime docs.iprt
433 endif
434 endif # !VBOX_SINGLE_MAKEFILE
435endif # !VBOX_ONLY_DOCS
436
437docs.Core docs.core: $(PATH_TARGET)/docs.Core
438
439
440
441#
442# The core (VMM+REM+Devices+Main) documentation.
443#
444# This includes so much because we wish to have the complete CFGM
445# and GCFGM lists.
446#
447OTHER_CLEAN += \
448 $(PATH_TARGET)/Doxyfile.Core \
449 $(PATH_TARGET)/Doxyfile.Core.dep
450
451VBOX_CORE_DOXYFILE_INPUT_DIRS = \
452 include/iprt \
453 include/iprt/cpp \
454 include/iprt/linux \
455 include/VBox \
456 include/VBox/com \
457 include/VBox/HostServices \
458 include/VBox/GuestHost \
459 include/VBox/HGSMI \
460 src/VBox/VMM \
461 src/VBox/VMM/VMMR0 \
462 src/VBox/VMM/VMMGC \
463 src/VBox/VMM/VMMAll \
464 src/VBox/VMM/PATM \
465 src/VBox/VMM/PATM/VMMR0 \
466 src/VBox/VMM/PATM/VMMGC \
467 src/VBox/VMM/PATM/VMMAll \
468 src/VBox/VMM/VMMSwitcher \
469 src/VBox/Debugger \
470 src/VBox/Devices \
471 src/VBox/Devices/Audio \
472 src/VBox/Devices/Bus \
473 src/VBox/Devices/Graphics \
474 src/VBox/Devices/Graphics/BIOS \
475 src/VBox/Devices/Input \
476 src/VBox/Devices/Networking \
477 src/VBox/Devices/PC \
478 src/VBox/Devices/PC/BIOS \
479 src/VBox/Devices/Parallel \
480 src/VBox/Devices/Serial \
481 src/VBox/Devices/Storage \
482 src/VBox/Devices/VBoxHDDFormats \
483 src/VBox/Devices/VBoxHDDFormats/StorageCraft \
484 src/VBox/Devices/USB \
485 src/VBox/Devices/USB/darwin \
486 src/VBox/Devices/USB/linux \
487 src/VBox/Devices/USB/os2 \
488 src/VBox/Devices/USB/solaris \
489 src/VBox/Devices/USB/vrdp \
490 src/VBox/Devices/USB/win32 \
491 src/VBox/Devices/VMMDev \
492 src/VBox/Main/include \
493 src/VBox/Main/include/hgcm \
494 src/VBox/Main \
495 src/VBox/Main/glue \
496 src/VBox/Main/hgcm \
497 src/VBox/Main/webservice \
498 src/VBox/Main/xml \
499 src/VBox/Main/darwin \
500 src/VBox/Main/linux \
501 src/VBox/Main/os2 \
502 src/VBox/Main/solaris \
503 src/VBox/Main/win \
504 src/VBox/Main/xpcom \
505 src/VBox/HostServices \
506 src/VBox/HostServices/SharedClipboard \
507 src/VBox/HostServices/SharedFolders \
508 src/VBox/HostServices/SharedInfoServices \
509 src/VBox/HostServices/SharedOpenGL \
510 src/VBox/HostDrivers/Support \
511 src/VBox/HostDrivers/Support/darwin \
512 src/VBox/HostDrivers/Support/freebsd \
513 src/VBox/HostDrivers/Support/l4 \
514 src/VBox/HostDrivers/Support/linux \
515 src/VBox/HostDrivers/Support/os2 \
516 src/VBox/HostDrivers/Support/solaris \
517 src/VBox/HostDrivers/Support/win \
518 src/VBox/HostDrivers/VBoxNetFlt \
519 src/VBox/HostDrivers/VBoxNetFlt/darwin \
520 src/VBox/HostDrivers/VBoxNetFlt/linux \
521 src/VBox/HostDrivers/VBoxNetFlt/solaris \
522 src/VBox/HostDrivers/VBoxNetFlt/win \
523 src/VBox/HostDrivers/VBoxNetNat \
524 src/VBox/HostDrivers/VBoxNetNat/darwin \
525 src/VBox/HostDrivers/VBoxNetNat/linux \
526 src/VBox/HostDrivers/VBoxNetNat/solaris \
527 src/VBox/HostDrivers/VBoxNetNat/win \
528 src/VBox/HostDrivers/VBoxNetAdp \
529 src/VBox/HostDrivers/VBoxNetAdp/darwin \
530 src/VBox/HostDrivers/VBoxNetAdp/linux \
531 src/VBox/HostDrivers/VBoxNetAdp/solaris \
532 src/VBox/HostDrivers/VBoxNetAdp/win \
533 src/VBox/HostDrivers/VBoxUSB \
534 src/VBox/HostDrivers/VBoxUSB/darwin \
535 src/VBox/HostDrivers/VBoxUSB/os2 \
536 src/VBox/HostDrivers/VBoxUSB/solaris \
537 src/VBox/HostDrivers/VBoxUSB/win \
538 src/VBox/HostDrivers/VBoxUSB/win/Device \
539 src/VBox/HostDrivers/VBoxUSB/win/Device/amd64 \
540 src/VBox/HostDrivers/VBoxUSB/win/Device/x86 \
541 src/VBox/HostDrivers/VBoxUSB/win/Filter \
542 src/VBox/HostDrivers/VBoxUSB/win/Install \
543 src/VBox/HostDrivers/VBoxUSB/win/Monitor \
544 src/VBox/HostDrivers/VBoxUSB/win/Monitor/win32 \
545 src/VBox/HostDrivers/VBoxUSB/win/Monitor/win64 \
546 src/VBox/HostDrivers/VBoxUSB/win/usbd \
547
548# These must come first in order to make things look nice.
549VBOX_CORE_DOXYFILE_INPUT_FIRST =\
550 $(PATH_ROOT)/doc/VBox-doc.c \
551 $(PATH_ROOT)/doc/VBox-CodingGuidelines.cpp \
552 $(PATH_ROOT)/doc/VBox-MakefileGuidelines.cpp \
553 $(PATH_ROOT)/src/VBox/VMM/VMMCodingGuidelines.cpp \
554 $(PATH_ROOT)/src/VBox/VMM/VMMDocsRawMode.cpp \
555 $(PATH_ROOT)/include/VBox/cdefs.h \
556 $(PATH_ROOT)/include/VBox/vmapi.h \
557 $(PATH_ROOT)/include/VBox/vmm.h \
558 $(PATH_ROOT)/include/VBox/cpum.h \
559 $(PATH_ROOT)/include/VBox/mm.h \
560 $(PATH_ROOT)/include/VBox/pgm.h \
561 $(PATH_ROOT)/include/VBox/selm.h \
562 $(PATH_ROOT)/include/VBox/trpm.h \
563 $(PATH_ROOT)/include/VBox/patm.h \
564 $(PATH_ROOT)/include/VBox/dbgf.h \
565 $(PATH_ROOT)/include/VBox/stam.h \
566 $(PATH_ROOT)/include/VBox/em.h \
567 $(PATH_ROOT)/include/VBox/pdm.h \
568 $(PATH_ROOT)/include/VBox/rem.h \
569 $(PATH_ROOT)/include/VBox/iom.h \
570 $(PATH_ROOT)/include/VBox/cfgm.h \
571 $(PATH_ROOT)/include/VBox/tm.h \
572 $(PATH_ROOT)/include/VBox/csam.h \
573 $(PATH_ROOT)/include/VBox/ssm.h \
574 $(PATH_ROOT)/include/VBox/hwaccm.h \
575 $(PATH_ROOT)/include/VBox/hwacc_svm.h \
576 $(PATH_ROOT)/include/VBox/hwacc_vmx.h \
577 \
578 $(PATH_ROOT)/src/VBox/VMM/CFGMInternal.h \
579 $(PATH_ROOT)/src/VBox/VMM/CPUMInternal.h \
580 $(PATH_ROOT)/src/VBox/VMM/DBGFInternal.h \
581 $(PATH_ROOT)/src/VBox/VMM/EMInternal.h \
582 $(PATH_ROOT)/src/VBox/VMM/HWACCMInternal.h \
583 $(PATH_ROOT)/src/VBox/VMM/IOMInternal.h \
584 $(PATH_ROOT)/src/VBox/VMM/MMInternal.h \
585 $(PATH_ROOT)/src/VBox/VMM/PDMInternal.h \
586 $(PATH_ROOT)/src/VBox/VMM/PGMInternal.h \
587 $(PATH_ROOT)/src/VBox/VMM/PATM/CSAMInternal.h \
588 $(PATH_ROOT)/src/VBox/VMM/PATM/PATMInternal.h \
589 $(PATH_ROOT)/src/VBox/VMM/REMInternal.h \
590 $(PATH_ROOT)/src/VBox/VMM/SELMInternal.h \
591 $(PATH_ROOT)/src/VBox/VMM/SSMInternal.h \
592 $(PATH_ROOT)/src/VBox/VMM/STAMInternal.h \
593 $(PATH_ROOT)/src/VBox/VMM/TMInternal.h \
594 $(PATH_ROOT)/src/VBox/VMM/TRPMInternal.h \
595 $(PATH_ROOT)/src/VBox/VMM/VMInternal.h \
596 $(PATH_ROOT)/src/VBox/VMM/VMMInternal.h \
597 \
598 $(PATH_ROOT)/include/VBox/vm.h \
599 \
600 $(PATH_ROOT)/include/VBox/sup.h \
601 $(PATH_ROOT)/include/VBox/VBoxHDD.h \
602 $(PATH_ROOT)/include/VBox/types.h \
603 $(PATH_ROOT)/include/VBox/err.h \
604 $(PATH_ROOT)/include/VBox/x86.h \
605 $(PATH_ROOT)/include/VBox/cpumdis.h \
606 $(PATH_ROOT)/include/VBox/dbggui.h \
607 $(PATH_ROOT)/include/VBox/dis.h \
608 $(PATH_ROOT)/include/VBox/disopcode.h \
609 $(PATH_ROOT)/include/VBox/intnet.h \
610 $(PATH_ROOT)/include/VBox/settings.h \
611 $(PATH_ROOT)/include/VBox/pci.h \
612 $(PATH_ROOT)/include/VBox/scsi.h \
613 $(PATH_ROOT)/include/VBox/shflsvc.h \
614 $(PATH_ROOT)/include/VBox/hgcmsvc.h \
615 $(PATH_ROOT)/include/VBox/usb.h \
616 $(PATH_ROOT)/include/VBox/vusb.h \
617 \
618 $(PATH_ROOT)/include/VBox/log.h \
619 $(PATH_ROOT)/include/VBox/param.h \
620 $(PATH_ROOT)/include/VBox/version.h
621
622VBOX_CORE_DOXYFILE_INPUT := \
623 $(filter-out %.cpp.h, $(sort $(wildcard $(addsuffix /*.h, $(VBOX_CORE_DOXYFILE_INPUT_DIRS)))) ) \
624 $(foreach dir, $(VBOX_CORE_DOXYFILE_INPUT_DIRS), $(wildcard $(dir)/*.cpp $(dir)/*.c $(dir)/.asm))
625VBOX_CORE_DOXYFILE_INPUT := \
626 $(VBOX_CORE_DOXYFILE_INPUT_FIRST) \
627 $(filter-out $(VBOX_CORE_DOXYFILE_INPUT_FIRST), $(VBOX_CORE_DOXYFILE_INPUT))
628
629# And some some additional stuff.
630VBOX_CORE_DOXYFILE_INPUT += \
631 $(PATH_ROOT)/src/recompiler/VBoxRecompiler.c \
632 $(PATH_ROOT)/src/recompiler/VBoxREMWrapper.cpp
633
634
635VBOX_CORE_DOXYFILE_OUTPUT = $(PATH_OUT)/docs/Core
636BLDDIRS += $(VBOX_CORE_DOXYFILE_OUTPUT)
637
638-include $(PATH_TARGET)/Doxyfile.Core.dep
639
640# Generate the Doxyfile
641$(PATH_TARGET)/Doxyfile.Core: Doxyfile.Core \
642 $(comp-vars VBOX_CORE_DOXYFILE_INPUT,DOXYGEN_INPUT_PREV,FORCE) \
643 $(comp-vars VBOX_CORE_DOXYFILE_OUTPUT,DOXYGEN_OUTPUT_PREV,FORCE) \
644 | $$(dir $$@)
645 $(RM) -f $@ $@.tmp $(PATH_TARGET)/Doxyfile.Core.dep
646 $(CP) -f Doxyfile.Core $@.tmp
647 $(APPEND) $@.tmp
648 $(APPEND) $@.tmp "OUTPUT_DIRECTORY = $(VBOX_CORE_DOXYFILE_OUTPUT)"
649 $(APPEND) $@.tmp "WARN_LOGFILE = $(VBOX_CORE_DOXYFILE_OUTPUT)/errors"
650 $(APPEND) $@.tmp "INCLUDE_PATH = $(PATH_ROOT)/include $(PATH_ROOT)/src/VBox/VMM $(PATH_ROOT)/src/VBox/Main/include "
651 $(APPEND) $@.tmp "INCLUDE_FILE_PATTERNS = *.cpp.h"
652 $(APPEND) $@.tmp
653 $(APPEND) $@.tmp "INPUT = $(VBOX_CORE_DOXYFILE_INPUT)"
654 $(APPEND) $@.tmp
655 $(APPEND) $@.tmp "PREDEFINED += $(DEFS) $(DEFS.$(KBUILD_TARGET)) $(DEFS.$(KBUILD_TARGET_ARCH)) $(ARCH_BITS_DEFS)"
656 $(APPEND) $@.tmp "PREDEFINED += ARCH_BITS=HC_ARCH_BITS R3_ARCH_BITS=HC_ARCH_BITS R0_ARCH_BITS=HC_ARCH_BITS "
657 $(APPEND) $@.tmp
658 $(MV) -f $@.tmp $@
659 @$(APPEND) $(PATH_TARGET)/Doxyfile.Core.dep "DOXYGEN_OUTPUT_PREV = $(VBOX_CORE_DOXYFILE_OUTPUT)"
660 @$(APPEND) $(PATH_TARGET)/Doxyfile.Core.dep "DOXYGEN_INPUT_PREV = $(VBOX_CORE_DOXYFILE_INPUT)"
661
662# Do the actual job.
663$(PATH_TARGET)/docs.Core: $(PATH_TARGET)/Doxyfile.Core $$(VBOX_CORE_DOXYFILE_INPUT) | $(VBOX_CORE_DOXYFILE_OUTPUT)/
664 $(RM) -f $(PATH_TARGET)/docs.Core
665 $(RM) -Rf $(VBOX_CORE_DOXYFILE_OUTPUT)/html/
666 doxygen $(PATH_TARGET)/Doxyfile.Core
667 $(APPEND) $(PATH_TARGET)/docs.Core
668
669
670#
671# Alias for kmk_time. Used by both the additions and testsuite build setups.
672#
673VBOX_KMK_TIME = $(KBUILD_BIN_PATH)/kmk_time
674
675
676#
677# Build the additions, all of them.
678#
679# This is currently tailored (hardcoded) for the additions
680# build box. Can make it pretty and configurable later.
681#
682# The fetching must be done in serial fashion, while the building
683# should be more flexible wrt to -jN.
684#
685additions-fetch:
686 + $(KMK) -C tools fetch
687 + $(KMK) -C tools fetch KBUILD_TARGET_ARCH=amd64 KBUILD_TARGET=linux BUILD_TARGET_ARCH=amd64 BUILD_TARGET=linux
688 + $(KMK) -C tools fetch KBUILD_TARGET_ARCH=x86 KBUILD_TARGET=linux BUILD_TARGET_ARCH=x86 BUILD_TARGET=linux
689# + $(KMK) -C tools fetch KBUILD_TARGET_ARCH=x86 KBUILD_TARGET=os2 BUILD_TARGET_ARCH=x86 BUILD_TARGET=os2
690 + $(KMK) -C tools fetch KBUILD_TARGET_ARCH=amd64 KBUILD_TARGET=solaris BUILD_TARGET_ARCH=amd64 BUILD_TARGET=solaris
691 + $(KMK) -C tools fetch KBUILD_TARGET_ARCH=x86 KBUILD_TARGET=solaris BUILD_TARGET_ARCH=x86 BUILD_TARGET=solaris
692 + $(KMK) -C tools fetch KBUILD_TARGET_ARCH=amd64 KBUILD_TARGET=win BUILD_TARGET_ARCH=amd64 BUILD_TARGET=win
693 + $(KMK) -C tools fetch KBUILD_TARGET_ARCH=x86 KBUILD_TARGET=win BUILD_TARGET_ARCH=x86 BUILD_TARGET=win
694
695
696## @todo Currently combined solaris additions building assumes that amd64 is
697# built first. The windows amd64 additions need some x86 files, so don't change
698# the order of the windows builds. TODO: Split building and packing for these two VMs.
699additions-build: \
700 additions-build-solaris.amd64 \
701 additions-build-solaris.x86 \
702 additions-build-win.x86 \
703 additions-build-win.amd64 \
704 additions-build-os2.x86 \
705 additions-build-linux.amd64 \
706 additions-build-linux.x86
707
708VBOX_ADDITIONS_BUILD.amd64 = VBOX_ONLY_ADDITIONS=1 VBOX_WITHOUT_ADDITIONS_ISO=1 \
709 KBUILD_TYPE=$(KBUILD_TYPE) BUILD_TYPE=$(KBUILD_TYPE) \
710 KBUILD_TARGET_ARCH=amd64 BUILD_TARGET_ARCH=amd64 \
711 VBOX_SVN_REV=$(VBOX_SVN_REV)
712
713VBOX_ADDITIONS_BUILD.x86 = VBOX_ONLY_ADDITIONS=1 VBOX_WITHOUT_ADDITIONS_ISO=1 \
714 KBUILD_TYPE=$(KBUILD_TYPE) BUILD_TYPE=$(KBUILD_TYPE) \
715 KBUILD_TARGET_ARCH=x86 BUILD_TARGET_ARCH=x86 \
716 VBOX_SVN_REV=$(VBOX_SVN_REV)
717
718# Automatically determine the additions build subdir name. Used for figuring
719# out directory names inside the additions building VMs.
720VBOX_ADDITIONS_BUILD_SUBDIRNAME := $(lastword $(subst /, ,$(PATH_ROOT)))
721
722# When building in parallel on a Windows host, make sure we finish the host
723# bit before kicking off any UNIX guest or we'll run into file sharing issues.
724ifeq ($(KBUILD_TARGET),win)
725VBOX_ADDITIONS_BUILD_WIN_HOST_FIRST = additions-build-win.x86 additions-build-win.amd64
726else
727VBOX_ADDITIONS_BUILD_WIN_HOST_FIRST =
728endif
729
730# ASSUMES the 32-bit edition has been built already. Also for serializing VM access.
731additions-build-win.amd64: additions-build-win.x86
732ifeq ($(KBUILD_TARGET),win)
733 + $(VBOX_KMK_TIME) $(KMK) $(VBOX_ADDITIONS_BUILD.amd64) all $(VBOX_ADD_HOST_BUILD_TWEAK)
734 + $(VBOX_KMK_TIME) $(KMK) $(VBOX_ADDITIONS_BUILD.amd64) packing
735else
736 $(call MSG_L1,Building Windows/amd64 additions)
737 $(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 "
738endif
739
740additions-build-win.x86:
741ifeq ($(KBUILD_TARGET),win)
742 + $(VBOX_KMK_TIME) $(KMK) $(VBOX_ADDITIONS_BUILD.x86) all $(VBOX_ADD_HOST_BUILD_TWEAK)
743 + $(VBOX_KMK_TIME) $(KMK) $(VBOX_ADDITIONS_BUILD.x86) packing
744else
745 $(call MSG_L1,Building Windows/x86 additions)
746 $(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"
747endif
748
749# ASSUMES the 64-bit edition are built first. This also serializes VM access.
750ifeq ($(KBUILD_TARGET),solaris)
751additions-build-solaris.amd64:
752 + $(VBOX_KMK_TIME) $(KMK) $(VBOX_ADDITIONS_BUILD.amd64) all $(VBOX_ADD_HOST_BUILD_TWEAK)
753 + $(VBOX_KMK_TIME) $(KMK) $(VBOX_ADDITIONS_BUILD.amd64) packing
754
755additions-build-solaris.x86: additions-build-solaris.amd64
756 + $(VBOX_KMK_TIME) $(KMK) $(VBOX_ADDITIONS_BUILD.x86) VBOX_WITH_COMBINED_SOLARIS_GUEST_PACKAGE=1 all $(VBOX_ADD_HOST_BUILD_TWEAK)
757 + $(VBOX_KMK_TIME) $(KMK) $(VBOX_ADDITIONS_BUILD.x86) VBOX_WITH_COMBINED_SOLARIS_GUEST_PACKAGE=1 packing
758
759else
760additions-build-solaris.rsync-into-vm: $(VBOX_ADDITIONS_BUILD_WIN_HOST_FIRST)
761 $(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)
762
763additions-build-solaris.build-it: additions-build-solaris.rsync-into-vm
764 $(call MSG_L1,Building Solaris/amd64 additions)
765 $(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"
766 $(call MSG_L1,Building Solaris/x86 additions)
767 $(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"
768
769additions-build-solaris.rsync-out-of-vm: additions-build-solaris.build-it
770 $(VBOX_KMK_TIME) rsync -a --delete 192.168.27.4:/mnt/tinderbox/$(VBOX_ADDITIONS_BUILD_SUBDIRNAME)/out/solaris.x86 out/
771 $(VBOX_KMK_TIME) rsync -a --delete 192.168.27.4:/mnt/tinderbox/$(VBOX_ADDITIONS_BUILD_SUBDIRNAME)/out/solaris.amd64 out/
772
773.NOTPARALLEL: additions-build-solaris.rsync-out-of-vm additions-build-solaris.rsync-into-vm
774.PHONY: additions-build-solaris.rsync-out-of-vm additions-build-solaris.rsync-into-vm additions-build-solaris.build-it
775
776additions-build-solaris.amd64: additions-build-solaris.rsync-out-of-vm
777additions-build-solaris.x86: additions-build-solaris.rsync-out-of-vm
778endif
779
780additions-build-os2.x86:
781#ifeq ($(KBUILD_TARGET),os2)
782# + $(VBOX_KMK_TIME) $(KMK) $(VBOX_ADDITIONS_BUILD.x86) all $(VBOX_ADD_HOST_BUILD_TWEAK)
783# + $(VBOX_KMK_TIME) $(KMK) $(VBOX_ADDITIONS_BUILD.x86) packing
784#else
785# $(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) "
786#endif
787
788additions-build-linux.amd64: $(VBOX_ADDITIONS_BUILD_WIN_HOST_FIRST)
789ifeq ($(KBUILD_TARGET).$(KBUILD_TARGET_ARCH),linux.amd64)
790 + $(VBOX_KMK_TIME) $(KMK) $(VBOX_ADDITIONS_BUILD.amd64) all $(VBOX_ADD_HOST_BUILD_TWEAK)
791 + $(VBOX_KMK_TIME) $(KMK) $(VBOX_ADDITIONS_BUILD.amd64) packing
792else
793 $(call MSG_L1,Building Linux/amd64 additions)
794 $(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"
795endif
796
797additions-build-linux.x86: $(VBOX_ADDITIONS_BUILD_WIN_HOST_FIRST)
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
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"
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=1 \
812 VBOX_WITH_ADDITIONS_ISO.linux.x86=1 \
813 VBOX_WITH_ADDITIONS_ISO.solaris.amd64=1 \
814 VBOX_WITH_ADDITIONS_ISO.solaris.x86=1 \
815 VBOX_WITH_COMBINED_SOLARIS_GUEST_PACKAGE=1 \
816 VBOX_WITH_ADDITIONS_ISO.win.amd64=1 \
817 VBOX_WITH_ADDITIONS_ISO.win.x86=1 \
818 -C src/VBox/Additions \
819 $(VBOX_PATH_ADDITIONS)/VBoxGuestAdditions.iso
820
821.PHONY: \
822 additions-build-win.x86 \
823 additions-build-win.amd64 \
824 additions-build-solaris.amd64 \
825 additions-build-solaris.x86 \
826 additions-build-os2.x86 \
827 additions-build-linux.amd64 \
828 additions-build-linux.x86 \
829 additions-packing
830
831
832#
833# Build the test suite, all of it.
834#
835# This is currently tailored (hardcoded) for the additions build box just like
836# the additions build above, which it in fact is a copy of.
837#
838testsuite-fetch:
839 + $(KMK) -C tools fetch
840 + $(KMK) -C tools fetch KBUILD_TARGET_ARCH=amd64 KBUILD_TARGET=linux BUILD_TARGET_ARCH=amd64 BUILD_TARGET=linux
841 + $(KMK) -C tools fetch KBUILD_TARGET_ARCH=x86 KBUILD_TARGET=linux BUILD_TARGET_ARCH=x86 BUILD_TARGET=linux
842# + $(KMK) -C tools fetch KBUILD_TARGET_ARCH=x86 KBUILD_TARGET=os2 BUILD_TARGET_ARCH=x86 BUILD_TARGET=os2
843 + $(KMK) -C tools fetch KBUILD_TARGET_ARCH=amd64 KBUILD_TARGET=solaris BUILD_TARGET_ARCH=amd64 BUILD_TARGET=solaris
844 + $(KMK) -C tools fetch KBUILD_TARGET_ARCH=x86 KBUILD_TARGET=solaris BUILD_TARGET_ARCH=x86 BUILD_TARGET=solaris
845 + $(KMK) -C tools fetch KBUILD_TARGET_ARCH=amd64 KBUILD_TARGET=win BUILD_TARGET_ARCH=amd64 BUILD_TARGET=win
846 + $(KMK) -C tools fetch KBUILD_TARGET_ARCH=x86 KBUILD_TARGET=win BUILD_TARGET_ARCH=x86 BUILD_TARGET=win
847
848
849testsuite-build: \
850 testsuite-build-solaris.amd64 \
851 testsuite-build-solaris.x86 \
852 testsuite-build-win.x86 \
853 testsuite-build-win.amd64 \
854 testsuite-build-os2.x86 \
855 testsuite-build-linux.amd64 \
856 testsuite-build-linux.x86
857
858VBOX_TESTSUITE_BUILD.amd64 = VBOX_ONLY_TESTSUITE=1 VBOX_WITHOUT_TESTSUITE_ISO=1 \
859 KBUILD_TYPE=$(KBUILD_TYPE) BUILD_TYPE=$(KBUILD_TYPE) \
860 KBUILD_TARGET_ARCH=amd64 BUILD_TARGET_ARCH=amd64 \
861 VBOX_SVN_REV=$(VBOX_SVN_REV)
862
863VBOX_TESTSUITE_BUILD.x86 = VBOX_ONLY_TESTSUITE=1 VBOX_WITHOUT_TESTSUITE_ISO=1 \
864 KBUILD_TYPE=$(KBUILD_TYPE) BUILD_TYPE=$(KBUILD_TYPE) \
865 KBUILD_TARGET_ARCH=x86 BUILD_TARGET_ARCH=x86 \
866 VBOX_SVN_REV=$(VBOX_SVN_REV)
867
868# Automatically determine the testsuite build subdir name. Used for figuring
869# out directory names inside the test suite building VMs.
870VBOX_TESTSUITE_BUILD_SUBDIRNAME := $(lastword $(subst /, ,$(PATH_ROOT)))
871
872# When building in parallel on a Windows host, make sure we finish the host
873# bit before kicking off any UNIX guest or we'll run into file sharing issues.
874ifeq ($(KBUILD_TARGET),win)
875VBOX_TESTSUITE_BUILD_WIN_HOST_FIRST = testsuite-build-win.x86 testsuite-build-win.amd64
876else
877VBOX_TESTSUITE_BUILD_WIN_HOST_FIRST =
878endif
879
880# ASSUMES the 32-bit edition has been built already. Also for serializing VM access.
881testsuite-build-win.amd64: testsuite-build-win.x86
882ifeq ($(KBUILD_TARGET),win)
883 + $(VBOX_KMK_TIME) $(KMK) $(VBOX_TESTSUITE_BUILD.amd64) all $(VBOX_TESTSUITE_HOST_BUILD_TWEAK)
884 + $(VBOX_KMK_TIME) $(KMK) $(VBOX_TESTSUITE_BUILD.amd64) packing
885else
886 $(call MSG_L1,Building Windows/amd64 testsuite)
887 $(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 packing "
888endif
889
890testsuite-build-win.x86:
891ifeq ($(KBUILD_TARGET),win)
892 + $(VBOX_KMK_TIME) $(KMK) $(VBOX_TESTSUITE_BUILD.x86) all $(VBOX_TESTSUITE_HOST_BUILD_TWEAK)
893 + $(VBOX_KMK_TIME) $(KMK) $(VBOX_TESTSUITE_BUILD.x86) packing
894else
895 $(call MSG_L1,Building Windows/x86 testsuite)
896 $(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 packing"
897endif
898
899# ASSUMES the 64-bit edition are built first. This also serializes VM access.
900ifeq ($(KBUILD_TARGET),solaris)
901testsuite-build-solaris.amd64:
902 + $(VBOX_KMK_TIME) $(KMK) $(VBOX_TESTSUITE_BUILD.amd64) all $(VBOX_TESTSUITE_HOST_BUILD_TWEAK)
903 + $(VBOX_KMK_TIME) $(KMK) $(VBOX_TESTSUITE_BUILD.amd64) packing
904
905testsuite-build-solaris.x86: testsuite-build-solaris.amd64
906 + $(VBOX_KMK_TIME) $(KMK) $(VBOX_TESTSUITE_BUILD.x86) VBOX_WITH_COMBINED_SOLARIS_GUEST_PACKAGE=1 all $(VBOX_TESTSUITE_HOST_BUILD_TWEAK)
907 + $(VBOX_KMK_TIME) $(KMK) $(VBOX_TESTSUITE_BUILD.x86) VBOX_WITH_COMBINED_SOLARIS_GUEST_PACKAGE=1 packing
908
909else
910testsuite-build-solaris.rsync-into-vm: $(VBOX_TESTSUITE_BUILD_WIN_HOST_FIRST)
911 $(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)
912
913testsuite-build-solaris.build-it: testsuite-build-solaris.rsync-into-vm
914 $(call MSG_L1,Building Solaris/amd64 testsuite)
915 $(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 packing"
916 $(call MSG_L1,Building Solaris/x86 testsuite)
917 $(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 packing VBOX_WITH_COMBINED_SOLARIS_GUEST_PACKAGE=1"
918
919testsuite-build-solaris.rsync-out-of-vm: testsuite-build-solaris.build-it
920 $(VBOX_KMK_TIME) rsync -a --delete 192.168.27.4:/mnt/tinderbox/$(VBOX_TESTSUITE_BUILD_SUBDIRNAME)/out/solaris.x86 out/
921 $(VBOX_KMK_TIME) rsync -a --delete 192.168.27.4:/mnt/tinderbox/$(VBOX_TESTSUITE_BUILD_SUBDIRNAME)/out/solaris.amd64 out/
922
923.NOTPARALLEL: testsuite-build-solaris.rsync-out-of-vm testsuite-build-solaris.rsync-into-vm
924.PHONY: testsuite-build-solaris.rsync-out-of-vm testsuite-build-solaris.rsync-into-vm testsuite-build-solaris.build-it
925
926testsuite-build-solaris.amd64: testsuite-build-solaris.rsync-out-of-vm
927testsuite-build-solaris.x86: testsuite-build-solaris.rsync-out-of-vm
928endif
929
930testsuite-build-os2.x86:
931#ifeq ($(KBUILD_TARGET),os2)
932# + $(VBOX_KMK_TIME) $(KMK) $(VBOX_TESTSUITE_BUILD.x86) all $(VBOX_TESTSUITE_HOST_BUILD_TWEAK)
933# + $(VBOX_KMK_TIME) $(KMK) $(VBOX_TESTSUITE_BUILD.x86) packing
934#else
935# $(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) "
936#endif
937
938testsuite-build-linux.amd64: $(VBOX_TESTSUITE_BUILD_WIN_HOST_FIRST)
939ifeq ($(KBUILD_TARGET).$(KBUILD_TARGET_ARCH),linux.amd64)
940 + $(VBOX_KMK_TIME) $(KMK) $(VBOX_TESTSUITE_BUILD.amd64) all $(VBOX_TESTSUITE_HOST_BUILD_TWEAK)
941 + $(VBOX_KMK_TIME) $(KMK) $(VBOX_TESTSUITE_BUILD.amd64) packing
942else
943 $(call MSG_L1,Building Linux/amd64 testsuite)
944 $(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 packing"
945endif
946
947testsuite-build-linux.x86: $(VBOX_TESTSUITE_BUILD_WIN_HOST_FIRST)
948ifeq ($(KBUILD_TARGET).$(KBUILD_TARGET_ARCH),linux.x86)
949 + $(VBOX_KMK_TIME) $(KMK) $(VBOX_TESTSUITE_BUILD.x86) all $(VBOX_TESTSUITE_HOST_BUILD_TWEAK)
950 + $(VBOX_KMK_TIME) $(KMK) $(VBOX_TESTSUITE_BUILD.x86) packing
951else
952 $(call MSG_L1,Building Linux/x86 testsuite)
953 $(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 packing"
954endif
955
956
957testsuite-packing:
958 + $(KMK) VBOX_ONLY_TESTSUITE=1 \
959 VBOX_WITH_TESTSUITE_ISO.freebsd.amd64= \
960 VBOX_WITH_TESTSUITE_ISO.freebsd.x86= \
961 VBOX_WITH_TESTSUITE_ISO.linux.amd64=1 \
962 VBOX_WITH_TESTSUITE_ISO.linux.x86=1 \
963 VBOX_WITH_TESTSUITE_ISO.solaris.amd64=1 \
964 VBOX_WITH_TESTSUITE_ISO.solaris.x86=1 \
965 VBOX_WITH_TESTSUITE_ISO.win.amd64=1 \
966 VBOX_WITH_TESTSUITE_ISO.win.x86=1 \
967 -C src/tests/testsuite \
968 $(VBOX_PATH_TESTSUITE)/VBoxTestSuite.iso
969
970.PHONY: \
971 testsuite-build-win.x86 \
972 testsuite-build-win.amd64 \
973 testsuite-build-solaris.amd64 \
974 testsuite-build-solaris.x86 \
975 testsuite-build-os2.x86 \
976 testsuite-build-linux.amd64 \
977 testsuite-build-linux.x86 \
978 testsuite-packing
979
980
981#
982# Build the EFI firmware, all of it.
983#
984# Mainly hooks right now, maybe we need them later.
985#
986efi-fetch:
987
988efi-build: $(VBOX_VERSION_HEADER)
989 $(PATH_ROOT)/webtools/tinderbox/client/efi-build.sh
990
991efi-packing:
992
993#
994# Generate VirtualBox-OSE-x.x.x.tar.bz2 (OSE) tarballs for distribution
995# - includes kBuild
996# - must be executed on an OSE checkout
997#
998
999# the path where to store the tarball
1000TARBALLPATH ?= $(abspath $(PATH_ROOT)/..)
1001# the root directory inside the tarball
1002TARBALLROOT ?= VirtualBox-$(VBOX_VERSION_STRING)
1003# the name of the tarball file
1004TARBALLNAME ?= VirtualBox-$(VBOX_VERSION_STRING).tar.bz2
1005snapshot-ose:
1006 @$(call MSG_L1,Creating tarball $(TARBALLPATH)/$(TARBALLNAME))
1007 @if [ -r "$(PATH_ROOT)/src/VBox/Devices/USB/USBProxyDevice.cpp" ]; then \
1008 echo; \
1009 echo "Found USB stuff, refused to build OSE tarball!"; \
1010 echo; \
1011 exit 1; \
1012 fi; \
1013 if [ -z "$(VBOX_OSE)" ]; then \
1014 echo; \
1015 echo "Please do 'kmk snapshot-ose VBOX_OSE=1'"; \
1016 echo; \
1017 exit 1; \
1018 fi
1019 $(QUIET)$(MKDIR) -p $(TARBALLPATH)
1020 $(QUIET)$(RM) -f $(TARBALLPATH)/$(TARBALLROOT)
1021 $(QUIET)$(LN_SYMLINK) $(PATH_ROOT) $(TARBALLPATH)/$(TARBALLROOT)
1022 $(QUIET)tar -cjh --owner 0 --group 0 --totals \
1023 --exclude=.svn \
1024 --exclude=$(TARBALLROOT)/out \
1025 --exclude=$(TARBALLROOT)/env.sh \
1026 --exclude=$(TARBALLROOT)/configure.log \
1027 --exclude=$(TARBALLROOT)/build.log \
1028 --exclude=$(TARBALLROOT)/AutoConfig.kmk \
1029 --exclude=$(TARBALLROOT)/LocalConfig.kmk \
1030 --exclude=$(TARBALLROOT)/prebuild \
1031 -C $(TARBALLPATH) \
1032 -f $(TARBALLPATH)/$(TARBALLNAME) \
1033 $(TARBALLROOT)
1034 $(QUIET)$(RM) $(TARBALLPATH)/$(TARBALLROOT)
1035
1036
1037#
1038# Generate VirtualBox-x.x.x.tar.bz2 (PUEL) zip archives for internal use only
1039# - includes kBuild
1040# - must be executed on an PUEL checkout
1041#
1042
1043# the path where to store the zip archive
1044ZIPPATH ?= $(abspath $(PATH_ROOT)/..)
1045# the root directory inside the zip archive
1046ZIPROOT ?= VirtualBox-$(VBOX_VERSION_STRING)
1047# the name of the zip archive
1048ZIPNAME ?= VirtualBox-$(VBOX_VERSION_STRING).zip
1049snapshot-puel:
1050 @$(call MSG_L1,Creating zip $(ZIPPATH)/$(ZIPNAME))
1051 @if [ ! -r "$(PATH_ROOT)/src/VBox/Devices/USB/USBProxyDevice.cpp" ]; then \
1052 echo; \
1053 echo "Did not find USB stuff, is this an OSE branch?"; \
1054 echo; \
1055 exit 1; \
1056 fi
1057 @if [ -z "$(PASSWORD)" ]; then \
1058 echo; \
1059 echo "Please specify a password with PASSWORD=..."; \
1060 echo; \
1061 exit 1; \
1062 fi
1063 $(QUIET)$(MKDIR) -p $(ZIPPATH)
1064 $(QUIET)$(RM) -f $(ZIPPATH)/$(ZIPROOT)
1065 $(QUIET)$(RM) -f $(ZIPPATH)/$(ZIPNAME)
1066 $(QUIET)$(LN_SYMLINK) $(PATH_ROOT) $(ZIPPATH)/$(ZIPROOT)
1067 $(QUIET)(cd $(ZIPPATH); 7z a \
1068 -l -tzip -mmt=on -mx=7 -p$(PASSWORD) \
1069 -xr!.svn \
1070 -i!$(ZIPROOT)/Config.kmk \
1071 -i!$(ZIPROOT)/Doxyfile.Core \
1072 -i!$(ZIPROOT)/Makefile.kmk \
1073 -i!$(ZIPROOT)/configure \
1074 -i!$(ZIPROOT)/configure.vbs \
1075 -i!$(ZIPROOT)/doc \
1076 -i!$(ZIPROOT)/include \
1077 -i!$(ZIPROOT)/kBuild \
1078 -i!$(ZIPROOT)/src \
1079 -i!$(ZIPROOT)/tools/env.sh \
1080 -i!$(ZIPROOT)/tools/linux.x86/bin/* \
1081 -i!$(ZIPROOT)/tools/linux.amd64/bin/* \
1082 -x!$(ZIPROOT)/doc/Devices \
1083 -x!$(ZIPROOT)/doc/\*pdf \
1084 -x!$(ZIPROOT)/doc/L4VM \
1085 -x!$(ZIPROOT)/doc/VMM \
1086 -x!$(ZIPROOT)/doc/licenses_old \
1087 -x!$(ZIPROOT)/doc/manual/de_DE \
1088 -x!$(ZIPROOT)/doc/manual/fr_FR \
1089 -x!$(ZIPROOT)/src/tests \
1090 -x!$(ZIPROOT)/src/VBox/Artwork/2008-\* \
1091 -x!$(ZIPROOT)/src/VBox/Installer/AMI \
1092 -x!$(ZIPROOT)/src/VBox/Installer/Avanquest \
1093 -x!$(ZIPROOT)/src/VBox/Installer/Encore \
1094 -x!$(ZIPROOT)/src/VBox/Installer/linux/debian \
1095 -x!$(ZIPROOT)/src/VBox/Installer/linux/rpm \
1096 $(ZIPPATH)/$(ZIPNAME))
1097 $(QUIET)$(RM) $(ZIPPATH)/$(ZIPROOT)
1098
1099
1100#
1101# Generate ALL the rules.
1102#
1103include $(KBUILD_PATH)/subfooter.kmk
1104
1105
1106#
1107# Generate x86.mac and err.mac.
1108#
1109incs:
1110 $(SED) -f include/VBox/err.sed --output include/VBox/err.mac include/VBox/err.h
1111 $(APPEND) include/VBox/err.mac '%include "iprt/err.mac"'
1112 $(SED) -f include/VBox/err.sed --output include/iprt/err.mac include/iprt/err.h
1113 $(SED) -f include/VBox/various.sed --output include/VBox/x86.mac include/VBox/x86.h
1114 $(SED) -f include/VBox/various.sed --output include/VBox/param.mac include/VBox/param.h
1115
1116
1117#
1118# Generate Visual SlickEdit tagging #defines.
1119#
1120vslick.h: include/VBox/cdefs.h include/iprt/cdefs.h $(MAKEFILE)
1121 $(RM) -f -- $@ $@.tmp $@.tmp2 $@.tmp3
1122 $(APPEND) $@.tmp '// autogenerated'
1123 @$(APPEND) $@.tmp '#define RT_C_DECLS_BEGIN '
1124 @$(APPEND) $@.tmp '#define RT_C_DECLS_END '
1125
1126 @$(APPEND) $@.tmp '#define ATL_NO_VTABLE '
1127 @$(APPEND) $@.tmp '#define BEGIN_COM_MAP(a) '
1128 @$(APPEND) $@.tmp '#define COM_INTERFACE_ENTRY(a) '
1129 @$(APPEND) $@.tmp '#define COM_INTERFACE_ENTRY2(a,b) '
1130 @$(APPEND) $@.tmp '#define COM_INTERFACE_ENTRY3(a,b,c) '
1131 @$(APPEND) $@.tmp '#define COM_INTERFACE_ENTRY4(a,b,c,d) '
1132 @$(APPEND) $@.tmp '#define END_COM_MAP(a) '
1133
1134 @$(APPEND) $@.tmp '#define COM_DECL_READONLY_ENUM_AND_COLLECTION(a) '
1135 @$(APPEND) $@.tmp '#define COMGETTER(n) Get##n '
1136 @$(APPEND) $@.tmp '#define COMSETTER(n) Set##n '
1137 @$(APPEND) $@.tmp '#define ComSafeArrayIn(t,a) t a[] '
1138 @$(APPEND) $@.tmp '#define ComSafeArrayOut(t,a) t * a[] '
1139 @$(APPEND) $@.tmp '#define DECLARE_CLASSFACTORY(a) '
1140 @$(APPEND) $@.tmp '#define DECLARE_CLASSFACTORY_SINGLETON(a) '
1141 @$(APPEND) $@.tmp '#define DECLARE_REGISTRY_RESOURCEID(a) '
1142 @$(APPEND) $@.tmp '#define DECLARE_NOT_AGGREGATABLE(a) '
1143 @$(APPEND) $@.tmp '#define DECLARE_PROTECT_FINAL_CONSTRUCT(a) '
1144 @$(APPEND) $@.tmp '#define DECLARE_EMPTY_CTOR_DTOR(a) a(); ~a();'
1145 @$(APPEND) $@.tmp '#define DEFINE_EMPTY_CTOR_DTOR(a) a::a() {} a::~a() {}'
1146 @$(APPEND) $@.tmp '#define NS_DECL_ISUPPORTS '
1147 @$(APPEND) $@.tmp '#define NS_IMETHOD virtual nsresult '
1148 @$(APPEND) $@.tmp '#define NS_IMETHOD_(type) virtual type '
1149 @$(APPEND) $@.tmp '#define NS_IMETHODIMP nsresult '
1150 @$(APPEND) $@.tmp '#define NS_IMETHODIMP_(type) type '
1151 @$(APPEND) $@.tmp '#define PARSERS_EXPORT '
1152if1of ($(KBUILD_HOST),win)
1153 @$(APPEND) $@.tmp '#define STDMETHOD(m) virtual HRESULT m '
1154 @$(APPEND) $@.tmp '#define STDMETHOD_(type,m) virtual type m '
1155 @$(APPEND) $@.tmp '#define STDMETHODIMP HRESULT '
1156 @$(APPEND) $@.tmp '#define STDMETHODIMP_(type) type '
1157else
1158 @$(APPEND) $@.tmp '#define STDMETHOD(m) virtual nsresult m '
1159 @$(APPEND) $@.tmp '#define STDMETHOD_(type,m) virtual type m '
1160 @$(APPEND) $@.tmp '#define STDMETHODIMP nsresult '
1161 @$(APPEND) $@.tmp '#define STDMETHODIMP_(type) type '
1162endif
1163 @$(APPEND) $@.tmp '#define VBOX_SCRIPTABLE(a) public a '
1164 @$(APPEND) $@.tmp '#define VBOX_SCRIPTABLE_IMPL(a) '
1165 @$(APPEND) $@.tmp '#define VIRTUALBOXBASE_ADD_ERRORINFO_SUPPORT(a) '
1166
1167 @$(APPEND) $@.tmp '#define CTX_SUFF(var) var##R3 '
1168 @$(APPEND) $@.tmp '#define CTXAllSUFF(var) var##R3 '
1169 @$(APPEND) $@.tmp '#define CTXSUFF(var) var##HC '
1170 @$(APPEND) $@.tmp '#define OTHERCTXSUFF(var) var##GC '
1171 @$(APPEND) $@.tmp '#define CTXALLMID(first, last) first##R3##last '
1172 @$(APPEND) $@.tmp '#define CTXMID(first, last) first##HC##last '
1173 @$(APPEND) $@.tmp '#define OTHERCTXMID(first, last) first##GC##last '
1174 @$(APPEND) $@.tmp '#define CTXTYPE(GCType, R3Type, R0Type) R3Type '
1175 @$(APPEND) $@.tmp '#define RCTYPE(RCType, HCType) RCType '
1176 @$(APPEND) $@.tmp '#define GCTYPE(GCType, HCType) GCType '
1177 @$(APPEND) $@.tmp '#define RCPTRTYPE(RCType) RCType '
1178 @$(APPEND) $@.tmp '#define GCPTRTYPE(GCType) GCType '
1179 @$(APPEND) $@.tmp '#define HCPTRTYPE(HCType) HCType '
1180 @$(APPEND) $@.tmp '#define R3R0PTRTYPE(HCType) HCType '
1181 @$(APPEND) $@.tmp '#define R0PTRTYPE(R3Type) R3Type '
1182 @$(APPEND) $@.tmp '#define R3PTRTYPE(R0Type) R0Type '
1183 @$(APPEND) $@.tmp '#define RT_SRC_POS __FILE__, __LINE__, __PRETTY_FUNCTION__ '
1184 @$(APPEND) $@.tmp '#define RT_SRC_POS_DECL const char *pszFile, unsigned iLine, const char *pszFunction '
1185 @$(APPEND) $@.tmp '#define RT_SRC_POS_ARGS pszFile, iLine, pszFunction '
1186 @$(APPEND) $@.tmp '#define RTCALL'
1187 @$(APPEND) $@.tmp '#define DECLINLINE(type) inline type '
1188 @$(APPEND) $@.tmp '#define DECL_FORCED_INLINE(type) inline type '
1189 @$(APPEND) $@.tmp '#define DECL_INVALID(type) type '
1190
1191 @$(APPEND) $@.tmp '#define PDMDEVINSINT_DECLARED 1'
1192 @$(APPEND) $@.tmp '#define VBOX_WITH_HGCM 1'
1193 @$(APPEND) $@.tmp '#define VBOXCALL'
1194
1195 $(SED) -e '/__cdecl/d' \
1196 -e '/^ *# *define.*DECL/!d' \
1197 -e '/DECLS/d' \
1198 -e '/DECLARE_CLS_/d' \
1199 -e '/_SRC_POS_DECL/d' \
1200 -e '/declspec/d' \
1201 -e '/__attribute__/d' \
1202 -e 's/# */#/g' \
1203 -e 's/ */ /g' \
1204 -e '/(type) DECLEXPORT/d' \
1205 -e '/ DECLEXPORT_CLASS/d' \
1206 -e 's/ *VBOXCALL//' \
1207 -e 's/ *RTCALL//' \
1208 -e 's/(type) DECLIMPORT(type)/(type) type/' \
1209 -e '/ DECLASM(type) type/d' \
1210 -e '/define *DECL..CALLBACKMEMBER(type[^)]*) *RT/d' \
1211 -e '/define *DECLINLINE(type)/d' \
1212 -e '/ *DECL_INVALID(/d' \
1213 -e '/define RT[DATGRC03]*DECL(type) *DECLHIDDEN(type)/d' \
1214 \
1215 --append $@.tmp \
1216 $(filter-out include/VBox/err.h, $(wildcard include/VBox/*.h)) \
1217 include/iprt/cdefs.h
1218 $(CAT_EXT) $@.tmp | sort | $(SED_EXT) -e 's/$$/\n/' --output $@.tmp2
1219 $(MV) -f $@.tmp2 $@
1220 $(RM) -f $@.tmp $@.tmp2 $@.tmp3
1221ifeq ($(KBUILD_HOST),win)
1222 @$(ECHO) 'TODO: Merge vslick.h with your "$(HOMEDRIVE)$(HOMEPATH)\Documents\My SlickEdit Config\x.y.z\usercpp.h" file.'
1223else
1224 @$(ECHO) "TODO: Merge ./vslick.h with your ~/.slickedit/x.y.z/unxcpp.h file."
1225endif
1226
1227
1228#
1229# Add fetching of the tools to the 'up[date][2]' targets.
1230#
1231up update up2 update2::
1232ifndef VBOX_OSE
1233 +$(MAKE) -C tools fetch
1234else
1235 $(MAKE) -C tools -f Makefile-ose.kmk fetch
1236endif
1237
1238
1239
1240#
1241# Aliases for building the SDK.
1242#
1243.NOTPARALLEL: sdk sdk-fetch
1244sdk:
1245 + $(KMK) VBOX_ONLY_SDK=1 \
1246 pass_bldprogs pass_others pass_installs pass_packing
1247
1248sdk-fetch:
1249 + $(KMK) KBUILD_TARGET=win KBUILD_TARGET_ARCH=x86 -C tools fetch
1250
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