Makefile.kmk revision 156c19b2c8cb0c87ac5be46e8836cd662189f854
# $Id$
## @file
# Sub-Makefile for the common guest addition code library.
#
#
# Copyright (C) 2006-2007 innotek GmbH
#
# This file is part of VirtualBox Open Source Edition (OSE), as
# available from http://www.virtualbox.org. This file is free software;
# you can redistribute it and/or modify it under the terms of the GNU
# 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 ?= ../../../../..
SUB_DEPTH = ../..
include $(PATH_KBUILD)/subheader.kmk
# As we build Windows Additions on Linux as well, we need a
# separate Linux target for each library so that both platforms
# are built.
ifdef VBOX_WITH_WIN32_ADDITIONS
ifndef VBOX_ADDITIONS_LINUX_ONLY
LIBRARIES += \
VBoxGuestLib \
VBoxGuestLibBase
endif
endif
ifdef VBOX_WITH_LINUX_ADDITIONS
ifdef VBOX_WITH_LINUX_ADDITIONS_32BIT_R0
LIBRARIES += \
VBoxGuestLibLinux \
VBoxGuestLibBaseLinux
endif
endif
ifdef VBOX_WITH_OS2_ADDITIONS
LIBRARIES += \
VBoxGuestR3LibOS2 \
VBoxGuestR3LibBaseOS2 \
VBoxGuestR0Lib
endif
SOURCES_GUESTLIBBASE = \
GenericRequest.cpp \
SysHlp.cpp \
PhysHeap.cpp \
Init.cpp \
VMMDev.cpp \
HGCMInternal.cpp
SOURCES_GUESTLIB = \
GenericRequest.cpp \
SysHlp.cpp \
PhysHeap.cpp \
Init.cpp \
VMMDev.cpp \
HGCM.cpp \
VBoxCalls.c
#
# VBoxGuestLib
#
VBoxGuestLib_TEMPLATE = VBOXW32GUESTR0LIB
VBoxGuestLib_SDKS.win = W2K3DDKX86 WIN32SDK
VBoxGuestLib_SOURCES = \
$(SOURCES_GUESTLIB)
VBoxGuestLib_INCS = \
$(PATH_VBoxGuestLib)
VBoxGuestLib_INCS.win = \
$(PATH_SUB_ROOT)/WINNT/SharedFolders/include
VBoxGuestLib_DEFS = IN_RING0 IN_RT_R0 VBOX_HGCM LOG_TO_BACKDOOR
#VBoxGuestLib_DEFS += LOG_ENABLED
#
# VBoxGuestLibBase
#
VBoxGuestLibBase_TEMPLATE = VBOXW32GUESTR0LIB
VBoxGuestLibBase_SDKS.win = $(VBoxGuestLib_SDKS.win)
VBoxGuestLibBase_SOURCES = $(SOURCES_GUESTLIBBASE)
VBoxGuestLibBase_INCS = $(VBoxGuestLib_INCS)
VBoxGuestLibBase_INCS.win = $(VBoxGuestLib_INCS.win)
VBoxGuestLibBase_DEFS = $(VBoxGuestLib_DEFS) VBGL_VBOXGUEST
VBoxGuestLibBase_DEFS.win = $(VBoxGuestLib_DEFS.win)
#VBoxGuestLibBase_DEFS += LOG_ENABLED
#
# VBoxGuestLibLinux
#
VBoxGuestLibLinux_TEMPLATE = VBOXLNX32GUESTR0
VBoxGuestLibLinux_SOURCES = $(SOURCES_GUESTLIB)
VBoxGuestLibLinux_INCS = $(VBoxGuestLib_INCS)
VBoxGuestLibLinux_DEFS = VBOX_HGCM LOG_TO_BACKDOOR
#
# VBoxGuestLibBaseLinux
#
VBoxGuestLibBaseLinux_TEMPLATE = VBOXLNX32GUESTR0
VBoxGuestLibBaseLinux_SOURCES = $(SOURCES_GUESTLIBBASE)
VBoxGuestLibBaseLinux_INCS = $(VBoxGuestLib_INCS)
VBoxGuestLibBaseLinux_DEFS = VBOX_HGCM VBGL_VBOXGUEST LOG_TO_BACKDOOR
#
# VBoxGuestR0LibOS2
#
VBoxGuestR0LibOS2_TEMPLATE = VBOXOS2GUESTR0LIB
VBoxGuestR0LibOS2_SOURCES = $(SOURCES_GUESTLIB)
VBoxGuestR0LibOS2_INCS = $(VBoxGuestLib_INCS)
VBoxGuestR0LibOS2_DEFS = VBOX_HGCM
#
# VBoxGuestR0LibBaseOS2
#
VBoxGuestR0LibBaseOS2_TEMPLATE = VBOXOS2GUESTR0LIB
VBoxGuestR0LibBaseOS2_SOURCES = $(SOURCES_GUESTLIBBASE)
VBoxGuestR0LibBaseOS2_INCS = $(VBoxGuestLib_INCS)
VBoxGuestR0LibBaseOS2_DEFS = VBOX_HGCM VBGL_VBOXGUEST
#
# VBoxGuestR3LibBaseOS2
#
VBoxGuestR3LibOS2_TEMPLATE = VBOXOS2GUESTR3LIB
VBoxGuestR3LibOS2_SOURCES = VBoxGuestR3Lib.cpp
#VBoxGuestR3LibOS2_DEFS = VBOX_HGCM
include $(PATH_KBUILD)/subfooter.kmk