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