VirtualBox

source: vbox/trunk/Makefile.kmk@ 14833

Last change on this file since 14833 was 14428, checked in by vboxsync, 16 years ago

use kmk_time to measure the build times of the additions jails

  • Property svn:eol-style set to native
  • Property svn:keywords set to Id
File size: 32.4 KB
Line 
1# $Id: Makefile.kmk 14428 2008-11-20 17:17:37Z vboxsync $
2## @file
3# Top level makefile.
4#
5
6#
7# Copyright (C) 2006-2007 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)
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)
35 SUBDIRS = doc/manual
36 endif
37 SUBDIRS += src
38endif
39
40
41ifndef VBOX_ONLY_DOCS
42ifndef VBOX_ONLY_ADDITIONS
43
44ifndef VBOX_OSE
45 #
46 # Install the license (and misc non-executable stuff).
47 #
48 INSTALLS += nobin
49 nobin_INST = $(INST_BIN)
50 nobin_MODE = 0644
51 nobin_SOURCES =
52 ifdef VBOX_LICENSE_FILES
53 nobin_SOURCES += \
54 $(VBOX_BRAND_LICENSE_HTML)=>License-$(VBOX_LICENSE_VER).html \
55 $(foreach f,$(VBOX_INSTALLER_ADD_LANGUAGES),$(VBOX_BRAND_$(f)_LICENSE_HTML)=>License-$(VBOX_LICENSE_VER)-$(f).html)
56 endif
57endif # !OSE
58
59
60#
61# Install external binaries (mostly redistributable parts of tools we use).
62# This must be done *before* we build the manual.
63#
64# To avoid dragging in unnecessary tools and sdks here, we don't use the .win
65# and .linux property suffixes.
66#
67INSTALLS += bin
68
69bin_INST = $(INST_BIN)
70
71# The SDL DLLs
72if1of ($(KBUILD_TARGET), win os2)
73 ifneq ($(VBOX_WITH_VBOXSDL)$(VBOX_WITH_VBOXBFE),)
74 include $(KBUILD_PATH)/sdks/LIBSDL.kmk
75 bin_SOURCES += \
76 $(DLL_SDK_LIBSDL_SDL)
77 ifdef VBOX_WITH_SECURELABEL
78 bin_SOURCES += \
79 $(DLL_SDK_LIBSDL_SDLTTF)
80 endif
81 ifeq ($(KBUILD_TARGET),os2)
82 bin_SOURCES += \
83 $(DLL_SDK_LIBSDL_FSLIB)
84 endif
85 endif
86endif
87
88
89# The Qt DLLs.
90ifneq ($(VBOX_WITH_QTGUI),)
91 if1of ($(KBUILD_TARGET), win os2)
92 ## @todo remove ifeq and make it work for win too (see
93 ifeq ($(KBUILD_TARGET),os2)
94 include $(KBUILD_PATH)/units/qt3.kmk
95 bin_SOURCES += \
96 $(DLL_SDK_QT3_QT)=>$(not-dir $(DLL_SDK_QT3_QT))
97 else
98 ifneq ($(strip $(VBOX_DLL_QT)),)
99 bin_SOURCES += \
100 $(VBOX_DLL_QT)=>$(not-dir $(VBOX_DLL_QT))
101 endif
102 endif
103 ifdef VBOX_QT_BINARIES
104 bin_SOURCES += $(VBOX_QT_BINARIES)
105 endif
106 else ifeq ($(VBOX_MUST_INSTALL_LIB_QT),1)
107 bin_SOURCES += \
108 $(LIB_QT)
109 endif
110endif
111
112
113# The compiler runtime DLLs.
114ifeq ($(KBUILD_TARGET).$(VBOX_WITHOUT_COMPILER_REDIST),win.)
115 ifdef VBOX_USE_VCC80
116 include $(KBUILD_PATH)/tools/VCC80X86.kmk
117 include $(KBUILD_PATH)/tools/VCC80AMD64.kmk
118 bin_SOURCES.x86 += \
119 $(PATH_TOOL_VCC80X86)/redist/x86/Microsoft.VC80.CRT/Microsoft.VC80.CRT.manifest=>Microsoft.VC80.CRT/Microsoft.VC80.CRT.manifest \
120 $(PATH_TOOL_VCC80X86)/redist/x86/Microsoft.VC80.CRT/msvcr80.dll=>Microsoft.VC80.CRT/msvcr80.dll \
121 $(PATH_TOOL_VCC80X86)/redist/x86/Microsoft.VC80.CRT/msvcp80.dll=>Microsoft.VC80.CRT/msvcp80.dll \
122 $(PATH_TOOL_VCC80X86)/redist/x86/Microsoft.VC80.CRT/Microsoft.VC80.CRT.manifest=>testcase/Microsoft.VC80.CRT/Microsoft.VC80.CRT.manifest \
123 $(PATH_TOOL_VCC80X86)/redist/x86/Microsoft.VC80.CRT/msvcr80.dll=>testcase/Microsoft.VC80.CRT/msvcr80.dll \
124 $(PATH_TOOL_VCC80X86)/redist/x86/Microsoft.VC80.CRT/msvcp80.dll=>testcase/Microsoft.VC80.CRT/msvcp80.dll
125 bin_SOURCES.amd64 += \
126 $(PATH_TOOL_VCC80AMD64)/redist/amd64/Microsoft.VC80.CRT/Microsoft.VC80.CRT.manifest=>Microsoft.VC80.CRT/Microsoft.VC80.CRT.manifest \
127 $(PATH_TOOL_VCC80AMD64)/redist/amd64/Microsoft.VC80.CRT/msvcr80.dll=>Microsoft.VC80.CRT/msvcr80.dll \
128 $(PATH_TOOL_VCC80AMD64)/redist/amd64/Microsoft.VC80.CRT/msvcp80.dll=>Microsoft.VC80.CRT/msvcp80.dll \
129 $(PATH_TOOL_VCC80AMD64)/redist/amd64/Microsoft.VC80.CRT/Microsoft.VC80.CRT.manifest=>testcase/Microsoft.VC80.CRT/Microsoft.VC80.CRT.manifest \
130 $(PATH_TOOL_VCC80AMD64)/redist/amd64/Microsoft.VC80.CRT/msvcr80.dll=>testcase/Microsoft.VC80.CRT/msvcr80.dll \
131 $(PATH_TOOL_VCC80AMD64)/redist/amd64/Microsoft.VC80.CRT/msvcp80.dll=>testcase/Microsoft.VC80.CRT/msvcp80.dll
132 endif
133 ifndef VBOX_USE_VCC80
134 VBOX_INSTALL_VCC70_RT = 1
135 endif
136 ifeq ($(KBUILD_TARGET).$(KBUILD_TARGET_ARCH),win.x86)
137 VBOX_INSTALL_VCC70_RT = 1
138 endif
139 ifdef VBOX_INSTALL_VCC70_RT
140 include $(KBUILD_PATH)/tools/VCC70.kmk
141 ## @todo Move these defines to VCC70.
142 DLL_TOOL_VCC70_MSVCR71 ?= $(PATH_TOOL_VCC70)/bin/msvcr71.dll
143 ifneq ($(wildcard $(DLL_TOOL_VCC70_MSVCR71)),)
144 bin_SOURCES += \
145 $(DLL_TOOL_VCC70_MSVCR71)=>msvcr71.dll \
146 $(DLL_TOOL_VCC70_MSVCR71)=>testcase/msvcr71.dll
147 endif
148 DLL_TOOL_VCC70_MSVCP71 ?= $(PATH_TOOL_VCC70)/bin/msvcp71.dll
149 ifneq ($(wildcard $(DLL_TOOL_VCC70_MSVCP71)),)
150 bin_SOURCES += \
151 $(DLL_TOOL_VCC70_MSVCP71)=>msvcp71.dll \
152 $(DLL_TOOL_VCC70_MSVCP71)=>testcase/msvcp71.dll
153 endif
154 DLL_TOOL_VCC70_MSVCRT ?= $(PATH_TOOL_VCC70)/bin/msvcrt.dll
155 ifneq ($(wildcard $(DLL_TOOL_VCC70_MSVCRT)),)
156 bin_SOURCES += \
157 $(DLL_TOOL_VCC70_MSVCRT)=>msvcrt.dll \
158 $(DLL_TOOL_VCC70_MSVCRT)=>testcase/msvcrt.dll
159 endif
160 endif
161endif
162
163
164ifdef VBOX_WITH_QT4_SUN
165#
166# Install our Qt DLLs / Shared Objects / Frameworks.
167# Note: The installer fixes the darwin .dylibs when hardening is enabled.
168#
169 INSTALLS += qt4-bin
170 qt4-bin_MODE = 755
171 ifeq ($(KBUILD_TARGET),darwin)
172 qt4-bin_INST = $(INST_VIRTUALBOX)Contents/
173 qt4-bin_SOURCES = \
174 $(VBOX_PATH_QT4)/Frameworks/QtCore.framework/Versions/4/QtCore=>Frameworks/QtCore.framework/Versions/4/QtCore \
175 $(VBOX_PATH_QT4)/Frameworks/QtGui.framework/Versions/4/QtGui=>Frameworks/QtGui.framework/Versions/4/QtGui \
176 $(VBOX_PATH_QT4)/Frameworks/QtNetwork.framework/Versions/4/QtNetwork=>Frameworks/QtNetwork.framework/Versions/4/QtNetwork \
177 $(PATH_qt4-bin)/libqtaccessiblewidgets.dylib=>MacOS/accessible/libqtaccessiblewidgets.dylib
178 qt4-bin_CLEAN = $(PATH_qt4-bin)/libqtaccessiblewidgets.dylib
179$$(PATH_qt4-bin)/libqtaccessiblewidgets.dylib: $$(VBOX_PATH_QT4)/plugins/accessible/libqtaccessiblewidgets.dylib | $$(dir $$@)
180 $(call MSG_TOOL,install_name_tool,accessible,$<,$@)
181 $(QUIET)$(INSTALL) $< $@
182 $(QUIET)install_name_tool \
183 -change QtCore.framework/Versions/4/QtCore \
184 @executable_path/../Frameworks/QtCore.framework/Versions/4/QtCore \
185 -change QtGui.framework/Versions/4/QtGui \
186 @executable_path/../Frameworks/QtGui.framework/Versions/4/QtGui \
187 -change QtNetwork.framework/Versions/4/QtNetwork \
188 @executable_path/../Frameworks/QtNetwork.framework/Versions/4/QtNetwork \
189 $@
190
191 else ifeq ($(KBUILD_TARGET),win)
192 qt4-bin_INST = $(INST_BIN)
193 qt4-bin_SOURCES = \
194 $(VBOX_PATH_QT4_LIB)/VBoxQtCore4.dll \
195 $(VBOX_PATH_QT4_LIB)/VBoxQtGui4.dll \
196 $(VBOX_PATH_QT4_LIB)/VBoxQtNetwork4.dll \
197 $(VBOX_PATH_QT4)/plugins/accessible/qtaccessiblewidgets4.dll=>accessible/qtaccessiblewidgets4.dll
198
199 else
200 qt4-bin_INST = $(INST_BIN)
201 qt4-bin_SOURCES = \
202 $(VBOX_PATH_QT4_LIB)/libVBoxQtCore.so.4 \
203 $(VBOX_PATH_QT4_LIB)/libVBoxQtGui.so.4 \
204 $(VBOX_PATH_QT4_LIB)/libVBoxQtNetwork.so.4 \
205 $(VBOX_PATH_QT4)/plugins/accessible/libqtaccessiblewidgets$(SUFF_DLL)=>accessible/libqtaccessiblewidgets$(SUFF_DLL)
206 endif
207endif # VBOX_WITH_QT4_SUN
208
209
210#
211# Install additions iso from the build server.
212# The $(CP)/$(RM) stuff can be replaced by a simple $(TOUCH) once that has
213# been added to kBuild.
214#
215ifdef VBOX_WITH_ADDITIONS_FROM_BUILD_SERVER
216INSTALLS += buildserver-additions
217buildserver-additions_INST = $(INST_ADDITIONS)
218buildserver-additions_MODE = 0644
219buildserver-additions_SOURCES = $(PATH_TARGET)/VBoxGuestAdditions.iso
220buildserver-additions_CLEANS = $(PATH_TARGET)/VBoxGuestAdditions.iso $(PATH_TARGET)/VBoxGuestAdditions.iso.tmp
221
222$(PATH_TARGET)/VBoxGuestAdditions.iso: $(VBOX_SVN_REV_KMK) $(PATH_DEVTOOLS)/bin/additions.sh | $$(dir $$@)
223 $(RM) -f $(PATH_TARGET)/VBoxGuestAdditions.iso $(PATH_TARGET)/VBoxGuestAdditions.iso.tmp
224 ifneq ($(KBUILD_HOST),win)
225 $(SHELL) $(PATH_DEVTOOLS)/bin/additions.sh --cmd fetch --filename $(PATH_TARGET)/VBoxGuestAdditions.iso.tmp
226 else
227 $(KMK) --affinity 1 -f $(MAKEFILE) VBOX_SINGLE_MAKEFILE= buildserver-additions-affinity-hack
228 endif
229 $(CP) -f $(PATH_TARGET)/VBoxGuestAdditions.iso.tmp $(PATH_TARGET)/VBoxGuestAdditions.iso
230 $(RM) -f $(PATH_TARGET)/VBoxGuestAdditions.iso.tmp
231
232 ifeq ($(KBUILD_HOST),win)
233buildserver-additions-affinity-hack:
234 $(SHELL) $(PATH_DEVTOOLS)/bin/additions.sh --cmd fetch --filename $(PATH_TARGET)/VBoxGuestAdditions.iso.tmp
235 endif
236endif
237
238
239#
240#
241# Install documentation files (at the moment the .chm) from the build server.
242# The $(CP)/$(RM) stuff can be replaced by a simple $(TOUCH) once that has
243# been added to kBuild.
244#
245ifdef VBOX_WITH_DOCS_FROM_BUILD_SERVER
246## @todo r=bird: Too much mess now for $(PATH_TARGET); move to doc/manual/.
247INSTALLS += buildserver-docs
248buildserver-docs_INST = $(INST_BIN)
249buildserver-docs_MODE = 0644
250buildserver-docs_SOURCES = \
251 $(addprefix $(PATH_TARGET)/, \
252 VirtualBox.chm UserManual.pdf \
253 $(foreach f,$(VBOX_MANUAL_ADD_LANGUAGES),VirtualBox_$(f).chm UserManual_$(f).pdf))
254buildserver-docs_CLEANS = \
255 $(addprefix $(PATH_TARGET)/, \
256 VBoxDocumentation.zip VBoxDocumentation.zip.tmp \
257 VirtualBox.chm UserManual.pdf \
258 $(foreach f,$(VBOX_MANUAL_ADD_LANGUAGES),VirtualBox_$(f).chm UserManual_$(f).pdf))
259
260## @todo Hack to get at TOOL_ZIP_UNPACK; see if this can be integrated somehow...
261include $(KBUILD_PATH)/tools/ZIP.kmk
262
263$(PATH_TARGET)/VirtualBox.chm + $(PATH_TARGET)/UserManual.pdf \
264$(foreach f,$(VBOX_MANUAL_ADD_LANGUAGES), + $(PATH_TARGET)/VirtualBox_$(f).chm + $(PATH_TARGET)/UserManual_$(f).pdf): \
265 $(PATH_TARGET)/VBoxDocumentation.zip
266 $(call MSG_L1,Unpacking documentation)
267 $(QUIET)$(TOOL_ZIP_UNPACK) $(TOOL_ZIP_UNPACKFLAGS) -o $< -d $(PATH_TARGET)
268
269$(PATH_TARGET)/VBoxDocumentation.zip: $(VBOX_SVN_REV_KMK) $(PATH_DEVTOOLS)/bin/documentation.sh | $$(dir $$@)
270 $(RM) -f $(PATH_TARGET)/VBoxDocumentation.zip $(PATH_TARGET)/VBoxDocumentation.zip.tmp
271 ifneq ($(KBUILD_HOST),win)
272 $(SHELL) $(PATH_DEVTOOLS)/bin/documentation.sh --cmd fetch --filename $(PATH_TARGET)/VBoxDocumentation.zip.tmp
273 else
274 $(KMK) --affinity 1 -f $(MAKEFILE) VBOX_SINGLE_MAKEFILE= buildserver-documentation-affinity-hack
275 endif
276 $(CP) -f $(PATH_TARGET)/VBoxDocumentation.zip.tmp $(PATH_TARGET)/VBoxDocumentation.zip
277 $(RM) -f $(PATH_TARGET)/VBoxDocumentation.zip.tmp
278
279 ifeq ($(KBUILD_HOST),win)
280buildserver-documentation-affinity-hack:
281 $(SHELL) $(PATH_DEVTOOLS)/bin/documentation.sh --cmd fetch --filename $(PATH_TARGET)/VBoxDocumentation.zip.tmp
282 endif
283endif # VBOX_WITH_DOCS_FROM_BUILD_SERVER
284
285
286#
287# Install staged binaries on platforms where we can't cross
288# compile things.
289#
290ifn1of ($(KBUILD_TARGET), l4 linux win)
291 VBOX_PATH_STAGED ?= .
292
293 # Additions.
294 ifndef VBOX_WITH_LINUX_ADDITIONS
295 ifndef VBOX_WITH_WIN32_ADDITIONS
296 ifneq ($(wildcard $(VBOX_PATH_STAGED)/VBoxGuestAdditions.iso),)
297 INSTALLS += staged-additions
298 staged-additions_INST = $(INST_ADDITIONS)
299 staged-additions_MODE = 0644
300 staged-additions_SOURCES = $(VBOX_PATH_STAGED)/VBoxGuestAdditions.iso
301 endif
302 endif
303 endif
304
305 # guesttool.exe
306 ifndef VBOX_WITH_WIN32_ADDITIONS
307 ifneq ($(wildcard $(VBOX_PATH_STAGED)/guesttool.exe),)
308 INSTALLS += staged-guesttool
309 staged-guesttool_INST = $(INST_BIN)
310 staged-guesttool_SOURCES = $(VBOX_PATH_STAGED)/guesttool.exe
311 endif
312 endif
313
314endif
315
316endif # !VBOX_ONLY_ADDITIONS
317endif # !VBOX_ONLY_DOCS
318
319
320include $(KBUILD_PATH)/subfooter.kmk
321
322
323ifdef VBOX_ONLY_DOCS
324# It may sound a bit odd, but for preparing the documentation package the
325# doxygen documentation isn't needed and increases the build time a lot.
326docs:
327else # !VBOX_ONLY_DOCS
328#
329# Generate documentation.
330# (This should be converted into a separate pass or merged with an existing one later.)
331#
332 ifdef VBOX_SINGLE_MAKEFILE
333 ifdef VBOX_WITH_ALL_DOXYGEN_TARGETS
334docs: docs.Core
335 endif
336 else # !VBOX_SINGLE_MAKEFILE
337docs: $(if $(VBOX_WITH_ALL_DOXYGEN_TARGETS),docs.Core)
338 $(KMK) -C src/VBox/Main docs.Main
339 ifdef VBOX_WITH_ALL_DOXYGEN_TARGETS
340 $(KMK) -C src/VBox/Runtime docs.iprt
341 endif
342 endif # !VBOX_SINGLE_MAKEFILE
343endif # !VBOX_ONLY_DOCS
344
345docs.Core docs.core: $(PATH_TARGET)/docs.Core
346
347
348
349#
350# The core (VMM+REM+Devices+Main) documentation.
351#
352# This includes so much because we wish to have the complete CFGM
353# and GCFGM lists.
354#
355OTHER_CLEAN += \
356 $(PATH_TARGET)/Doxyfile.Core \
357 $(PATH_TARGET)/Doxyfile.Core.dep
358
359VBOX_CORE_DOXYFILE_INPUT_DIRS = \
360 include/iprt \
361 include/VBox \
362 include/VBox/com \
363 include/VBox/HostServices \
364 src/VBox/VMM \
365 src/VBox/VMM/VMMR0 \
366 src/VBox/VMM/VMMGC \
367 src/VBox/VMM/VMMAll \
368 src/VBox/VMM/PATM \
369 src/VBox/VMM/PATM/VMMR0 \
370 src/VBox/VMM/PATM/VMMGC \
371 src/VBox/VMM/PATM/VMMAll \
372 src/VBox/VMM/VMMSwitcher \
373 src/VBox/Debugger \
374 src/VBox/Devices \
375 src/VBox/Devices/Audio \
376 src/VBox/Devices/Bus \
377 src/VBox/Devices/Graphics \
378 src/VBox/Devices/Graphics/BIOS \
379 src/VBox/Devices/Input \
380 src/VBox/Devices/Networking \
381 src/VBox/Devices/PC \
382 src/VBox/Devices/PC/BIOS \
383 src/VBox/Devices/Parallel \
384 src/VBox/Devices/Serial \
385 src/VBox/Devices/Storage \
386 src/VBox/Devices/VBoxHDDFormats \
387 src/VBox/Devices/VBoxHDDFormats/StorageCraft \
388 src/VBox/Devices/USB \
389 src/VBox/Devices/USB/darwin \
390 src/VBox/Devices/USB/linux \
391 src/VBox/Devices/USB/os2 \
392 src/VBox/Devices/USB/solaris \
393 src/VBox/Devices/USB/vrdp \
394 src/VBox/Devices/USB/win32 \
395 src/VBox/Devices/VMMDev \
396 src/VBox/Main/include \
397 src/VBox/Main/include/hgcm \
398 src/VBox/Main \
399 src/VBox/Main/glue \
400 src/VBox/Main/hgcm \
401 src/VBox/Main/webservice \
402 src/VBox/Main/xml \
403 src/VBox/Main/darwin \
404 src/VBox/Main/linux \
405 src/VBox/Main/os2 \
406 src/VBox/Main/solaris \
407 src/VBox/Main/win \
408 src/VBox/Main/xpcom \
409 src/VBox/HostServices \
410 src/VBox/HostServices/SharedClipboard \
411 src/VBox/HostServices/SharedFolders \
412 src/VBox/HostServices/SharedInfoServices \
413 src/VBox/HostServices/SharedOpenGL \
414 src/VBox/HostDrivers/Support \
415 src/VBox/HostDrivers/Support/darwin \
416 src/VBox/HostDrivers/Support/freebsd \
417 src/VBox/HostDrivers/Support/l4 \
418 src/VBox/HostDrivers/Support/linux \
419 src/VBox/HostDrivers/Support/os2 \
420 src/VBox/HostDrivers/Support/solaris \
421 src/VBox/HostDrivers/Support/win \
422 src/VBox/HostDrivers/VBoxNetFlt \
423 src/VBox/HostDrivers/VBoxNetFlt/darwin \
424 src/VBox/HostDrivers/VBoxNetFlt/linux \
425 src/VBox/HostDrivers/VBoxNetFlt/solaris \
426 src/VBox/HostDrivers/VBoxNetFlt/win \
427 src/VBox/HostDrivers/VBoxNetNat \
428 src/VBox/HostDrivers/VBoxNetNat/darwin \
429 src/VBox/HostDrivers/VBoxNetNat/linux \
430 src/VBox/HostDrivers/VBoxNetNat/solaris \
431 src/VBox/HostDrivers/VBoxNetNat/win \
432 src/VBox/HostDrivers/VBoxNetTap \
433 src/VBox/HostDrivers/VBoxNetTap/darwin \
434 src/VBox/HostDrivers/VBoxNetTap/linux \
435 src/VBox/HostDrivers/VBoxNetTap/solaris \
436 src/VBox/HostDrivers/VBoxNetTap/win \
437 src/VBox/HostDrivers/VBoxTAP \
438 src/VBox/HostDrivers/VBoxTAP/win \
439 src/VBox/HostDrivers/VBoxUSB \
440 src/VBox/HostDrivers/VBoxUSB/darwin \
441 src/VBox/HostDrivers/VBoxUSB/os2 \
442 src/VBox/HostDrivers/VBoxUSB/solaris \
443 src/VBox/HostDrivers/VBoxUSB/win \
444 src/VBox/HostDrivers/VBoxUSB/win/Device \
445 src/VBox/HostDrivers/VBoxUSB/win/Device/amd64 \
446 src/VBox/HostDrivers/VBoxUSB/win/Device/x86 \
447 src/VBox/HostDrivers/VBoxUSB/win/Filter \
448 src/VBox/HostDrivers/VBoxUSB/win/Install \
449 src/VBox/HostDrivers/VBoxUSB/win/Monitor \
450 src/VBox/HostDrivers/VBoxUSB/win/Monitor/win32 \
451 src/VBox/HostDrivers/VBoxUSB/win/Monitor/win64 \
452 src/VBox/HostDrivers/VBoxUSB/win/usbd \
453
454# These must come first in order to make things look nice.
455VBOX_CORE_DOXYFILE_INPUT_FIRST =\
456 $(PATH_ROOT)/doc/VBox-doc.c \
457 $(PATH_ROOT)/doc/VBox-CodingGuidelines.cpp \
458 $(PATH_ROOT)/src/VBox/VMM/VMMCodingGuidelines.cpp \
459 $(PATH_ROOT)/src/VBox/VMM/VMMDocsRawMode.cpp \
460 $(PATH_ROOT)/include/VBox/cdefs.h \
461 $(PATH_ROOT)/include/VBox/vmapi.h \
462 $(PATH_ROOT)/include/VBox/vmm.h \
463 $(PATH_ROOT)/include/VBox/cpum.h \
464 $(PATH_ROOT)/include/VBox/mm.h \
465 $(PATH_ROOT)/include/VBox/pgm.h \
466 $(PATH_ROOT)/include/VBox/selm.h \
467 $(PATH_ROOT)/include/VBox/trpm.h \
468 $(PATH_ROOT)/include/VBox/patm.h \
469 $(PATH_ROOT)/include/VBox/dbgf.h \
470 $(PATH_ROOT)/include/VBox/stam.h \
471 $(PATH_ROOT)/include/VBox/em.h \
472 $(PATH_ROOT)/include/VBox/pdm.h \
473 $(PATH_ROOT)/include/VBox/rem.h \
474 $(PATH_ROOT)/include/VBox/iom.h \
475 $(PATH_ROOT)/include/VBox/cfgm.h \
476 $(PATH_ROOT)/include/VBox/tm.h \
477 $(PATH_ROOT)/include/VBox/csam.h \
478 $(PATH_ROOT)/include/VBox/ssm.h \
479 $(PATH_ROOT)/include/VBox/hwaccm.h \
480 $(PATH_ROOT)/include/VBox/hwacc_svm.h \
481 $(PATH_ROOT)/include/VBox/hwacc_vmx.h \
482 \
483 $(PATH_ROOT)/src/VBox/VMM/CFGMInternal.h \
484 $(PATH_ROOT)/src/VBox/VMM/CPUMInternal.h \
485 $(PATH_ROOT)/src/VBox/VMM/DBGFInternal.h \
486 $(PATH_ROOT)/src/VBox/VMM/EMInternal.h \
487 $(PATH_ROOT)/src/VBox/VMM/HWACCMInternal.h \
488 $(PATH_ROOT)/src/VBox/VMM/IOMInternal.h \
489 $(PATH_ROOT)/src/VBox/VMM/MMInternal.h \
490 $(PATH_ROOT)/src/VBox/VMM/PDMInternal.h \
491 $(PATH_ROOT)/src/VBox/VMM/PGMInternal.h \
492 $(PATH_ROOT)/src/VBox/VMM/PATM/CSAMInternal.h \
493 $(PATH_ROOT)/src/VBox/VMM/PATM/PATMInternal.h \
494 $(PATH_ROOT)/src/VBox/VMM/REMInternal.h \
495 $(PATH_ROOT)/src/VBox/VMM/SELMInternal.h \
496 $(PATH_ROOT)/src/VBox/VMM/SSMInternal.h \
497 $(PATH_ROOT)/src/VBox/VMM/STAMInternal.h \
498 $(PATH_ROOT)/src/VBox/VMM/TMInternal.h \
499 $(PATH_ROOT)/src/VBox/VMM/TRPMInternal.h \
500 $(PATH_ROOT)/src/VBox/VMM/VMInternal.h \
501 $(PATH_ROOT)/src/VBox/VMM/VMMInternal.h \
502 \
503 $(PATH_ROOT)/include/VBox/vm.h \
504 \
505 $(PATH_ROOT)/include/VBox/sup.h \
506 $(PATH_ROOT)/include/VBox/VBoxHDD.h \
507 $(PATH_ROOT)/include/VBox/types.h \
508 $(PATH_ROOT)/include/VBox/err.h \
509 $(PATH_ROOT)/include/VBox/x86.h \
510 $(PATH_ROOT)/include/VBox/cpumdis.h \
511 $(PATH_ROOT)/include/VBox/dbggui.h \
512 $(PATH_ROOT)/include/VBox/dis.h \
513 $(PATH_ROOT)/include/VBox/disopcode.h \
514 $(PATH_ROOT)/include/VBox/intnet.h \
515 $(PATH_ROOT)/include/VBox/settings.h \
516 $(PATH_ROOT)/include/VBox/pci.h \
517 $(PATH_ROOT)/include/VBox/scsi.h \
518 $(PATH_ROOT)/include/VBox/shflsvc.h \
519 $(PATH_ROOT)/include/VBox/hgcmsvc.h \
520 $(PATH_ROOT)/include/VBox/usb.h \
521 $(PATH_ROOT)/include/VBox/vusb.h \
522 \
523 $(PATH_ROOT)/include/VBox/log.h \
524 $(PATH_ROOT)/include/VBox/param.h \
525 $(PATH_ROOT)/include/VBox/version.h
526
527VBOX_CORE_DOXYFILE_INPUT := \
528 $(filter-out %.cpp.h, $(sort $(wildcard $(addsuffix /*.h, $(VBOX_CORE_DOXYFILE_INPUT_DIRS)))) ) \
529 $(foreach dir, $(VBOX_CORE_DOXYFILE_INPUT_DIRS), $(wildcard $(dir)/*.cpp $(dir)/*.c $(dir)/.asm))
530VBOX_CORE_DOXYFILE_INPUT := \
531 $(VBOX_CORE_DOXYFILE_INPUT_FIRST) \
532 $(filter-out $(VBOX_CORE_DOXYFILE_INPUT_FIRST), $(VBOX_CORE_DOXYFILE_INPUT))
533
534# And some some additional stuff.
535VBOX_CORE_DOXYFILE_INPUT += \
536 $(PATH_ROOT)/src/recompiler/VBoxRecompiler.c \
537 $(PATH_ROOT)/src/recompiler/VBoxREMWrapper.cpp
538
539
540VBOX_CORE_DOXYFILE_OUTPUT = $(PATH_OUT)/docs/Core
541BLDDIRS += $(VBOX_CORE_DOXYFILE_OUTPUT)
542
543-include $(PATH_TARGET)/Doxyfile.Core.dep
544
545# Generate the Doxyfile
546$(PATH_TARGET)/Doxyfile.Core: Doxyfile.Core \
547 $(comp-vars VBOX_CORE_DOXYFILE_INPUT,DOXYGEN_INPUT_PREV,FORCE) \
548 $(comp-vars VBOX_CORE_DOXYFILE_OUTPUT,DOXYGEN_OUTPUT_PREV,FORCE) \
549 | $(call DIRDEP, $(PATH_TARGET))
550 $(RM) -f $@ $@.tmp $(PATH_TARGET)/Doxyfile.Core.dep
551 $(CP) -f Doxyfile.Core $@.tmp
552 $(APPEND) $@.tmp
553 $(APPEND) $@.tmp "OUTPUT_DIRECTORY = $(VBOX_CORE_DOXYFILE_OUTPUT)"
554 $(APPEND) $@.tmp "WARN_LOGFILE = $(VBOX_CORE_DOXYFILE_OUTPUT)/errors"
555 $(APPEND) $@.tmp "INCLUDE_PATH = $(PATH_ROOT)/include $(PATH_ROOT)/src/VBox/VMM $(PATH_ROOT)/src/VBox/Main/include "
556 $(APPEND) $@.tmp "INCLUDE_FILE_PATTERNS = *.cpp.h"
557 $(APPEND) $@.tmp
558 $(APPEND) $@.tmp "INPUT = $(VBOX_CORE_DOXYFILE_INPUT)"
559 $(APPEND) $@.tmp
560 $(APPEND) $@.tmp "PREDEFINED += $(DEFS) $(DEFS.$(KBUILD_TARGET)) $(DEFS.$(KBUILD_TARGET_ARCH)) $(ARCH_BITS_DEFS)"
561 $(APPEND) $@.tmp "PREDEFINED += ARCH_BITS=HC_ARCH_BITS R3_ARCH_BITS=HC_ARCH_BITS R0_ARCH_BITS=HC_ARCH_BITS "
562 $(APPEND) $@.tmp
563 $(MV) -f $@.tmp $@
564 @$(APPEND) $(PATH_TARGET)/Doxyfile.Core.dep "DOXYGEN_OUTPUT_PREV = $(VBOX_CORE_DOXYFILE_OUTPUT)"
565 @$(APPEND) $(PATH_TARGET)/Doxyfile.Core.dep "DOXYGEN_INPUT_PREV = $(VBOX_CORE_DOXYFILE_INPUT)"
566
567# Do the actual job.
568$(PATH_TARGET)/docs.Core: $(PATH_TARGET)/Doxyfile.Core $$(VBOX_CORE_DOXYFILE_INPUT) | $(VBOX_CORE_DOXYFILE_OUTPUT)/
569 $(RM) -f $(PATH_TARGET)/docs.Core
570 $(RM) -Rf $(VBOX_CORE_DOXYFILE_OUTPUT)/html/
571 doxygen $(PATH_TARGET)/Doxyfile.Core
572 $(APPEND) $(PATH_TARGET)/docs.Core
573
574
575#
576# Generate x86.mac and err.mac.
577#
578incs:
579 $(SED) -f include/VBox/err.sed --output include/VBox/err.mac include/VBox/err.h
580 $(APPEND) include/VBox/err.mac '%include "iprt/err.mac"'
581 $(SED) -f include/VBox/err.sed --output include/iprt/err.mac include/iprt/err.h
582 $(SED) \
583 -e '/__VBox_x86_h__/d' \
584 -e '/#define/!d' \
585 -e '/\\$$/d' \
586 -e 's/#define/%define/' \
587 -e 's/\([0-9a-fA-F][0-9a-fA-F]*\)U$$/\1/' \
588 -e 's/\([0-9a-fA-F][0-9a-fA-F]*\)U[[:space:]]/\1 /' \
589 -e 's/[[:space:]]\/\*\*<.*$$//' \
590 --output include/VBox/x86.mac \
591 include/VBox/x86.h
592
593
594#
595# Generate Visual SlickEdit tagging #defines.
596#
597vslick.h: include/VBox/cdefs.h include/iprt/cdefs.h $(MAKEFILE)
598 $(RM) -f -- $@ $@.tmp $@.tmp2 $@.tmp3
599 $(APPEND) $@.tmp '// autogenerated'
600 #@$(APPEND) $@.tmp '#define __BEGIN_DECLS '
601 #@$(APPEND) $@.tmp '#define __END_DECLS '
602
603 @$(APPEND) $@.tmp '#define ATL_NO_VTABLE '
604 @$(APPEND) $@.tmp '#define BEGIN_COM_MAP(a) '
605 @$(APPEND) $@.tmp '#define END_COM_MAP(a) '
606
607 @$(APPEND) $@.tmp '#define CHECKREADY if(!isReady()) return E_UNEXPECTED; '
608 @$(APPEND) $@.tmp '#define COM_DECL_READONLY_ENUM_AND_COLLECTION(a) '
609 @$(APPEND) $@.tmp '#define COM_INTERFACE_ENTRY(a) '
610 @$(APPEND) $@.tmp '#define COMGETTER(n) Get##n '
611 @$(APPEND) $@.tmp '#define COMSETTER(n) Set##n '
612 @$(APPEND) $@.tmp '#define ComSafeArrayIn(t,a) t a[] '
613 @$(APPEND) $@.tmp '#define ComSafeArrayOut(t,a) t * a[] '
614 @$(APPEND) $@.tmp '#define DECLARE_NOT_AGGREGATABLE(a) '
615 @$(APPEND) $@.tmp '#define DECLARE_PROTECT_FINAL_CONSTRUCT(a) '
616 @$(APPEND) $@.tmp '#define NS_DECL_ISUPPORTS '
617 @$(APPEND) $@.tmp '#define NS_IMETHOD NS_IMETHOD_(nsresult) '
618 @$(APPEND) $@.tmp '#define NS_IMETHOD_(type) type '
619 @$(APPEND) $@.tmp '#define PARSERS_EXPORT '
620 @$(APPEND) $@.tmp '#define STDMETHOD(a) NS_IMETHOD a '
621
622 @$(APPEND) $@.tmp '#define CTX_SUFF(var) var##R3 '
623 @$(APPEND) $@.tmp '#define CTXAllSUFF(var) var##R3 '
624 @$(APPEND) $@.tmp '#define CTXSUFF(var) var##HC '
625 @$(APPEND) $@.tmp '#define OTHERCTXSUFF(var) var##GC '
626 @$(APPEND) $@.tmp '#define CTXALLMID(first, last) first##R3##last '
627 @$(APPEND) $@.tmp '#define CTXMID(first, last) first##HC##last '
628 @$(APPEND) $@.tmp '#define OTHERCTXMID(first, last) first##GC##last '
629 @$(APPEND) $@.tmp '#define CTXTYPE(GCType, R3Type, R0Type) R3Type '
630 @$(APPEND) $@.tmp '#define RCTYPE(RCType, HCType) RCType '
631 @$(APPEND) $@.tmp '#define GCTYPE(GCType, HCType) GCType '
632 @$(APPEND) $@.tmp '#define RCPTRTYPE(RCType) RCType '
633 @$(APPEND) $@.tmp '#define GCPTRTYPE(GCType) GCType '
634 @$(APPEND) $@.tmp '#define HCPTRTYPE(HCType) HCType '
635 @$(APPEND) $@.tmp '#define R3R0PTRTYPE(HCType) HCType '
636 @$(APPEND) $@.tmp '#define R0PTRTYPE(R3Type) R3Type '
637 @$(APPEND) $@.tmp '#define R3PTRTYPE(R0Type) R0Type '
638 @$(APPEND) $@.tmp '#define RT_SRC_POS __FILE__, __LINE__, __PRETTY_FUNCTION__ '
639 @$(APPEND) $@.tmp '#define RT_SRC_POS_DECL const char *pszFile, unsigned iLine, const char *pszFunction '
640 @$(APPEND) $@.tmp '#define RT_SRC_POS_ARGS pszFile, iLine, pszFunction '
641 @$(APPEND) $@.tmp '#define RTCALL'
642 @$(APPEND) $@.tmp '#define DECLINLINE(type) inline type '
643
644 @$(APPEND) $@.tmp '#define PDMDEVINSINT_DECLARED 1'
645 @$(APPEND) $@.tmp '#define VBOXCALL'
646
647 $(SED) -e '/__cdecl/d' \
648 -e '/^ *# *define.*DECL/!d' \
649 -e '/DECLS/d' \
650 -e '/DECLARE_CLS_/d' \
651 -e '/_SRC_POS_DECL/d' \
652 -e '/declspec/d' \
653 -e '/__attribute__/d' \
654 -e 's/# */#/g' \
655 -e 's/ */ /g' \
656 -e '/(type) DECLEXPORT/d' \
657 -e '/ DECLEXPORT_CLASS/d' \
658 -e 's/ *VBOXCALL//' \
659 -e 's/ *RTCALL//' \
660 -e 's/(type) DECLIMPORT(type)/(type) type/' \
661 -e '/ DECLASM(type) type/d' \
662 -e '/define *DECL..CALLBACKMEMBER(type[^)]*) *RT/d' \
663 -e '/define *DECLINLINE(type)/d' \
664 -e '/define RT[DATGRC03]*DECL(type) *DECLHIDDEN(type)/d' \
665 \
666 --append $@.tmp \
667 $(filter-out include/VBox/err.h, $(wildcard include/VBox/*.h)) \
668 include/iprt/cdefs.h
669 $(CAT_EXT) $@.tmp | sort | $(SED_EXT) -e 's/$$/\n/' --output $@.tmp2
670 $(MV) -f $@.tmp2 $@
671 $(RM) -f $@.tmp $@.tmp2 $@.tmp3
672ifeq ($(KBUILD_HOST),win)
673 @$(ECHO) 'TODO: Merge vslick.h with your "$(HOMEDRIVE)$(HOMEPATH)\Documents\My SlickEdit Config\x.y.z\usercpp.h" file.'
674else
675 @$(ECHO) "TODO: Merge ./vslick.h with your ~/.slickedit/x.y.z/unxcpp.h file."
676endif
677
678
679#
680# Add fetching of the tools to the 'up[date][2]' targets.
681#
682up update up2 update2::
683ifndef VBOX_OSE
684 +$(MAKE) -C tools fetch
685else
686 $(MAKE) -C tools -f Makefile-ose.kmk fetch
687endif
688
689
690#
691# Build the additions, all of them.
692#
693# This is currently tailored (hardcoded) for the additions
694# build box. Can make it pretty and configurable later.
695#
696# The fetching must be done in serial fashion, while the building
697# should be more flexible wrt to -jN.
698#
699additions-fetch:
700 + $(KMK) -C tools fetch
701 + $(KMK) -C tools fetch KBUILD_TARGET_ARCH=amd64 KBUILD_TARGET=linux BUILD_TARGET_ARCH=amd64 BUILD_TARGET=linux
702 + $(KMK) -C tools fetch KBUILD_TARGET_ARCH=x86 KBUILD_TARGET=linux BUILD_TARGET_ARCH=x86 BUILD_TARGET=linux
703# + $(KMK) -C tools fetch KBUILD_TARGET_ARCH=x86 KBUILD_TARGET=os2 BUILD_TARGET_ARCH=x86 BUILD_TARGET=os2
704 + $(KMK) -C tools fetch KBUILD_TARGET_ARCH=amd64 KBUILD_TARGET=solaris BUILD_TARGET_ARCH=amd64 BUILD_TARGET=solaris
705 + $(KMK) -C tools fetch KBUILD_TARGET_ARCH=x86 KBUILD_TARGET=solaris BUILD_TARGET_ARCH=x86 BUILD_TARGET=solaris
706 + $(KMK) -C tools fetch KBUILD_TARGET_ARCH=amd64 KBUILD_TARGET=win BUILD_TARGET_ARCH=amd64 BUILD_TARGET=win
707 + $(KMK) -C tools fetch KBUILD_TARGET_ARCH=x86 KBUILD_TARGET=win BUILD_TARGET_ARCH=x86 BUILD_TARGET=win
708
709
710## @todo Currently combined solaris additions building assumes that amd64 is
711# built first. Do not change the order of dependencies here without testing.
712additions-build: \
713 additions-build-win.amd64 \
714 additions-build-win.x86 \
715 additions-build-solaris.amd64 \
716 additions-build-solaris.x86 \
717 additions-build-os2.x86 \
718 additions-build-linux.amd64 \
719 additions-build-linux.x86
720
721VBOX_ADDITIONS_BUILD.amd64 = VBOX_ONLY_ADDITIONS=1 VBOX_WITHOUT_ADDITIONS_ISO=1 \
722 KBUILD_TYPE=$(KBUILD_TYPE) BUILD_TYPE=$(KBUILD_TYPE) \
723 KBUILD_TARGET_ARCH=amd64 BUILD_TARGET_ARCH=amd64 \
724 VBOX_SVN_REV=$(VBOX_SVN_REV) \
725 all packing
726
727VBOX_ADDITIONS_BUILD.x86 = VBOX_ONLY_ADDITIONS=1 VBOX_WITHOUT_ADDITIONS_ISO=1 \
728 KBUILD_TYPE=$(KBUILD_TYPE) BUILD_TYPE=$(KBUILD_TYPE) \
729 KBUILD_TARGET_ARCH=x86 BUILD_TARGET_ARCH=x86 \
730 VBOX_SVN_REV=$(VBOX_SVN_REV) \
731 all packing
732
733# Automatically determine the additions build subdir name. Used for figuring
734# out directory names inside the additions building VMs.
735VBOX_ADDITIONS_BUILD_SUBDIRNAME := $(lastword $(subst /, ,$(PATH_ROOT)))
736
737VBOX_KMK_TIME = $(KBUILD_BIN_PATH)/kmk_time
738
739# Oh well, this gets really fancy - ms vc8 doesn't work inside ssh due to some
740# session setup issue. So do this indirectly through psexec. The downside is
741# that there is no direct build feedback. Also I couldn't get the share to
742# work via psexec, so rsync over the result of the build.
743additions-build-win.amd64:
744ifeq ($(KBUILD_TARGET),win)
745 + $(VBOX_KMK_TIME) $(KMK) $(VBOX_ADDITIONS_BUILD.amd64)
746else
747 $(call MSG_L1,Building Windows/amd64 additions)
748 rsync -av --no-owner --no-group --delete --delete-excluded --exclude .svn/ --exclude out/ --exclude tinderclient.log . 192.168.27.5:/cygdrive/e/$(VBOX_ADDITIONS_BUILD_SUBDIRNAME)
749 $(VBOX_KMK_TIME) ssh vbox@192.168.27.5 c:/psexec/psexec.exe \\\\\\\\addvm -u vbox -p $(WIN64PASSWORD) c:\\\\cygwin\\\\bin\\\\bash.exe -c \''PATH=/usr/bin:/bin e:/$(VBOX_ADDITIONS_BUILD_SUBDIRNAME)/tools/env.sh kmk $(VBOX_ADDITIONS_BUILD.amd64) > e:/$(VBOX_ADDITIONS_BUILD_SUBDIRNAME).log 2>&1'\'; \
750 rc=$$?; \
751 rsync -av --delete 192.168.27.5:/cygdrive/e/$(VBOX_ADDITIONS_BUILD_SUBDIRNAME)/out/win.amd64/ out/win.amd64; \
752 mkdir -p out/win.amd64; \
753 rsync -a --delete 192.168.27.5:/cygdrive/e/$(VBOX_ADDITIONS_BUILD_SUBDIRNAME).log out/win.amd64/build.log; \
754 cat out/win.amd64/build.log; \
755 exit $$rc
756endif
757
758additions-build-win.x86:
759ifeq ($(KBUILD_TARGET),win)
760 + $(VBOX_KMK_TIME) $(KMK) $(VBOX_ADDITIONS_BUILD.x86)
761else
762 $(call MSG_L1,Building Windows/x86 additions)
763 rsync -av --no-owner --no-group --delete --delete-excluded --exclude .svn/ --exclude out/ --exclude tinderclient.log . 192.168.27.5:/cygdrive/e/$(VBOX_ADDITIONS_BUILD_SUBDIRNAME)
764 $(VBOX_KMK_TIME) ssh vbox@192.168.27.5 " cd /cygdrive/e/$(VBOX_ADDITIONS_BUILD_SUBDIRNAME) && PATH_OUT_BASE=Z:/$(VBOX_ADDITIONS_BUILD_SUBDIRNAME)/out tools/env.sh kmk $(VBOX_ADDITIONS_BUILD.x86)"
765endif
766
767additions-build-solaris.amd64:
768ifeq ($(KBUILD_TARGET),solaris)
769 + $(VBOX_KMK_TIME) $(KMK) $(VBOX_ADDITIONS_BUILD.amd64)
770else
771 $(call MSG_L1,Building Solaris/amd64 additions)
772 $(VBOX_KMK_TIME) ssh vbox@192.168.27.4 " cd /mnt/vbox/$(VBOX_ADDITIONS_BUILD_SUBDIRNAME) && ./tools/env.sh --no-wine kmk $(VBOX_ADDITIONS_BUILD.amd64) "
773endif
774
775# ASSUMES 64-bit is built already. See @todo above.
776additions-build-solaris.x86:
777ifeq ($(KBUILD_TARGET),solaris)
778 + $(VBOX_KMK_TIME) $(KMK) $(VBOX_ADDITIONS_BUILD.x86) VBOX_WITH_COMBINED_SOLARIS_GUEST_PACKAGE=1
779else
780 $(call MSG_L1,Building Solaris/x86 additions)
781 $(VBOX_KMK_TIME) ssh vbox@192.168.27.4 " cd /mnt/vbox/$(VBOX_ADDITIONS_BUILD_SUBDIRNAME) && ./tools/env.sh --no-wine kmk $(VBOX_ADDITIONS_BUILD.x86) VBOX_WITH_COMBINED_SOLARIS_GUEST_PACKAGE=1"
782endif
783
784additions-build-os2.x86:
785#ifeq ($(KBUILD_TARGET),os2)
786# + $(VBOX_KMK_TIME) $(KMK) $(VBOX_ADDITIONS_BUILD.x86)
787#else
788# $(VBOX_KMK_TIME) ssh vbox@192.168.27.3 " cd /mnt/vbox/$(VBOX_ADDITIONS_BUILD_SUBDIRNAME) && ./tools/env.sh --no-wine kmk $(VBOX_ADDITIONS_BUILD.x86) "
789#endif
790
791additions-build-linux.amd64:
792ifeq ($(KBUILD_TARGET).$(KBUILD_TARGET_ARCH),linux.amd64)
793 + $(VBOX_KMK_TIME) $(KMK) $(VBOX_ADDITIONS_BUILD.amd64)
794else
795 $(call MSG_L1,Building Linux/amd64 additions)
796 $(VBOX_KMK_TIME) ssh vbox@192.168.27.12 " cd /mnt/vbox/$(VBOX_ADDITIONS_BUILD_SUBDIRNAME) && ./tools/env.sh --no-wine kmk $(VBOX_ADDITIONS_BUILD.amd64) "
797endif
798
799additions-build-linux.x86:
800ifeq ($(KBUILD_TARGET).$(KBUILD_TARGET_ARCH),linux.x86)
801 + $(VBOX_KMK_TIME) $(KMK) $(VBOX_ADDITIONS_BUILD.x86)
802else
803 $(call MSG_L1,Building Linux/x86 additions)
804 $(VBOX_KMK_TIME) ssh vbox@192.168.27.2 " cd /mnt/vbox/$(VBOX_ADDITIONS_BUILD_SUBDIRNAME) && ./tools/env.sh --no-wine kmk $(VBOX_ADDITIONS_BUILD.x86) "
805endif
806
807
808additions-packing:
809 + $(KMK) VBOX_ONLY_ADDITIONS=1 \
810 VBOX_WITH_ADDITIONS_ISO.freebsd.amd64= \
811 VBOX_WITH_ADDITIONS_ISO.freebsd.x86= \
812 VBOX_WITH_ADDITIONS_ISO.linux.amd64=1 \
813 VBOX_WITH_ADDITIONS_ISO.linux.x86=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
823
824#
825# Aliases for building the SDK.
826#
827.NOTPARALLEL: sdk sdk-fetch
828sdk:
829 + $(KMK) VBOX_ONLY_SDK=1 \
830 pass_bldprogs pass_others pass_installs pass_packing
831
832sdk-fetch:
833 + $(KMK) KBUILD_TARGET=win KBUILD_TARGET_ARCH=x86 -C tools fetch
834
835
836
837
838#
839# Generate VirtualBox-OSE-x.x.x.tar.bz2 tarballs for distribution
840#
841# - includes kBuild
842# - must be executed on an OSE checkout
843#
844
845# the path where to store the tarball
846TARBALLPATH ?= $(shell cd $(PATH_ROOT)/..; pwd)
847#TARBALLPATH ?= $(abspath $(PATH_ROOT)/..) - this should also do the trick without spawning a shell.
848# the root directory inside the tarball
849TARBALLROOT ?= VirtualBox-$(VBOX_VERSION_STRING)
850# the name of the tarball file
851TARBALLNAME ?= VirtualBox-$(VBOX_VERSION_STRING).tar.bz2
852snapshot:
853 @$(call MSG_L1,Creating tarball $(TARBALLPATH)/$(TARBALLNAME))
854 @if [ -d "$(PATH_ROOT)/src/VBox/Devices/USB" ]; then echo; echo "Found USB stuff, refused to build OSE tarball!"; echo; exit 1; fi
855 $(QUIET)$(MKDIR) -p $(TARBALLPATH)
856 $(QUIET)$(RM) -f $(wildcard $(TARBALLPATH)/VirtualBox*)
857 $(QUIET)$(LN_SYMLINK) $(PATH_ROOT) $(TARBALLPATH)/$(TARBALLROOT)
858 $(QUIET)tar -cjh --owner 0 --group 0 --totals \
859 --exclude=.svn \
860 --exclude=$(TARBALLROOT)/out \
861 --exclude=$(TARBALLROOT)/env.sh \
862 --exclude=$(TARBALLROOT)/configure.log \
863 --exclude=$(TARBALLROOT)/AutoConfig.kmk \
864 --exclude=$(TARBALLROOT)/LocalConfig.kmk \
865 -C $(TARBALLPATH) \
866 -f $(TARBALLPATH)/$(TARBALLNAME) \
867 $(TARBALLROOT)
868 $(QUIET)$(RM) $(TARBALLPATH)/$(TARBALLROOT)
869
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