1 | # $Id: Makefile.kmk 5362 2007-10-17 17:15:47Z vboxsync $
|
---|
2 | ## @file
|
---|
3 | # Top level makefile.
|
---|
4 | #
|
---|
5 |
|
---|
6 | #
|
---|
7 | # Copyright (C) 2006-2007 innotek GmbH
|
---|
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 as published by the Free Software Foundation,
|
---|
13 | # in version 2 as it comes in the "COPYING" file of the VirtualBox OSE
|
---|
14 | # distribution. VirtualBox OSE is distributed in the hope that it will
|
---|
15 | # be useful, but WITHOUT ANY WARRANTY of any kind.
|
---|
16 |
|
---|
17 | DEPTH = .
|
---|
18 | include $(PATH_KBUILD)/header.kmk
|
---|
19 |
|
---|
20 | ifdef VBOX_WITH_DOCS
|
---|
21 | SUBDIRS = doc/manual
|
---|
22 | endif
|
---|
23 | SUBDIRS += src
|
---|
24 |
|
---|
25 | #
|
---|
26 | # Install external binaries (mostly redistributable parts of tools we use).
|
---|
27 | # This must be done *before* we build the manual.
|
---|
28 | #
|
---|
29 | # To avoid dragging in unnecessary tools and sdks here, we don't use the .win
|
---|
30 | # and .linux property suffixes.
|
---|
31 | #
|
---|
32 | INSTALLS = bin
|
---|
33 |
|
---|
34 | bin_INST = $(INST_BIN)
|
---|
35 |
|
---|
36 | # The SDL DLLs
|
---|
37 | ifeq ($(filter-out win os2,$(BUILD_TARGET)),)
|
---|
38 | ifneq ($(VBOX_WITH_VBOXSDL)$(VBOX_WITH_VBOXBFE),)
|
---|
39 | include $(PATH_KBUILD)/sdks/LIBSDL.kmk
|
---|
40 | bin_SOURCES += \
|
---|
41 | $(DLL_SDK_LIBSDL_SDL)
|
---|
42 | ifdef VBOX_WITH_SECURELABEL
|
---|
43 | bin_SOURCES += \
|
---|
44 | $(DLL_SDK_LIBSDL_SDLTTF)
|
---|
45 | endif
|
---|
46 | ifeq ($(BUILD_TARGET),os2)
|
---|
47 | bin_SOURCES += \
|
---|
48 | $(DLL_SDK_LIBSDL_FSLIB)
|
---|
49 | endif
|
---|
50 | endif
|
---|
51 | endif
|
---|
52 |
|
---|
53 |
|
---|
54 | # The Qt DLLs.
|
---|
55 | ifneq ($(VBOX_WITH_QTGUI),)
|
---|
56 | ifeq ($(BUILD_TARGET),win)
|
---|
57 | #include $(PATH_KBUILD)/sdks/QT3.kmk
|
---|
58 | #bin_SOURCES += \
|
---|
59 | # $(DLL_SDK_QT3_QT)
|
---|
60 | ifeq ($(BUILD_TARGET).$(BUILD_TARGET_ARCH),win.x86)
|
---|
61 | VBOX_DLL_QT ?= $(VBOX_PATH_QT)/bin/qt-mt333.dll
|
---|
62 | else ifeq ($(BUILD_TARGET).$(BUILD_TARGET_ARCH),win.amd64)
|
---|
63 | VBOX_DLL_QT ?= $(PATH_DEVTOOLS)/win.amd64/Qt/v3.3.8/lib/qt-mt338.dll=>qt-mt338.dll
|
---|
64 | #else ifeq ($(BUILD_TARGET).$(BUILD_TARGET_ARCH),os2.x86)
|
---|
65 | # VBOX_DLL_QT ?= $(PATH_DEVTOOLS)/os2.x86/Qt/v3.3.6/bin/qt-mt336.dll=>qt-mt336.dll
|
---|
66 | endif
|
---|
67 | ifdef VBOX_DLL_QT
|
---|
68 | bin_SOURCES += \
|
---|
69 | $(VBOX_DLL_QT)=>$(not-dir $(VBOX_DLL_QT))
|
---|
70 | endif
|
---|
71 | else ifeq ($(BUILD_TARGET),os2)
|
---|
72 | VBOX_DLL_QT ?= $(lastword $(sort $(wildcard $(VBOX_PATH_QT)/bin/qt*.dll)))
|
---|
73 | ifneq ($(strip $(VBOX_DLL_QT)),)
|
---|
74 | bin_SOURCES += \
|
---|
75 | $(VBOX_DLL_QT)=>$(not-dir $(VBOX_DLL_QT))
|
---|
76 | endif
|
---|
77 | else ifeq ($(VBOX_MUST_INSTALL_LIB_QT),1)
|
---|
78 | bin_SOURCES += \
|
---|
79 | $(LIB_QT)
|
---|
80 | endif
|
---|
81 | endif
|
---|
82 |
|
---|
83 |
|
---|
84 | # The compiler runtime DLLs.
|
---|
85 | ifeq ($(BUILD_TARGET).$(VBOX_WITHOUT_COMPILER_REDIST),win.)
|
---|
86 | ifdef VBOX_USE_VCC80
|
---|
87 | include $(PATH_KBUILD)/tools/VCC80X86.kmk
|
---|
88 | include $(PATH_KBUILD)/tools/VCC80AMD64.kmk
|
---|
89 | bin_SOURCES.x86 += \
|
---|
90 | $(PATH_TOOL_VCC80X86)/redist/x86/Microsoft.VC80.CRT/Microsoft.VC80.CRT.manifest=>Microsoft.VC80.CRT/Microsoft.VC80.CRT.manifest \
|
---|
91 | $(PATH_TOOL_VCC80X86)/redist/x86/Microsoft.VC80.CRT/msvcr80.dll=>Microsoft.VC80.CRT/msvcr80.dll \
|
---|
92 | $(PATH_TOOL_VCC80X86)/redist/x86/Microsoft.VC80.CRT/msvcp80.dll=>Microsoft.VC80.CRT/msvcp80.dll \
|
---|
93 | $(PATH_TOOL_VCC80X86)/redist/x86/Microsoft.VC80.CRT/Microsoft.VC80.CRT.manifest=>testcase/Microsoft.VC80.CRT/Microsoft.VC80.CRT.manifest \
|
---|
94 | $(PATH_TOOL_VCC80X86)/redist/x86/Microsoft.VC80.CRT/msvcr80.dll=>testcase/Microsoft.VC80.CRT/msvcr80.dll \
|
---|
95 | $(PATH_TOOL_VCC80X86)/redist/x86/Microsoft.VC80.CRT/msvcp80.dll=>testcase/Microsoft.VC80.CRT/msvcp80.dll
|
---|
96 | bin_SOURCES.amd64 += \
|
---|
97 | $(PATH_TOOL_VCC80AMD64)/redist/amd64/Microsoft.VC80.CRT/Microsoft.VC80.CRT.manifest=>Microsoft.VC80.CRT/Microsoft.VC80.CRT.manifest \
|
---|
98 | $(PATH_TOOL_VCC80AMD64)/redist/amd64/Microsoft.VC80.CRT/msvcr80.dll=>Microsoft.VC80.CRT/msvcr80.dll \
|
---|
99 | $(PATH_TOOL_VCC80AMD64)/redist/amd64/Microsoft.VC80.CRT/msvcp80.dll=>Microsoft.VC80.CRT/msvcp80.dll \
|
---|
100 | $(PATH_TOOL_VCC80AMD64)/redist/amd64/Microsoft.VC80.CRT/Microsoft.VC80.CRT.manifest=>testcase/Microsoft.VC80.CRT/Microsoft.VC80.CRT.manifest \
|
---|
101 | $(PATH_TOOL_VCC80AMD64)/redist/amd64/Microsoft.VC80.CRT/msvcr80.dll=>testcase/Microsoft.VC80.CRT/msvcr80.dll \
|
---|
102 | $(PATH_TOOL_VCC80AMD64)/redist/amd64/Microsoft.VC80.CRT/msvcp80.dll=>testcase/Microsoft.VC80.CRT/msvcp80.dll
|
---|
103 | endif
|
---|
104 | ifndef VBOX_USE_VCC80
|
---|
105 | VBOX_INSTALL_VCC70_RT = 1
|
---|
106 | endif
|
---|
107 | ifeq ($(BUILD_TARGET).$(BUILD_TARGET_ARCH),win.x86)
|
---|
108 | VBOX_INSTALL_VCC70_RT = 1
|
---|
109 | endif
|
---|
110 | ifdef VBOX_INSTALL_VCC70_RT
|
---|
111 | include $(PATH_KBUILD)/tools/VCC70.kmk
|
---|
112 | ## @todo Move these defines to VCC70.
|
---|
113 | DLL_TOOL_VCC70_MSVCR71 ?= $(PATH_TOOL_VCC70)/bin/msvcr71.dll
|
---|
114 | ifneq ($(wildcard $(DLL_TOOL_VCC70_MSVCR71)),)
|
---|
115 | bin_SOURCES += \
|
---|
116 | $(DLL_TOOL_VCC70_MSVCR71)=>msvcr71.dll \
|
---|
117 | $(DLL_TOOL_VCC70_MSVCR71)=>testcase/msvcr71.dll
|
---|
118 | endif
|
---|
119 | DLL_TOOL_VCC70_MSVCP71 ?= $(PATH_TOOL_VCC70)/bin/msvcp71.dll
|
---|
120 | ifneq ($(wildcard $(DLL_TOOL_VCC70_MSVCP71)),)
|
---|
121 | bin_SOURCES += \
|
---|
122 | $(DLL_TOOL_VCC70_MSVCP71)=>msvcp71.dll \
|
---|
123 | $(DLL_TOOL_VCC70_MSVCP71)=>testcase/msvcp71.dll
|
---|
124 | endif
|
---|
125 | DLL_TOOL_VCC70_MSVCRT ?= $(PATH_TOOL_VCC70)/bin/msvcrt.dll
|
---|
126 | ifneq ($(wildcard $(DLL_TOOL_VCC70_MSVCRT)),)
|
---|
127 | bin_SOURCES += \
|
---|
128 | $(DLL_TOOL_VCC70_MSVCRT)=>msvcrt.dll \
|
---|
129 | $(DLL_TOOL_VCC70_MSVCRT)=>testcase/msvcrt.dll
|
---|
130 | endif
|
---|
131 | endif
|
---|
132 | endif
|
---|
133 |
|
---|
134 | # The Xerces DLL
|
---|
135 | ifneq ($(DLL_SDK_VBOX_XERCES_XERCES),)
|
---|
136 | bin_SOURCES += $(DLL_SDK_VBOX_XERCES_XERCES)
|
---|
137 | endif
|
---|
138 |
|
---|
139 | # The Xalan DLLs
|
---|
140 | ifneq ($(DLL_SDK_VBOX_XALAN_XALAN),)
|
---|
141 | bin_SOURCES += $(DLL_SDK_VBOX_XALAN_XALAN)
|
---|
142 | endif
|
---|
143 | ifneq ($(DLL_SDK_VBOX_XALAN_XALAN-MESSAGES),)
|
---|
144 | bin_SOURCES += $(DLL_SDK_VBOX_XALAN_XALAN-MESSAGES)
|
---|
145 | endif
|
---|
146 |
|
---|
147 |
|
---|
148 | #
|
---|
149 | # Install staged binaries on platforms where we can't cross
|
---|
150 | # compile things.
|
---|
151 | #
|
---|
152 | ifneq ($(filter-out linux win l4, $(BUILD_TARGET)),)
|
---|
153 | VBOX_PATH_STAGED ?= .
|
---|
154 |
|
---|
155 | # Additions.
|
---|
156 | ifndef VBOX_WITH_LINUX_ADDITIONS
|
---|
157 | ifndef VBOX_WITH_WIN32_ADDITIONS
|
---|
158 | ifneq ($(wildcard $(VBOX_PATH_STAGED)/VBoxGuestAdditions.iso),)
|
---|
159 | INSTALLS += staged-additions
|
---|
160 | staged-additions_INST = $(INST_ADDITIONS)
|
---|
161 | staged-additions_MODE = 0644
|
---|
162 | staged-additions_SOURCES = $(VBOX_PATH_STAGED)/VBoxGuestAdditions.iso
|
---|
163 | endif
|
---|
164 | endif
|
---|
165 | endif
|
---|
166 |
|
---|
167 | # guesttool.exe
|
---|
168 | ifndef VBOX_WITH_WIN32_ADDITIONS
|
---|
169 | ifneq ($(wildcard $(VBOX_PATH_STAGED)/guesttool.exe),)
|
---|
170 | INSTALLS += staged-guesttool
|
---|
171 | staged-guesttool_INST = $(INST_BIN)
|
---|
172 | staged-guesttool_SOURCES = $(VBOX_PATH_STAGED)/guesttool.exe
|
---|
173 | endif
|
---|
174 | endif
|
---|
175 |
|
---|
176 | endif
|
---|
177 |
|
---|
178 |
|
---|
179 |
|
---|
180 | include $(PATH_KBUILD)/footer.kmk
|
---|
181 |
|
---|
182 |
|
---|
183 | #
|
---|
184 | # Generate documentation.
|
---|
185 | # (This should be converted into a separate pass or merged with an existing one later.)
|
---|
186 | #
|
---|
187 | docs: docs.Core
|
---|
188 | $(MAKE) -C src/VBox/Main docs
|
---|
189 | $(MAKE) -C src/VBox/Runtime docs
|
---|
190 |
|
---|
191 | docs.Core: $(PATH_TARGET)/docs.Core
|
---|
192 |
|
---|
193 |
|
---|
194 | #
|
---|
195 | # The core (VMM+Runtime+Devices) documentation.
|
---|
196 | #
|
---|
197 | $(PATH_TARGET)/docs.Core: \
|
---|
198 | Doxyfile.Core \
|
---|
199 | | $(call DIRDEP, $(PATH_TARGET)) \
|
---|
200 | $(call DIRDEP, $(PATH_OUT)/docs/Core)
|
---|
201 | $(RM) -f $(wildcard $(PATH_OUT)/docs/Core/html/*)
|
---|
202 | PATH_OUT="$(PATH_OUT)" PATH_TARGET="$(PATH_TARGET)" doxygen Doxyfile.Core
|
---|
203 |
|
---|
204 | $(call DIRDEP, $(PATH_OUT)/docs/Core):
|
---|
205 | $(MKDIR) -p $@
|
---|
206 |
|
---|
207 |
|
---|
208 | #
|
---|
209 | # Generate x86.mac and err.mac.
|
---|
210 | #
|
---|
211 | incs:
|
---|
212 | $(SED) -f include/VBox/err.sed include/VBox/err.h > include/VBox/err.mac
|
---|
213 | echo '%include "iprt/err.mac"' >> include/VBox/err.mac
|
---|
214 | $(SED) -f include/VBox/err.sed include/iprt/err.h > include/iprt/err.mac
|
---|
215 | $(SED) -e '/__VBox_x86_h__/d' -e '/#define/!d' -e 's/#define/%define/' include/VBox/x86.h > include/VBox/x86.mac
|
---|
216 |
|
---|
217 |
|
---|
218 | #
|
---|
219 | # Generate Visual SlickEdit tagging #defines.
|
---|
220 | #
|
---|
221 | vslick.h: include/VBox/cdefs.h Makefile
|
---|
222 | echo '// autogenerated' > $@.tmp
|
---|
223 | #echo '#define __BEGIN_DECLS ' >> $@.tmp
|
---|
224 | #echo '#define __END_DECLS ' >> $@.tmp
|
---|
225 |
|
---|
226 | echo '#define ATL_NO_VTABLE ' >> $@.tmp
|
---|
227 | echo '#define BEGIN_COM_MAP(a) ' >> $@.tmp
|
---|
228 | echo '#define END_COM_MAP(a) ' >> $@.tmp
|
---|
229 |
|
---|
230 | echo '#define CHECKREADY if(!isReady()) return E_UNEXPECTED; ' >> $@.tmp
|
---|
231 | echo '#define COM_DECL_READONLY_ENUM_AND_COLLECTION(a) ' >> $@.tmp
|
---|
232 | echo '#define COM_INTERFACE_ENTRY(a) ' >> $@.tmp
|
---|
233 | echo '#define COMGETTER(n) Get##n ' >> $@.tmp
|
---|
234 | echo '#define COMSETTER(n) Set##n ' >> $@.tmp
|
---|
235 | echo '#define DECLARE_NOT_AGGREGATABLE(a) ' >> $@.tmp
|
---|
236 | echo '#define DECLARE_PROTECT_FINAL_CONSTRUCT(a) ' >> $@.tmp
|
---|
237 | echo '#define NS_DECL_ISUPPORTS ' >> $@.tmp
|
---|
238 | echo '#define NS_IMETHOD NS_IMETHOD_(nsresult) ' >> $@.tmp
|
---|
239 | echo '#define NS_IMETHOD_(type) type ' >> $@.tmp
|
---|
240 | echo '#define PARSERS_EXPORT ' >> $@.tmp
|
---|
241 | echo '#define SAX_EXPORT ' >> $@.tmp
|
---|
242 | echo '#define STDMETHOD(a) NS_IMETHOD a ' >> $@.tmp
|
---|
243 | echo '#define XERCES_CPP_NAMESPACE_BEGIN ' >> $@.tmp
|
---|
244 | echo '#define XERCES_CPP_NAMESPACE_END ' >> $@.tmp
|
---|
245 |
|
---|
246 | echo '#define CTXAllSUFF(var) var##R3 ' >> $@.tmp
|
---|
247 | echo '#define CTXSUFF(var) var##HC ' >> $@.tmp
|
---|
248 | echo '#define OTHERCTXSUFF(var) var##GC ' >> $@.tmp
|
---|
249 | echo '#define CTXALLMID(first, last) first##R3##last ' >> $@.tmp
|
---|
250 | echo '#define CTXMID(first, last) first##HC##last ' >> $@.tmp
|
---|
251 | echo '#define OTHERCTXMID(first, last) first##GC##last ' >> $@.tmp
|
---|
252 | echo '#define CTXTYPE(GCType, R3Type, R0Type) R3Type ' >> $@.tmp
|
---|
253 | echo '#define GCPTRTYPE(GCType) GCType ' >> $@.tmp
|
---|
254 | echo '#define GCTYPE(GCType, HCType) GCType ' >> $@.tmp
|
---|
255 | echo '#define HCPTRTYPE(HCType) HCType ' >> $@.tmp
|
---|
256 | echo '#define R0PTRTYPE(R3Type) R3Type ' >> $@.tmp
|
---|
257 | echo '#define R3PTRTYPE(R0Type) R0Type ' >> $@.tmp
|
---|
258 | echo '#define RT_SRC_POS __FILE__, __LINE__, __PRETTY_FUNCTION__ ' >> $@.tmp
|
---|
259 | echo '#define RT_SRC_POS_DECL const char *pszFile, unsigned iLine, const char *pszFunction ' >> $@.tmp
|
---|
260 | echo '#define RT_SRC_POS_ARGS pszFile, iLine, pszFunction ' >> $@.tmp
|
---|
261 | echo '#define RTCALL' >> $@.tmp
|
---|
262 | echo '#define DECLINLINE(type) inline type ' >> $@.tmp
|
---|
263 |
|
---|
264 | echo '#define PDM_SRC_POS __FILE__, __LINE__, __PRETTY_FUNCTION__ ' >> $@.tmp
|
---|
265 | echo '#define PDM_SRC_POS_DECL const char *pszFile, unsigned iLine, const char *pszFunction ' >> $@.tmp
|
---|
266 | echo '#define PDM_SRC_POS_ARGS pszFile, iLine, pszFunction ' >> $@.tmp
|
---|
267 | echo '#define PDMDEVINSINT_DECLARED 1' >> $@.tmp
|
---|
268 | echo '#define VBOXCALL' >> $@.tmp
|
---|
269 |
|
---|
270 | $(SED) -e '/__cdecl/d' \
|
---|
271 | -e '/^ *# *define.*DECL/!d' \
|
---|
272 | -e '/DECLS/d' \
|
---|
273 | -e '/_SRC_POS_DECL/d' \
|
---|
274 | -e '/declspec/d' \
|
---|
275 | -e 's/# */#/g' \
|
---|
276 | -e 's/ */ /g' \
|
---|
277 | -e '/(type) DECLEXPORT/d' \
|
---|
278 | -e 's/ *VBOXCALL//' \
|
---|
279 | -e 's/ *RTCALL//' \
|
---|
280 | -e 's/(type) DECLIMPORT(type)/(type) type/' \
|
---|
281 | -e '/ DECLASM(type) type/d' \
|
---|
282 | -e '/define *DECL..CALLBACKMEMBER(type[^)]*) *RT/d' \
|
---|
283 | -e '/define *DECLINLINE(type)/d' \
|
---|
284 | \
|
---|
285 | include/iprt/cdefs.h \
|
---|
286 | include/VBox/cdefs.h \
|
---|
287 | >> $@.tmp
|
---|
288 | sort $@.tmp | sort | sed -e 's/$$/\n/' > $@.tmp2
|
---|
289 | $(MV) -f $@.tmp2 $@
|
---|
290 | $(RM) -f $@.tmp $@.tmp2 $@.tmp3
|
---|
291 |
|
---|
292 |
|
---|
293 | ## add tools fetching to the 'up' / 'update' target.
|
---|
294 | up update::
|
---|
295 | # this doesn't work of course if kmk is updated: svn$(HOSTSUFF_EXE) up $(PATH_KBUILD)
|
---|
296 | ifndef VBOX_OSE
|
---|
297 | $(MAKE) -C tools fetch
|
---|
298 | else
|
---|
299 | $(MAKE) -C tools -f Makefile-ose.kmk fetch
|
---|
300 | endif
|
---|
301 |
|
---|
302 | #
|
---|
303 | # Generate VirtualBox-OSE-x.x.x.tar.bz2 tarballs for distribution
|
---|
304 | #
|
---|
305 | # - includes kBuild
|
---|
306 | # - must be executed on an OSE checkout
|
---|
307 | #
|
---|
308 |
|
---|
309 | # the path where to store the tarball
|
---|
310 | TARBALLPATH ?= $(shell cd $(PATH_ROOT)/..; pwd)
|
---|
311 | #TARBALLPATH ?= $(abspath $(PATH_ROOT)/..) - this should also do the trick without spawning a shell.
|
---|
312 | # the root directory inside the tarball
|
---|
313 | TARBALLROOT ?= VirtualBox-$(VBOX_VERSION_STRING)
|
---|
314 | # the name of the tarball file
|
---|
315 | TARBALLNAME ?= VirtualBox-$(VBOX_VERSION_STRING).tar.bz2
|
---|
316 | snapshot:
|
---|
317 | @$(call MSG_L1,Creating tarball $(TARBALLPATH)/$(TARBALLNAME))
|
---|
318 | @if [ -d "$(PATH_ROOT)/src/VBox/Devices/USB" ]; then echo; echo "Found USB stuff, refused to build OSE tarball!"; echo; exit 1; fi
|
---|
319 | $(QUIET)$(MKDIR) -p $(TARBALLPATH)
|
---|
320 | $(QUIET)$(RM) -f $(wildcard $(TARBALLPATH)/VirtualBox*)
|
---|
321 | $(QUIET)$(LN_SYMLINK) $(PATH_ROOT) $(TARBALLPATH)/$(TARBALLROOT)
|
---|
322 | $(QUIET)tar -cjh --owner 0 --group 0 --totals \
|
---|
323 | --exclude=.svn \
|
---|
324 | --exclude=$(TARBALLROOT)/out \
|
---|
325 | --exclude=$(TARBALLROOT)/env.sh \
|
---|
326 | --exclude=$(TARBALLROOT)/configure.log \
|
---|
327 | --exclude=$(TARBALLROOT)/AutoConfig.kmk \
|
---|
328 | --exclude=$(TARBALLROOT)/LocalConfig.kmk \
|
---|
329 | -C $(TARBALLPATH) \
|
---|
330 | -f $(TARBALLPATH)/$(TARBALLNAME) \
|
---|
331 | $(TARBALLROOT)
|
---|
332 | $(QUIET)$(RM) $(TARBALLPATH)/$(TARBALLROOT)
|
---|