Makefile.kmk revision 01b927bd5e6f4ed282b59586dbadeb7739e5fa37
af062818b47340eef15700d2f0211576ba3506eevboxsync# $Id$
af062818b47340eef15700d2f0211576ba3506eevboxsync## @file
af062818b47340eef15700d2f0211576ba3506eevboxsync# Sub-Makefile for the Guest Additions Command Line Management Interface.
af062818b47340eef15700d2f0211576ba3506eevboxsync#
af062818b47340eef15700d2f0211576ba3506eevboxsync
af062818b47340eef15700d2f0211576ba3506eevboxsync#
af062818b47340eef15700d2f0211576ba3506eevboxsync# Copyright (C) 2010-2012 Oracle Corporation
af062818b47340eef15700d2f0211576ba3506eevboxsync#
af062818b47340eef15700d2f0211576ba3506eevboxsync# This file is part of VirtualBox Open Source Edition (OSE), as
af062818b47340eef15700d2f0211576ba3506eevboxsync# available from http://www.virtualbox.org. This file is free software;
af062818b47340eef15700d2f0211576ba3506eevboxsync# you can redistribute it and/or modify it under the terms of the GNU
af062818b47340eef15700d2f0211576ba3506eevboxsync# General Public License (GPL) as published by the Free Software
af062818b47340eef15700d2f0211576ba3506eevboxsync# Foundation, in version 2 as it comes in the "COPYING" file of the
af062818b47340eef15700d2f0211576ba3506eevboxsync# VirtualBox OSE distribution. VirtualBox OSE is distributed in the
af062818b47340eef15700d2f0211576ba3506eevboxsync# hope that it will be useful, but WITHOUT ANY WARRANTY of any kind.
af062818b47340eef15700d2f0211576ba3506eevboxsync#
af062818b47340eef15700d2f0211576ba3506eevboxsync
af062818b47340eef15700d2f0211576ba3506eevboxsyncSUB_DEPTH = ../../../../..
af062818b47340eef15700d2f0211576ba3506eevboxsyncinclude $(KBUILD_PATH)/subheader.kmk
af062818b47340eef15700d2f0211576ba3506eevboxsync
af062818b47340eef15700d2f0211576ba3506eevboxsync# Include sub-makefile(s).
af062818b47340eef15700d2f0211576ba3506eevboxsyncinclude $(PATH_SUB_CURRENT)/testcase/Makefile.kmk
af062818b47340eef15700d2f0211576ba3506eevboxsync
af062818b47340eef15700d2f0211576ba3506eevboxsync#
af062818b47340eef15700d2f0211576ba3506eevboxsync# VBoxControl
af062818b47340eef15700d2f0211576ba3506eevboxsync#
af062818b47340eef15700d2f0211576ba3506eevboxsyncPROGRAMS += VBoxControl
af062818b47340eef15700d2f0211576ba3506eevboxsyncVBoxControl_TEMPLATE = NewVBoxGuestR3Exe
af062818b47340eef15700d2f0211576ba3506eevboxsyncifeq ($(KBUILD_TARGET),win)
af062818b47340eef15700d2f0211576ba3506eevboxsync ifdef VBOX_SIGN_ADDITIONS # (See the main Windows Additions makefile.)
af062818b47340eef15700d2f0211576ba3506eevboxsync VBoxControl_INSTTYPE = none
af062818b47340eef15700d2f0211576ba3506eevboxsync VBoxControl_DEBUG_INSTTYPE = both
af062818b47340eef15700d2f0211576ba3506eevboxsync endif
af062818b47340eef15700d2f0211576ba3506eevboxsyncendif
af062818b47340eef15700d2f0211576ba3506eevboxsyncVBoxControl_DEFS += \
af062818b47340eef15700d2f0211576ba3506eevboxsync $(if $(VBOX_WITH_HGCM),VBOX_WITH_HGCM,) \
af062818b47340eef15700d2f0211576ba3506eevboxsync $(if $(VBOX_WITH_GUEST_PROPS),VBOX_WITH_GUEST_PROPS,) \
af062818b47340eef15700d2f0211576ba3506eevboxsync $(if $(VBOX_WITH_SHARED_FOLDERS),VBOX_WITH_SHARED_FOLDERS,)
af062818b47340eef15700d2f0211576ba3506eevboxsyncVBoxControl_DEFS.win += \
af062818b47340eef15700d2f0211576ba3506eevboxsync $(if $(VBOX_WITH_DPC_LATENCY_CHECKER),VBOX_WITH_DPC_LATENCY_CHECKER,)
af062818b47340eef15700d2f0211576ba3506eevboxsyncVBoxControl_SOURCES = \
af062818b47340eef15700d2f0211576ba3506eevboxsync VBoxControl.cpp
af062818b47340eef15700d2f0211576ba3506eevboxsyncVBoxControl_SOURCES.win = \
af062818b47340eef15700d2f0211576ba3506eevboxsync VBoxControl.rc
af062818b47340eef15700d2f0211576ba3506eevboxsync
af062818b47340eef15700d2f0211576ba3506eevboxsyncinclude $(FILE_KBUILD_SUB_FOOTER)
af062818b47340eef15700d2f0211576ba3506eevboxsync
af062818b47340eef15700d2f0211576ba3506eevboxsync