Makefile revision 677833bc953b6cb418c701facbdcf4aa18d6c44e
#
# Top level makefile.
#
#
# Copyright (C) 2006 InnoTek Systemberatung GmbH
#
# This file is part of VirtualBox Open Source Edition (OSE), as
# available from http://www.virtualbox.org. This file is free software;
# General Public License as published by the Free Software Foundation,
# in version 2 as it comes in the "COPYING" file of the VirtualBox OSE
# distribution. VirtualBox OSE is distributed in the hope that it will
# be useful, but WITHOUT ANY WARRANTY of any kind.
#
# If you received this file as part of a commercial VirtualBox
# distribution, then only the terms of your commercial VirtualBox
# license agreement apply instead of the previous paragraph.
#
DEPTH = .
#
# Install external binaries (mostly redistributable parts of tools we use).
# This must be done *before* we build the manual.
#
# To avoid dragging in unnecessary tools and sdks here, we don't use the .win
# and .linux property suffixes.
#
# The SDL DLLs
bin_SOURCES += \
bin_SOURCES += \
bin_SOURCES += \
# The Qt DLLs.
#bin_SOURCES += \
# $(DLL_SDK_QT3_QT)
bin_SOURCES.win.x86 += \
bin_SOURCES.win.x86 += \
bin_SOURCES.win.amd64 += \
# The compiler runtime DLLs.
bin_SOURCES.x86 += \
$(PATH_TOOL_VCC80X86)/redist/x86/Microsoft.VC80.CRT/Microsoft.VC80.CRT.manifest=>Microsoft.VC80.CRT/Microsoft.VC80.CRT.manifest \
$(PATH_TOOL_VCC80X86)/redist/x86/Microsoft.VC80.CRT/Microsoft.VC80.CRT.manifest=>testcase/Microsoft.VC80.CRT/Microsoft.VC80.CRT.manifest \
$(PATH_TOOL_VCC80X86)/redist/x86/Microsoft.VC80.CRT/msvcr80.dll=>testcase/Microsoft.VC80.CRT/msvcr80.dll \
$(PATH_TOOL_VCC80X86)/redist/x86/Microsoft.VC80.CRT/msvcp80.dll=>testcase/Microsoft.VC80.CRT/msvcp80.dll
bin_SOURCES.amd64 += \
$(PATH_TOOL_VCCAMD64)/redist/amd64/Microsoft.VC80.CRT/Microsoft.VC80.CRT.manifest=>Microsoft.VC80.CRT/Microsoft.VC80.CRT.manifest \
$(PATH_TOOL_VCCAMD64)/redist/amd64/Microsoft.VC80.CRT/Microsoft.VC80.CRT.manifest=>testcase/Microsoft.VC80.CRT/Microsoft.VC80.CRT.manifest \
$(PATH_TOOL_VCCAMD64)/redist/amd64/Microsoft.VC80.CRT/msvcr80.dll=>testcase/Microsoft.VC80.CRT/msvcr80.dll \
$(PATH_TOOL_VCCAMD64)/redist/amd64/Microsoft.VC80.CRT/msvcp80.dll=>testcase/Microsoft.VC80.CRT/msvcp80.dll
else
## @todo Move these defines to VCC70.
bin_SOURCES += \
bin_SOURCES += \
bin_SOURCES += \
# The Xerces DLL
# The Xalan DLLs
#
# Generate documentation.
# (This should be converted into a separate pass or merged with an existing one later.)
#
#
# The core (VMM+Runtime+Devices) documentation.
#
$(PATH_TARGET)/docs.Core: \
$(MKDIR) -p $@
#
#
incs:
$(SED) -e '/__VBox_x86_h__/d' -e '/#define/!d' -e 's/#define/%define/' include/VBox/x86.h > include/VBox/x86.mac
#
# Generate Visual SlickEdit tagging #defines.
#
echo '// autogenerated' > $@.tmp
#echo '#define __BEGIN_DECLS ' >> $@.tmp
#echo '#define __END_DECLS ' >> $@.tmp
echo '#define ATL_NO_VTABLE ' >> $@.tmp
echo '#define BEGIN_COM_MAP(a) ' >> $@.tmp
echo '#define END_COM_MAP(a) ' >> $@.tmp
echo '#define CHECKREADY if(!isReady()) return E_UNEXPECTED; ' >> $@.tmp
echo '#define COM_DECL_READONLY_ENUM_AND_COLLECTION(a) ' >> $@.tmp
echo '#define COM_INTERFACE_ENTRY(a) ' >> $@.tmp
echo '#define COMGETTER(n) Get##n ' >> $@.tmp
echo '#define COMSETTER(n) Set##n ' >> $@.tmp
echo '#define DECLARE_NOT_AGGREGATABLE(a) ' >> $@.tmp
echo '#define DECLARE_PROTECT_FINAL_CONSTRUCT(a) ' >> $@.tmp
echo '#define NS_DECL_ISUPPORTS ' >> $@.tmp
echo '#define NS_IMETHOD NS_IMETHOD_(nsresult) ' >> $@.tmp
echo '#define NS_IMETHOD_(type) type ' >> $@.tmp
echo '#define PARSERS_EXPORT ' >> $@.tmp
echo '#define SAX_EXPORT ' >> $@.tmp
echo '#define STDMETHOD(a) NS_IMETHOD a ' >> $@.tmp
echo '#define XERCES_CPP_NAMESPACE_BEGIN ' >> $@.tmp
echo '#define XERCES_CPP_NAMESPACE_END ' >> $@.tmp
echo '#define CTXAllSUFF(var) var##R3 ' >> $@.tmp
echo '#define CTXSUFF(var) var##HC ' >> $@.tmp
echo '#define OTHERCTXSUFF(var) var##GC ' >> $@.tmp
echo '#define CTXALLMID(first, last) first##R3##last ' >> $@.tmp
echo '#define CTXMID(first, last) first##HC##last ' >> $@.tmp
echo '#define OTHERCTXMID(first, last) first##GC##last ' >> $@.tmp
echo '#define CTXTYPE(GCType, R3Type, R0Type) R3Type ' >> $@.tmp
echo '#define GCPTRTYPE(GCType) GCType ' >> $@.tmp
echo '#define GCTYPE(GCType, HCType) GCType ' >> $@.tmp
echo '#define HCPTRTYPE(HCType) HCType ' >> $@.tmp
echo '#define R0PTRTYPE(R3Type) R3Type ' >> $@.tmp
echo '#define R3PTRTYPE(R0Type) R0Type ' >> $@.tmp
echo '#define RT_SRC_POS __FILE__, __LINE__, __PRETTY_FUNCTION__ ' >> $@.tmp
echo '#define RT_SRC_POS_DECL const char *pszFile, unsigned iLine, const char *pszFunction ' >> $@.tmp
echo '#define RT_SRC_POS_ARGS pszFile, iLine, pszFunction ' >> $@.tmp
echo '#define RTCALL' >> $@.tmp
echo '#define DECLINLINE(type) inline type ' >> $@.tmp
echo '#define PDM_SRC_POS __FILE__, __LINE__, __PRETTY_FUNCTION__ ' >> $@.tmp
echo '#define PDM_SRC_POS_DECL const char *pszFile, unsigned iLine, const char *pszFunction ' >> $@.tmp
echo '#define PDM_SRC_POS_ARGS pszFile, iLine, pszFunction ' >> $@.tmp
echo '#define PDMDEVINSINT_DECLARED 1' >> $@.tmp
echo '#define VBOXCALL' >> $@.tmp
$(SED) -e '/__cdecl/d' \
-e '/^ *# *define.*DECL/!d' \
-e '/DECLS/d' \
-e '/_SRC_POS_DECL/d' \
-e '/declspec/d' \
-e 's/# */#/g' \
-e 's/ */ /g' \
-e '/(type) DECLEXPORT/d' \
-e 's/ *VBOXCALL//' \
-e 's/ *RTCALL//' \
-e 's/(type) DECLIMPORT(type)/(type) type/' \
-e '/ DECLASM(type) type/d' \
-e '/define *DECL..CALLBACKMEMBER(type[^)]*) *RT/d' \
-e '/define *DECLINLINE(type)/d' \
\
>> $@.tmp
## add tools fetching to the 'up' / 'update' target.
# this doesn't work of course if kmk is updated: svn$(HOSTSUFF_EXE) up $(PATH_KBUILD)