Makefile.kmk revision e0e0c19eefceaf5d4ec40f9466b58a771f50e799
55e189007c707fb827b8b287903c258de234bd12Lennart Poettering# Sub-Makefile for the common guest addition code library.
55e189007c707fb827b8b287903c258de234bd12Lennart Poettering# Copyright (C) 2006-2007 Sun Microsystems, Inc.
55e189007c707fb827b8b287903c258de234bd12Lennart Poettering# This file is part of VirtualBox Open Source Edition (OSE), as
55e189007c707fb827b8b287903c258de234bd12Lennart Poettering# available from http://www.virtualbox.org. This file is free software;
55e189007c707fb827b8b287903c258de234bd12Lennart Poettering# you can redistribute it and/or modify it under the terms of the GNU
55e189007c707fb827b8b287903c258de234bd12Lennart Poettering# General Public License (GPL) as published by the Free Software
55e189007c707fb827b8b287903c258de234bd12Lennart Poettering# Foundation, in version 2 as it comes in the "COPYING" file of the
55e189007c707fb827b8b287903c258de234bd12Lennart Poettering# VirtualBox OSE distribution. VirtualBox OSE is distributed in the
55e189007c707fb827b8b287903c258de234bd12Lennart Poettering# hope that it will be useful, but WITHOUT ANY WARRANTY of any kind.
55e189007c707fb827b8b287903c258de234bd12Lennart Poettering# Please contact Sun Microsystems, Inc., 4150 Network Circle, Santa
55e189007c707fb827b8b287903c258de234bd12Lennart Poettering# Clara, CA 95054 USA or visit http://www.sun.com if you need
55e189007c707fb827b8b287903c258de234bd12Lennart Poettering# additional information or have any questions.
55e189007c707fb827b8b287903c258de234bd12Lennart PoetteringSUB_DEPTH = ../../../../..
55e189007c707fb827b8b287903c258de234bd12Lennart Poetteringinclude $(KBUILD_PATH)/subheader.kmk
55e189007c707fb827b8b287903c258de234bd12Lennart Poettering# Target config.
55e189007c707fb827b8b287903c258de234bd12Lennart Poettering VBoxGuestR0Lib \
55e189007c707fb827b8b287903c258de234bd12Lennart Poettering VBoxGuestR0LibBase
55e189007c707fb827b8b287903c258de234bd12Lennart Poettering VBoxGuestR3Lib \
55e189007c707fb827b8b287903c258de234bd12Lennart Poettering VBoxGuestR3LibShared
55e189007c707fb827b8b287903c258de234bd12Lennart Poetteringif1of ($(KBUILD_TARGET), freebsd linux netbsd openbsd)
55e189007c707fb827b8b287903c258de234bd12Lennart Poettering LIBRARIES += \
55e189007c707fb827b8b287903c258de234bd12Lennart Poettering VBoxGuestR3LibXFree86
55e189007c707fb827b8b287903c258de234bd12Lennart Poetteringifndef VBOX_WITH_ADDITION_DRIVERS
55e189007c707fb827b8b287903c258de234bd12Lennart Poettering if1of ($(KBUILD_TARGET), linux l4) # All drivers are optional, can skip RuntimeGuestR0.
55e189007c707fb827b8b287903c258de234bd12Lennart Poettering LIBRARIES := $(filter-out VBoxGuestR0Lib VBoxGuestR0LibBase, $(LIBRARIES))
55e189007c707fb827b8b287903c258de234bd12Lennart Poettering# VBoxGuestR0Lib
55e189007c707fb827b8b287903c258de234bd12Lennart PoetteringVBoxGuestR0Lib_TEMPLATE = VBOXGUESTR0LIB
55e189007c707fb827b8b287903c258de234bd12Lennart PoetteringVBoxGuestR0Lib_DEFS = VBOX_WITH_HGCM
55e189007c707fb827b8b287903c258de234bd12Lennart PoetteringVBoxGuestR0Lib_INCS = \
55e189007c707fb827b8b287903c258de234bd12Lennart Poettering $(PATH_VBoxGuestR0Lib)
55e189007c707fb827b8b287903c258de234bd12Lennart PoetteringVBoxGuestR0Lib_SOURCES = \
Init.cpp \
$(if $(VBOX_WITH_GUEST_PROPS),VBoxGuestR3LibGuestProp.cpp,) \
ifeq ($(KBUILD_TARGET),win) ## @todo get rid of this hack (as soon as it's all implemented / #defined).
$(if $(VBOX_WITH_GUEST_PROPS),VBoxGuestR3LibGuestProp.cpp,) \
$(if $(VBOX_WITH_GUEST_PROPS),VBoxGuestR3LibGuestProp.cpp,) \
$(VBOX_PATH_X11_XFREE_4_2)/programs/Xserver/hw/xfree86/common/ \
$(VBOX_PATH_X11_XFREE_4_2)/programs/Xserver/hw/xfree86/os-support \
$(VBOX_PATH_X11_XFREE_4_2)/programs/Xserver/include \
$(VBOX_PATH_X11_XFREE_4_2)/exports/include/X11
include $(KBUILD_PATH)/subfooter.kmk