VirtualBox

root/trunk/Makefile.kmk

Revision 12952, 30.6 kB (checked in by vboxsync, 2 weeks ago)

root/Makefile: libqtaccessiblewidgets.dylib.

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

© 2008 Sun Microsystems, Inc.
ContactPrivacy policy