1 | # $Id: Makefile.kmk 8155 2008-04-18 15:16:47Z 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 | DEPTH = .
|
---|
23 | include $(PATH_KBUILD)/header.kmk
|
---|
24 |
|
---|
25 | ifdef VBOX_WITH_DOCS
|
---|
26 | ifndef VBOX_ONLY_ADDITIONS
|
---|
27 | SUBDIRS = doc/manual
|
---|
28 | endif
|
---|
29 | endif
|
---|
30 | SUBDIRS += src
|
---|
31 |
|
---|
32 | ifndef VBOX_ONLY_ADDITIONS
|
---|
33 | #
|
---|
34 | # Install external binaries (mostly redistributable parts of tools we use).
|
---|
35 | # This must be done *before* we build the manual.
|
---|
36 | #
|
---|
37 | # To avoid dragging in unnecessary tools and sdks here, we don't use the .win
|
---|
38 | # and .linux property suffixes.
|
---|
39 | #
|
---|
40 | INSTALLS = bin
|
---|
41 |
|
---|
42 | bin_INST = $(INST_BIN)
|
---|
43 |
|
---|
44 | # The SDL DLLs
|
---|
45 | if1of ($(BUILD_TARGET), win os2)
|
---|
46 | ifneq ($(VBOX_WITH_VBOXSDL)$(VBOX_WITH_VBOXBFE),)
|
---|
47 | include $(PATH_KBUILD)/sdks/LIBSDL.kmk
|
---|
48 | bin_SOURCES += \
|
---|
49 | $(DLL_SDK_LIBSDL_SDL)
|
---|
50 | ifdef VBOX_WITH_SECURELABEL
|
---|
51 | bin_SOURCES += \
|
---|
52 | $(DLL_SDK_LIBSDL_SDLTTF)
|
---|
53 | endif
|
---|
54 | ifeq ($(BUILD_TARGET),os2)
|
---|
55 | bin_SOURCES += \
|
---|
56 | $(DLL_SDK_LIBSDL_FSLIB)
|
---|
57 | endif
|
---|
58 | endif
|
---|
59 | endif
|
---|
60 |
|
---|
61 |
|
---|
62 | # The Qt DLLs.
|
---|
63 | ifneq ($(VBOX_WITH_QTGUI),)
|
---|
64 | if1of ($(BUILD_TARGET), win os2)
|
---|
65 | #include $(PATH_KBUILD)/sdks/QT3.kmk
|
---|
66 | #bin_SOURCES += \
|
---|
67 | # $(DLL_SDK_QT3_QT)
|
---|
68 | ifneq ($(strip $(VBOX_DLL_QT)),)
|
---|
69 | bin_SOURCES += \
|
---|
70 | $(VBOX_DLL_QT)=>$(not-dir $(VBOX_DLL_QT))
|
---|
71 | endif
|
---|
72 | ifdef VBOX_QT_BINARIES
|
---|
73 | bin_SOURCES += $(VBOX_QT_BINARIES)
|
---|
74 | endif
|
---|
75 | else ifeq ($(VBOX_MUST_INSTALL_LIB_QT),1)
|
---|
76 | bin_SOURCES += \
|
---|
77 | $(LIB_QT)
|
---|
78 | endif
|
---|
79 | endif
|
---|
80 |
|
---|
81 |
|
---|
82 | # The compiler runtime DLLs.
|
---|
83 | ifeq ($(BUILD_TARGET).$(VBOX_WITHOUT_COMPILER_REDIST),win.)
|
---|
84 | ifdef VBOX_USE_VCC80
|
---|
85 | include $(PATH_KBUILD)/tools/VCC80X86.kmk
|
---|
86 | include $(PATH_KBUILD)/tools/VCC80AMD64.kmk
|
---|
87 | bin_SOURCES.x86 += \
|
---|
88 | $(PATH_TOOL_VCC80X86)/redist/x86/Microsoft.VC80.CRT/Microsoft.VC80.CRT.manifest=>Microsoft.VC80.CRT/Microsoft.VC80.CRT.manifest \
|
---|
89 | $(PATH_TOOL_VCC80X86)/redist/x86/Microsoft.VC80.CRT/msvcr80.dll=>Microsoft.VC80.CRT/msvcr80.dll \
|
---|
90 | $(PATH_TOOL_VCC80X86)/redist/x86/Microsoft.VC80.CRT/msvcp80.dll=>Microsoft.VC80.CRT/msvcp80.dll \
|
---|
91 | $(PATH_TOOL_VCC80X86)/redist/x86/Microsoft.VC80.CRT/Microsoft.VC80.CRT.manifest=>testcase/Microsoft.VC80.CRT/Microsoft.VC80.CRT.manifest \
|
---|
92 | $(PATH_TOOL_VCC80X86)/redist/x86/Microsoft.VC80.CRT/msvcr80.dll=>testcase/Microsoft.VC80.CRT/msvcr80.dll \
|
---|
93 | $(PATH_TOOL_VCC80X86)/redist/x86/Microsoft.VC80.CRT/msvcp80.dll=>testcase/Microsoft.VC80.CRT/msvcp80.dll
|
---|
94 | bin_SOURCES.amd64 += \
|
---|
95 | $(PATH_TOOL_VCC80AMD64)/redist/amd64/Microsoft.VC80.CRT/Microsoft.VC80.CRT.manifest=>Microsoft.VC80.CRT/Microsoft.VC80.CRT.manifest \
|
---|
96 | $(PATH_TOOL_VCC80AMD64)/redist/amd64/Microsoft.VC80.CRT/msvcr80.dll=>Microsoft.VC80.CRT/msvcr80.dll \
|
---|
97 | $(PATH_TOOL_VCC80AMD64)/redist/amd64/Microsoft.VC80.CRT/msvcp80.dll=>Microsoft.VC80.CRT/msvcp80.dll \
|
---|
98 | $(PATH_TOOL_VCC80AMD64)/redist/amd64/Microsoft.VC80.CRT/Microsoft.VC80.CRT.manifest=>testcase/Microsoft.VC80.CRT/Microsoft.VC80.CRT.manifest \
|
---|
99 | $(PATH_TOOL_VCC80AMD64)/redist/amd64/Microsoft.VC80.CRT/msvcr80.dll=>testcase/Microsoft.VC80.CRT/msvcr80.dll \
|
---|
100 | $(PATH_TOOL_VCC80AMD64)/redist/amd64/Microsoft.VC80.CRT/msvcp80.dll=>testcase/Microsoft.VC80.CRT/msvcp80.dll
|
---|
101 | endif
|
---|
102 | ifndef VBOX_USE_VCC80
|
---|
103 | VBOX_INSTALL_VCC70_RT = 1
|
---|
104 | endif
|
---|
105 | ifeq ($(BUILD_TARGET).$(BUILD_TARGET_ARCH),win.x86)
|
---|
106 | VBOX_INSTALL_VCC70_RT = 1
|
---|
107 | endif
|
---|
108 | ifdef VBOX_INSTALL_VCC70_RT
|
---|
109 | include $(PATH_KBUILD)/tools/VCC70.kmk
|
---|
110 | ## @todo Move these defines to VCC70.
|
---|
111 | DLL_TOOL_VCC70_MSVCR71 ?= $(PATH_TOOL_VCC70)/bin/msvcr71.dll
|
---|
112 | ifneq ($(wildcard $(DLL_TOOL_VCC70_MSVCR71)),)
|
---|
113 | bin_SOURCES += \
|
---|
114 | $(DLL_TOOL_VCC70_MSVCR71)=>msvcr71.dll \
|
---|
115 | $(DLL_TOOL_VCC70_MSVCR71)=>testcase/msvcr71.dll
|
---|
116 | endif
|
---|
117 | DLL_TOOL_VCC70_MSVCP71 ?= $(PATH_TOOL_VCC70)/bin/msvcp71.dll
|
---|
118 | ifneq ($(wildcard $(DLL_TOOL_VCC70_MSVCP71)),)
|
---|
119 | bin_SOURCES += \
|
---|
120 | $(DLL_TOOL_VCC70_MSVCP71)=>msvcp71.dll \
|
---|
121 | $(DLL_TOOL_VCC70_MSVCP71)=>testcase/msvcp71.dll
|
---|
122 | endif
|
---|
123 | DLL_TOOL_VCC70_MSVCRT ?= $(PATH_TOOL_VCC70)/bin/msvcrt.dll
|
---|
124 | ifneq ($(wildcard $(DLL_TOOL_VCC70_MSVCRT)),)
|
---|
125 | bin_SOURCES += \
|
---|
126 | $(DLL_TOOL_VCC70_MSVCRT)=>msvcrt.dll \
|
---|
127 | $(DLL_TOOL_VCC70_MSVCRT)=>testcase/msvcrt.dll
|
---|
128 | endif
|
---|
129 | endif
|
---|
130 | endif
|
---|
131 |
|
---|
132 |
|
---|
133 | #
|
---|
134 | # Install additions iso from the build server.
|
---|
135 | # The $(CP)/$(RM) stuff can be replaced by a simple $(TOUCH) once that has
|
---|
136 | # been added to kBuild.
|
---|
137 | #
|
---|
138 | ## @todo need kmk_builtin_touch!
|
---|
139 | ifdef VBOX_WITH_ADDITIONS_FROM_BUILD_SERVER
|
---|
140 | INSTALLS += buildserver-additions
|
---|
141 | buildserver-additions_INST = $(INST_ADDITIONS)
|
---|
142 | buildserver-additions_MODE = 0644
|
---|
143 | buildserver-additions_SOURCES = $(PATH_TARGET)/VBoxGuestAdditions.iso
|
---|
144 | buildserver-additions_CLEANS = $(PATH_TARGET)/VBoxGuestAdditions.iso $(PATH_TARGET)/VBoxGuestAdditions.iso.tmp
|
---|
145 |
|
---|
146 | $(PATH_TARGET)/VBoxGuestAdditions.iso: $(VBOX_SVN_REV_KMK) $(PATH_DEVTOOLS)/bin/additions.sh | $(call DIRDEP, $(PATH_TARGET))
|
---|
147 | $(RM) -f $(PATH_TARGET)/VBoxGuestAdditions.iso $(PATH_TARGET)/VBoxGuestAdditions.iso.tmp
|
---|
148 | # $(PATH_DEVTOOLS)/bin/additions.sh --cmd fetch --filename $(PATH_TARGET)/VBoxGuestAdditions.iso.tmp
|
---|
149 | $(KMK) --affinity 1 -f $(MAKEFILE) buildserver-additions-affinity-hack
|
---|
150 | $(CP) -f $(PATH_TARGET)/VBoxGuestAdditions.iso.tmp $(PATH_TARGET)/VBoxGuestAdditions.iso
|
---|
151 | $(RM) -f $(PATH_TARGET)/VBoxGuestAdditions.iso.tmp
|
---|
152 | $(QUIET)$(APPEND) $@ done
|
---|
153 |
|
---|
154 | buildserver-additions-affinity-hack:
|
---|
155 | $(SHELL) $(PATH_DEVTOOLS)/bin/additions.sh --cmd fetch --filename $(PATH_TARGET)/VBoxGuestAdditions.iso.tmp
|
---|
156 | endif
|
---|
157 |
|
---|
158 |
|
---|
159 | #
|
---|
160 | # Install staged binaries on platforms where we can't cross
|
---|
161 | # compile things.
|
---|
162 | #
|
---|
163 | ifn1of ($(BUILD_TARGET), l4 linux win)
|
---|
164 | VBOX_PATH_STAGED ?= .
|
---|
165 |
|
---|
166 | # Additions.
|
---|
167 | ifndef VBOX_WITH_LINUX_ADDITIONS
|
---|
168 | ifndef VBOX_WITH_WIN32_ADDITIONS
|
---|
169 | ifneq ($(wildcard $(VBOX_PATH_STAGED)/VBoxGuestAdditions.iso),)
|
---|
170 | INSTALLS += staged-additions
|
---|
171 | staged-additions_INST = $(INST_ADDITIONS)
|
---|
172 | staged-additions_MODE = 0644
|
---|
173 | staged-additions_SOURCES = $(VBOX_PATH_STAGED)/VBoxGuestAdditions.iso
|
---|
174 | endif
|
---|
175 | endif
|
---|
176 | endif
|
---|
177 |
|
---|
178 | # guesttool.exe
|
---|
179 | ifndef VBOX_WITH_WIN32_ADDITIONS
|
---|
180 | ifneq ($(wildcard $(VBOX_PATH_STAGED)/guesttool.exe),)
|
---|
181 | INSTALLS += staged-guesttool
|
---|
182 | staged-guesttool_INST = $(INST_BIN)
|
---|
183 | staged-guesttool_SOURCES = $(VBOX_PATH_STAGED)/guesttool.exe
|
---|
184 | endif
|
---|
185 | endif
|
---|
186 |
|
---|
187 | endif
|
---|
188 |
|
---|
189 | endif # !VBOX_ONLY_ADDITIONS
|
---|
190 |
|
---|
191 |
|
---|
192 | include $(PATH_KBUILD)/footer.kmk
|
---|
193 |
|
---|
194 |
|
---|
195 | #
|
---|
196 | # Generate documentation.
|
---|
197 | # (This should be converted into a separate pass or merged with an existing one later.)
|
---|
198 | #
|
---|
199 | docs: docs.Core
|
---|
200 | $(KMK) -C src/VBox/Main docs
|
---|
201 | $(KMK) -C src/VBox/Runtime docs
|
---|
202 |
|
---|
203 | docs.Core: $(PATH_TARGET)/docs.Core
|
---|
204 |
|
---|
205 |
|
---|
206 |
|
---|
207 | #
|
---|
208 | # The core (VMM+REM+Devices+Main) documentation.
|
---|
209 | #
|
---|
210 | # This includes so much because we wish to have the complete CFGM
|
---|
211 | # and GCFGM lists.
|
---|
212 | #
|
---|
213 | OTHER_CLEAN += \
|
---|
214 | $(PATH_TARGET)/Doxyfile \
|
---|
215 | $(PATH_TARGET)/Doxyfile.dep
|
---|
216 |
|
---|
217 | DOXYGEN_INPUT_DIRS = \
|
---|
218 | include/iprt \
|
---|
219 | include/VBox \
|
---|
220 | include/VBox/com \
|
---|
221 | include/VBox/HostServices \
|
---|
222 | src/VBox/VMM \
|
---|
223 | src/VBox/VMM/VMMR0 \
|
---|
224 | src/VBox/VMM/VMMGC \
|
---|
225 | src/VBox/VMM/VMMAll \
|
---|
226 | src/VBox/VMM/PATM \
|
---|
227 | src/VBox/VMM/PATM/VMMR0 \
|
---|
228 | src/VBox/VMM/PATM/VMMGC \
|
---|
229 | src/VBox/VMM/PATM/VMMAll \
|
---|
230 | src/VBox/VMM/VMMSwitcher \
|
---|
231 | src/VBox/Debugger \
|
---|
232 | src/VBox/Devices/ \
|
---|
233 | src/VBox/Devices/Audio \
|
---|
234 | src/VBox/Devices/Bus \
|
---|
235 | src/VBox/Devices/Graphics \
|
---|
236 | src/VBox/Devices/Graphics/BIOS \
|
---|
237 | src/VBox/Devices/Input \
|
---|
238 | src/VBox/Devices/Networking \
|
---|
239 | src/VBox/Devices/PC \
|
---|
240 | src/VBox/Devices/PC/BIOS \
|
---|
241 | src/VBox/Devices/Parallel \
|
---|
242 | src/VBox/Devices/Serial \
|
---|
243 | src/VBox/Devices/Storage \
|
---|
244 | src/VBox/Devices/VBoxHDDFormats \
|
---|
245 | src/VBox/Devices/VBoxHDDFormats/StorageCraft \
|
---|
246 | src/VBox/Devices/USB \
|
---|
247 | src/VBox/Devices/USB/darwin \
|
---|
248 | src/VBox/Devices/USB/linux \
|
---|
249 | src/VBox/Devices/USB/os2 \
|
---|
250 | src/VBox/Devices/USB/solaris \
|
---|
251 | src/VBox/Devices/USB/vrdp \
|
---|
252 | src/VBox/Devices/USB/win32 \
|
---|
253 | src/VBox/Devices/VMMDev \
|
---|
254 | src/VBox/Main/include \
|
---|
255 | src/VBox/Main/include/hgcm \
|
---|
256 | src/VBox/Main/ \
|
---|
257 | src/VBox/Main/glue \
|
---|
258 | src/VBox/Main/hgcm \
|
---|
259 | src/VBox/Main/webservice \
|
---|
260 | src/VBox/Main/xml \
|
---|
261 | src/VBox/Main/darwin \
|
---|
262 | src/VBox/Main/linux \
|
---|
263 | src/VBox/Main/os2 \
|
---|
264 | src/VBox/Main/solaris \
|
---|
265 | src/VBox/Main/win32 \
|
---|
266 | src/VBox/HostServices/ \
|
---|
267 | src/VBox/HostServices/SharedClipboard \
|
---|
268 | src/VBox/HostServices/SharedFolders \
|
---|
269 | src/VBox/HostServices/SharedOpenGL \
|
---|
270 | src/VBox/HostDrivers/Support \
|
---|
271 | src/VBox/HostDrivers/Support/darwin \
|
---|
272 | src/VBox/HostDrivers/Support/freebsd \
|
---|
273 | src/VBox/HostDrivers/Support/l4 \
|
---|
274 | src/VBox/HostDrivers/Support/linux \
|
---|
275 | src/VBox/HostDrivers/Support/os2 \
|
---|
276 | src/VBox/HostDrivers/Support/solaris \
|
---|
277 | src/VBox/HostDrivers/Support/win \
|
---|
278 | src/VBox/HostDrivers/VBoxTAP/ \
|
---|
279 | src/VBox/HostDrivers/VBoxTAP/win \
|
---|
280 | src/VBox/HostDrivers/VBoxTAP/darwin \
|
---|
281 | src/VBox/HostDrivers/VBoxUSB/ \
|
---|
282 | src/VBox/HostDrivers/VBoxUSB/darwin \
|
---|
283 | src/VBox/HostDrivers/VBoxUSB/os2 \
|
---|
284 | src/VBox/HostDrivers/VBoxUSB/win \
|
---|
285 | src/VBox/HostDrivers/VBoxUSB/win/Device \
|
---|
286 | src/VBox/HostDrivers/VBoxUSB/win/Device/amd64 \
|
---|
287 | src/VBox/HostDrivers/VBoxUSB/win/Device/x86 \
|
---|
288 | src/VBox/HostDrivers/VBoxUSB/win/Filter \
|
---|
289 | src/VBox/HostDrivers/VBoxUSB/win/Install \
|
---|
290 | src/VBox/HostDrivers/VBoxUSB/win/Monitor \
|
---|
291 | src/VBox/HostDrivers/VBoxUSB/win/Monitor/win32 \
|
---|
292 | src/VBox/HostDrivers/VBoxUSB/win/Monitor/win64 \
|
---|
293 | src/VBox/HostDrivers/VBoxUSB/win/usbd \
|
---|
294 |
|
---|
295 | # These must come first in order to make things look nice.
|
---|
296 | DOXYGEN_INPUT_FIRST =\
|
---|
297 | $(PATH_ROOT)/doc/VBox-doc.c \
|
---|
298 | $(PATH_ROOT)/doc/VBox-CodingGuidelines.cpp \
|
---|
299 | $(PATH_ROOT)/src/VBox/VMM/VMMCodingGuidelines.cpp \
|
---|
300 | $(PATH_ROOT)/src/VBox/VMM/VMMDocsRawMode.cpp \
|
---|
301 | $(PATH_ROOT)/include/VBox/cdefs.h \
|
---|
302 | $(PATH_ROOT)/include/VBox/vmapi.h \
|
---|
303 | $(PATH_ROOT)/include/VBox/vmm.h \
|
---|
304 | $(PATH_ROOT)/include/VBox/cpum.h \
|
---|
305 | $(PATH_ROOT)/include/VBox/mm.h \
|
---|
306 | $(PATH_ROOT)/include/VBox/pgm.h \
|
---|
307 | $(PATH_ROOT)/include/VBox/selm.h \
|
---|
308 | $(PATH_ROOT)/include/VBox/trpm.h \
|
---|
309 | $(PATH_ROOT)/include/VBox/patm.h \
|
---|
310 | $(PATH_ROOT)/include/VBox/dbgf.h \
|
---|
311 | $(PATH_ROOT)/include/VBox/stam.h \
|
---|
312 | $(PATH_ROOT)/include/VBox/em.h \
|
---|
313 | $(PATH_ROOT)/include/VBox/pdm.h \
|
---|
314 | $(PATH_ROOT)/include/VBox/rem.h \
|
---|
315 | $(PATH_ROOT)/include/VBox/iom.h \
|
---|
316 | $(PATH_ROOT)/include/VBox/cfgm.h \
|
---|
317 | $(PATH_ROOT)/include/VBox/tm.h \
|
---|
318 | $(PATH_ROOT)/include/VBox/csam.h \
|
---|
319 | $(PATH_ROOT)/include/VBox/ssm.h \
|
---|
320 | $(PATH_ROOT)/include/VBox/hwaccm.h \
|
---|
321 | $(PATH_ROOT)/include/VBox/hwacc_svm.h \
|
---|
322 | $(PATH_ROOT)/include/VBox/hwacc_vmx.h \
|
---|
323 | $(PATH_ROOT)/\
|
---|
324 | $(PATH_ROOT)/src/VBox/VMM/CFGMInternal.h \
|
---|
325 | $(PATH_ROOT)/src/VBox/VMM/CPUMInternal.h \
|
---|
326 | $(PATH_ROOT)/src/VBox/VMM/DBGFInternal.h \
|
---|
327 | $(PATH_ROOT)/src/VBox/VMM/EMInternal.h \
|
---|
328 | $(PATH_ROOT)/src/VBox/VMM/HWACCMInternal.h \
|
---|
329 | $(PATH_ROOT)/src/VBox/VMM/IOMInternal.h \
|
---|
330 | $(PATH_ROOT)/src/VBox/VMM/MMInternal.h \
|
---|
331 | $(PATH_ROOT)/src/VBox/VMM/PDMInternal.h \
|
---|
332 | $(PATH_ROOT)/src/VBox/VMM/PGMInternal.h \
|
---|
333 | $(PATH_ROOT)/src/VBox/VMM/PATM/CSAMInternal.h \
|
---|
334 | $(PATH_ROOT)/src/VBox/VMM/PATM/PATMInternal.h \
|
---|
335 | $(PATH_ROOT)/src/VBox/VMM/REMInternal.h \
|
---|
336 | $(PATH_ROOT)/src/VBox/VMM/SELMInternal.h \
|
---|
337 | $(PATH_ROOT)/src/VBox/VMM/SSMInternal.h \
|
---|
338 | $(PATH_ROOT)/src/VBox/VMM/STAMInternal.h \
|
---|
339 | $(PATH_ROOT)/src/VBox/VMM/TMInternal.h \
|
---|
340 | $(PATH_ROOT)/src/VBox/VMM/TRPMInternal.h \
|
---|
341 | $(PATH_ROOT)/src/VBox/VMM/VMInternal.h \
|
---|
342 | $(PATH_ROOT)/src/VBox/VMM/VMMInternal.h \
|
---|
343 | $(PATH_ROOT)/\
|
---|
344 | $(PATH_ROOT)/include/VBox/vm.h \
|
---|
345 | \
|
---|
346 | $(PATH_ROOT)/include/VBox/sup.h \
|
---|
347 | $(PATH_ROOT)/include/VBox/VBoxHDD.h \
|
---|
348 | $(PATH_ROOT)/include/VBox/types.h \
|
---|
349 | $(PATH_ROOT)/include/VBox/err.h \
|
---|
350 | $(PATH_ROOT)/include/VBox/x86.h \
|
---|
351 | $(PATH_ROOT)/include/VBox/cpumdis.h \
|
---|
352 | $(PATH_ROOT)/include/VBox/dbggui.h \
|
---|
353 | $(PATH_ROOT)/include/VBox/dis.h \
|
---|
354 | $(PATH_ROOT)/include/VBox/disopcode.h \
|
---|
355 | $(PATH_ROOT)/include/VBox/intnet.h \
|
---|
356 | $(PATH_ROOT)/include/VBox/settings.h \
|
---|
357 | $(PATH_ROOT)/include/VBox/pci.h \
|
---|
358 | $(PATH_ROOT)/include/VBox/scsi.h \
|
---|
359 | $(PATH_ROOT)/include/VBox/shflsvc.h \
|
---|
360 | $(PATH_ROOT)/include/VBox/hgcmsvc.h \
|
---|
361 | $(PATH_ROOT)/include/VBox/usb.h \
|
---|
362 | $(PATH_ROOT)/include/VBox/vusb.h \
|
---|
363 | $(PATH_ROOT)/\
|
---|
364 | $(PATH_ROOT)/include/VBox/log.h \
|
---|
365 | $(PATH_ROOT)/include/VBox/param.h \
|
---|
366 | $(PATH_ROOT)/include/VBox/version.h
|
---|
367 |
|
---|
368 | DOXYGEN_INPUT := \
|
---|
369 | $(filter-out %.cpp.h, $(sort $(wildcard $(addsuffix /*.h, $(DOXYGEN_INPUT_DIRS)))) ) \
|
---|
370 | $(foreach dir, $(DOXYGEN_INPUT_DIRS), $(wildcard $(dir)/*.cpp $(dir)/.c $(dir)/.asm))
|
---|
371 | DOXYGEN_INPUT := \
|
---|
372 | $(DOXYGEN_INPUT_FIRST) \
|
---|
373 | $(filter-out $(DOXYGEN_INPUT_FIRST), $(DOXYGEN_INPUT))
|
---|
374 |
|
---|
375 | # And some some additional stuff.
|
---|
376 | DOXYGEN_INPUT += \
|
---|
377 | $(PATH_ROOT)/src/recompiler/VBoxRecompiler.c \
|
---|
378 | $(PATH_ROOT)/src/recompiler/VBoxREMWrapper.cpp
|
---|
379 |
|
---|
380 |
|
---|
381 | DOXYGEN_OUTPUT = $(PATH_OUT)/docs/Core
|
---|
382 |
|
---|
383 | -include $(PATH_TARGET)/Doxyfile.dep
|
---|
384 |
|
---|
385 | # Generate the Doxyfile
|
---|
386 | $(PATH_TARGET)/Doxyfile: Doxyfile.Core \
|
---|
387 | $(comp-vars DOXYGEN_INPUT,DOXYGEN_INPUT_PREV,FORCE) \
|
---|
388 | $(comp-vars DOXYGEN_OUTPUT,DOXYGEN_OUTPUT_PREV,FORCE) \
|
---|
389 | | $(call DIRDEP, $(PATH_TARGET))
|
---|
390 | $(RM) -f $@ $@.tmp $(PATH_TARGET)/Doxyfile.dep
|
---|
391 | $(CP) -f Doxyfile.Core $@.tmp
|
---|
392 | $(APPEND) $@.tmp
|
---|
393 | $(APPEND) $@.tmp "OUTPUT_DIRECTORY = $(DOXYGEN_OUTPUT)"
|
---|
394 | $(APPEND) $@.tmp "WARN_LOGFILE = $(DOXYGEN_OUTPUT)/errors"
|
---|
395 | $(APPEND) $@.tmp "INCLUDE_PATH = $(PATH_ROOT)/include $(PATH_ROOT)/src/VBox/VMM $(PATH_ROOT)/src/VBox/Main/include "
|
---|
396 | $(APPEND) $@.tmp "INCLUDE_FILE_PATTERNS = *.cpp.h"
|
---|
397 | $(APPEND) $@.tmp
|
---|
398 | $(APPEND) $@.tmp "INPUT = $(DOXYGEN_INPUT)"
|
---|
399 | $(APPEND) $@.tmp
|
---|
400 | $(APPEND) $@.tmp "PREDEFINED += $(DEFS) $(DEFS.$(BUILD_TARGET)) $(DEFS.$(BUILD_TARGET_ARCH)) $(ARCH_BITS_DEFS)"
|
---|
401 | $(APPEND) $@.tmp "PREDEFINED += ARCH_BITS=HC_ARCH_BITS R3_ARCH_BITS=HC_ARCH_BITS R0_ARCH_BITS=HC_ARCH_BITS "
|
---|
402 | $(APPEND) $@.tmp
|
---|
403 | $(MV) -f $@.tmp $@
|
---|
404 | @$(APPEND) $(PATH_TARGET)/Doxyfile.dep "DOXYGEN_OUTPUT_PREV = $(DOXYGEN_OUTPUT)"
|
---|
405 | @$(APPEND) $(PATH_TARGET)/Doxyfile.dep "DOXYGEN_INPUT_PREV = $(DOXYGEN_INPUT)"
|
---|
406 |
|
---|
407 | # Create the output directory.
|
---|
408 | $(call DIRDEP, $(DOXYGEN_OUTPUT)):
|
---|
409 | $(MKDIR) -p $@
|
---|
410 |
|
---|
411 | # Do the actual job.
|
---|
412 | $(PATH_TARGET)/docs.Core: $(PATH_TARGET)/Doxyfile $(DOXYGEN_INPUT) | $(call DIRDEP, $(DOXYGEN_OUTPUT))
|
---|
413 | $(RM) -f $(wildcard $(DOXYGEN_OUTPUT)/html/*) $(PATH_TARGET)/docs.Core
|
---|
414 | doxygen $(PATH_TARGET)/Doxyfile
|
---|
415 | $(APPEND) $(PATH_TARGET)/docs.Core
|
---|
416 |
|
---|
417 |
|
---|
418 | #
|
---|
419 | # Generate x86.mac and err.mac.
|
---|
420 | #
|
---|
421 | incs:
|
---|
422 | $(SED) -f include/VBox/err.sed include/VBox/err.h > include/VBox/err.mac
|
---|
423 | echo '%include "iprt/err.mac"' >> include/VBox/err.mac
|
---|
424 | $(SED) -f include/VBox/err.sed include/iprt/err.h > include/iprt/err.mac
|
---|
425 | $(SED) -e '/__VBox_x86_h__/d' -e '/#define/!d' -e 's/#define/%define/' include/VBox/x86.h > include/VBox/x86.mac
|
---|
426 |
|
---|
427 |
|
---|
428 | #
|
---|
429 | # Generate Visual SlickEdit tagging #defines.
|
---|
430 | #
|
---|
431 | vslick.h: include/VBox/cdefs.h Makefile
|
---|
432 | echo '// autogenerated' > $@.tmp
|
---|
433 | #echo '#define __BEGIN_DECLS ' >> $@.tmp
|
---|
434 | #echo '#define __END_DECLS ' >> $@.tmp
|
---|
435 |
|
---|
436 | echo '#define ATL_NO_VTABLE ' >> $@.tmp
|
---|
437 | echo '#define BEGIN_COM_MAP(a) ' >> $@.tmp
|
---|
438 | echo '#define END_COM_MAP(a) ' >> $@.tmp
|
---|
439 |
|
---|
440 | echo '#define CHECKREADY if(!isReady()) return E_UNEXPECTED; ' >> $@.tmp
|
---|
441 | echo '#define COM_DECL_READONLY_ENUM_AND_COLLECTION(a) ' >> $@.tmp
|
---|
442 | echo '#define COM_INTERFACE_ENTRY(a) ' >> $@.tmp
|
---|
443 | echo '#define COMGETTER(n) Get##n ' >> $@.tmp
|
---|
444 | echo '#define COMSETTER(n) Set##n ' >> $@.tmp
|
---|
445 | echo '#define ComSafeArrayIn(t,a) t a[] ' >> $@.tmp
|
---|
446 | echo '#define ComSafeArrayOut(t,a) t * a[] ' >> $@.tmp
|
---|
447 | echo '#define DECLARE_NOT_AGGREGATABLE(a) ' >> $@.tmp
|
---|
448 | echo '#define DECLARE_PROTECT_FINAL_CONSTRUCT(a) ' >> $@.tmp
|
---|
449 | echo '#define NS_DECL_ISUPPORTS ' >> $@.tmp
|
---|
450 | echo '#define NS_IMETHOD NS_IMETHOD_(nsresult) ' >> $@.tmp
|
---|
451 | echo '#define NS_IMETHOD_(type) type ' >> $@.tmp
|
---|
452 | echo '#define PARSERS_EXPORT ' >> $@.tmp
|
---|
453 | echo '#define SAX_EXPORT ' >> $@.tmp
|
---|
454 | echo '#define STDMETHOD(a) NS_IMETHOD a ' >> $@.tmp
|
---|
455 | echo '#define XERCES_CPP_NAMESPACE_BEGIN ' >> $@.tmp
|
---|
456 | echo '#define XERCES_CPP_NAMESPACE_END ' >> $@.tmp
|
---|
457 |
|
---|
458 | echo '#define CTXAllSUFF(var) var##R3 ' >> $@.tmp
|
---|
459 | echo '#define CTXSUFF(var) var##HC ' >> $@.tmp
|
---|
460 | echo '#define OTHERCTXSUFF(var) var##GC ' >> $@.tmp
|
---|
461 | echo '#define CTXALLMID(first, last) first##R3##last ' >> $@.tmp
|
---|
462 | echo '#define CTXMID(first, last) first##HC##last ' >> $@.tmp
|
---|
463 | echo '#define OTHERCTXMID(first, last) first##GC##last ' >> $@.tmp
|
---|
464 | echo '#define CTXTYPE(GCType, R3Type, R0Type) R3Type ' >> $@.tmp
|
---|
465 | echo '#define GCPTRTYPE(GCType) GCType ' >> $@.tmp
|
---|
466 | echo '#define GCTYPE(GCType, HCType) GCType ' >> $@.tmp
|
---|
467 | echo '#define HCPTRTYPE(HCType) HCType ' >> $@.tmp
|
---|
468 | echo '#define R3R0PTRTYPE(HCType) HCType ' >> $@.tmp
|
---|
469 | echo '#define R0PTRTYPE(R3Type) R3Type ' >> $@.tmp
|
---|
470 | echo '#define R3PTRTYPE(R0Type) R0Type ' >> $@.tmp
|
---|
471 | echo '#define RT_SRC_POS __FILE__, __LINE__, __PRETTY_FUNCTION__ ' >> $@.tmp
|
---|
472 | echo '#define RT_SRC_POS_DECL const char *pszFile, unsigned iLine, const char *pszFunction ' >> $@.tmp
|
---|
473 | echo '#define RT_SRC_POS_ARGS pszFile, iLine, pszFunction ' >> $@.tmp
|
---|
474 | echo '#define RTCALL' >> $@.tmp
|
---|
475 | echo '#define DECLINLINE(type) inline type ' >> $@.tmp
|
---|
476 |
|
---|
477 | echo '#define PDM_SRC_POS __FILE__, __LINE__, __PRETTY_FUNCTION__ ' >> $@.tmp
|
---|
478 | echo '#define PDM_SRC_POS_DECL const char *pszFile, unsigned iLine, const char *pszFunction ' >> $@.tmp
|
---|
479 | echo '#define PDM_SRC_POS_ARGS pszFile, iLine, pszFunction ' >> $@.tmp
|
---|
480 | echo '#define PDMDEVINSINT_DECLARED 1' >> $@.tmp
|
---|
481 | echo '#define VBOXCALL' >> $@.tmp
|
---|
482 |
|
---|
483 | $(SED) -e '/__cdecl/d' \
|
---|
484 | -e '/^ *# *define.*DECL/!d' \
|
---|
485 | -e '/DECLS/d' \
|
---|
486 | -e '/DECLARE_CLS_/d' \
|
---|
487 | -e '/_SRC_POS_DECL/d' \
|
---|
488 | -e '/declspec/d' \
|
---|
489 | -e '/__attribute__/d' \
|
---|
490 | -e 's/# */#/g' \
|
---|
491 | -e 's/ */ /g' \
|
---|
492 | -e '/(type) DECLEXPORT/d' \
|
---|
493 | -e '/ DECLEXPORT_CLASS/d' \
|
---|
494 | -e 's/ *VBOXCALL//' \
|
---|
495 | -e 's/ *RTCALL//' \
|
---|
496 | -e 's/(type) DECLIMPORT(type)/(type) type/' \
|
---|
497 | -e '/ DECLASM(type) type/d' \
|
---|
498 | -e '/define *DECL..CALLBACKMEMBER(type[^)]*) *RT/d' \
|
---|
499 | -e '/define *DECLINLINE(type)/d' \
|
---|
500 | \
|
---|
501 | --append $@.tmp \
|
---|
502 | $(filter-out include/VBox/err.h, $(wildcard include/VBox/*.h)) \
|
---|
503 | include/iprt/cdefs.h
|
---|
504 | $(CAT_EXT) $@.tmp | sort | $(SED_EXT) -e 's/$$/\n/' --output $@.tmp2
|
---|
505 | $(MV) -f $@.tmp2 $@
|
---|
506 | $(RM) -f $@.tmp $@.tmp2 $@.tmp3
|
---|
507 | $(ECHO) "TODO: Merge ./vslick.h with your ~/.slickedit/x.y.z/unxcpp.h file."
|
---|
508 |
|
---|
509 |
|
---|
510 | #
|
---|
511 | # Add fetching of the tools to the 'up[date][2]' targets.
|
---|
512 | #
|
---|
513 | up update up2 update2::
|
---|
514 | ifndef VBOX_OSE
|
---|
515 | $(MAKE) -C tools fetch
|
---|
516 | else
|
---|
517 | $(MAKE) -C tools -f Makefile-ose.kmk fetch
|
---|
518 | endif
|
---|
519 |
|
---|
520 |
|
---|
521 | #
|
---|
522 | # Build the additions, all of them.
|
---|
523 | #
|
---|
524 | # This is currently tailored (hardcoded) for the additions
|
---|
525 | # build box. Can make it pretty and configurable later.
|
---|
526 | #
|
---|
527 | # The fetching must be done in serial fashion, while the building
|
---|
528 | # should be more flexible wrt to -jN.
|
---|
529 | #
|
---|
530 | additions-fetch:
|
---|
531 | + $(KMK) -C tools fetch
|
---|
532 | + $(KMK) -C tools fetch BUILD_TARGET_ARCH=x86 BUILD_TARGET=linux
|
---|
533 | # + $(KMK) -C tools fetch BUILD_TARGET_ARCH=x86 BUILD_TARGET=os2
|
---|
534 | + $(KMK) -C tools fetch BUILD_TARGET_ARCH=x86 BUILD_TARGET=solaris
|
---|
535 | + $(KMK) -C tools fetch BUILD_TARGET_ARCH=x86 BUILD_TARGET=win
|
---|
536 |
|
---|
537 |
|
---|
538 | additions-build: \
|
---|
539 | additions-build-win.x86 \
|
---|
540 | additions-build-solaris.x86 \
|
---|
541 | additions-build-os2.x86 \
|
---|
542 | additions-build-linux.x86
|
---|
543 |
|
---|
544 | VBOX_ADDITIONS_BUILD = VBOX_ONLY_ADDITIONS=1 VBOX_WITHOUT_ADDITIONS_ISO=1 BUILD_TYPE=$(BUILD_TYPE) all packing
|
---|
545 |
|
---|
546 | additions-build-win.x86:
|
---|
547 | ifeq ($(BUILD_TARGET),win)
|
---|
548 | + $(KMK) BUILD_TARGET_ARCH=x86 VBOX_ADDITIONS_WIN32_ONLY=1 $(VBOX_ADDITIONS_BUILD)
|
---|
549 | else
|
---|
550 | ssh vbox@192.168.27.5 " cd c:/vbox/add && ./tools/env.sh --no-wine kmk BUILD_TARGET_ARCH=x86 VBOX_ADDITIONS_WIN32_ONLY=1 $(VBOX_ADDITIONS_BUILD) "
|
---|
551 | endif
|
---|
552 |
|
---|
553 | additions-build-solaris.x86:
|
---|
554 | ifeq ($(BUILD_TARGET),solaris)
|
---|
555 | + $(KMK) BUILD_TARGET_ARCH=x86 $(VBOX_ADDITIONS_BUILD)
|
---|
556 | else
|
---|
557 | ssh vbox@192.168.27.4 " cd /mnt/vbox/add && ./tools/env.sh --no-wine kmk BUILD_TARGET_ARCH=x86 $(VBOX_ADDITIONS_BUILD) "
|
---|
558 | endif
|
---|
559 |
|
---|
560 | additions-build-os2.x86:
|
---|
561 | #ifeq ($(BUILD_TARGET),os2)
|
---|
562 | # + $(KMK) BUILD_TARGET_ARCH=x86
|
---|
563 | #else
|
---|
564 | # ssh vbox@192.168.27.3 " cd /mnt/vbox/add && ./tools/env.sh --no-wine kmk BUILD_TARGET_ARCH=x86 $(VBOX_ADDITIONS_BUILD) "
|
---|
565 | #endif
|
---|
566 |
|
---|
567 | additions-build-linux.x86:
|
---|
568 | ifeq ($(BUILD_TARGET),linux)
|
---|
569 | + $(KMK) BUILD_TARGET_ARCH=x86 VBOX_ADDITIONS_LINUX_ONLY=1 $(VBOX_ADDITIONS_BUILD)
|
---|
570 | else
|
---|
571 | ssh vbox@192.168.27.2 " cd /mnt/vbox/add && ./tools/env.sh --no-wine kmk BUILD_TARGET_ARCH=x86 VBOX_ADDITIONS_LINUX_ONLY=1 $(VBOX_ADDITIONS_BUILD) "
|
---|
572 | endif
|
---|
573 |
|
---|
574 |
|
---|
575 | additions-packing:
|
---|
576 | + $(KMK) VBOX_ONLY_ADDITIONS=1 \
|
---|
577 | VBOX_WITH_ADDITIONS_ISO.win.x86=1 \
|
---|
578 | VBOX_WITH_ADDITIONS_ISO.linux.x86=1 \
|
---|
579 | VBOX_WITH_ADDITIONS_ISO.solaris.x86=1 \
|
---|
580 | -C src/VBox/Additions \
|
---|
581 | $(VBOX_PATH_ADDITIONS)/VBoxGuestAdditions.iso
|
---|
582 |
|
---|
583 |
|
---|
584 | #
|
---|
585 | # Generate VirtualBox-OSE-x.x.x.tar.bz2 tarballs for distribution
|
---|
586 | #
|
---|
587 | # - includes kBuild
|
---|
588 | # - must be executed on an OSE checkout
|
---|
589 | #
|
---|
590 |
|
---|
591 | # the path where to store the tarball
|
---|
592 | TARBALLPATH ?= $(shell cd $(PATH_ROOT)/..; pwd)
|
---|
593 | #TARBALLPATH ?= $(abspath $(PATH_ROOT)/..) - this should also do the trick without spawning a shell.
|
---|
594 | # the root directory inside the tarball
|
---|
595 | TARBALLROOT ?= VirtualBox-$(VBOX_VERSION_STRING)
|
---|
596 | # the name of the tarball file
|
---|
597 | TARBALLNAME ?= VirtualBox-$(VBOX_VERSION_STRING).tar.bz2
|
---|
598 | snapshot:
|
---|
599 | @$(call MSG_L1,Creating tarball $(TARBALLPATH)/$(TARBALLNAME))
|
---|
600 | @if [ -d "$(PATH_ROOT)/src/VBox/Devices/USB" ]; then echo; echo "Found USB stuff, refused to build OSE tarball!"; echo; exit 1; fi
|
---|
601 | $(QUIET)$(MKDIR) -p $(TARBALLPATH)
|
---|
602 | $(QUIET)$(RM) -f $(wildcard $(TARBALLPATH)/VirtualBox*)
|
---|
603 | $(QUIET)$(LN_SYMLINK) $(PATH_ROOT) $(TARBALLPATH)/$(TARBALLROOT)
|
---|
604 | $(QUIET)tar -cjh --owner 0 --group 0 --totals \
|
---|
605 | --exclude=.svn \
|
---|
606 | --exclude=$(TARBALLROOT)/out \
|
---|
607 | --exclude=$(TARBALLROOT)/env.sh \
|
---|
608 | --exclude=$(TARBALLROOT)/configure.log \
|
---|
609 | --exclude=$(TARBALLROOT)/AutoConfig.kmk \
|
---|
610 | --exclude=$(TARBALLROOT)/LocalConfig.kmk \
|
---|
611 | -C $(TARBALLPATH) \
|
---|
612 | -f $(TARBALLPATH)/$(TARBALLNAME) \
|
---|
613 | $(TARBALLROOT)
|
---|
614 | $(QUIET)$(RM) $(TARBALLPATH)/$(TARBALLROOT)
|
---|