Makefile.kmk revision 8ee47d082add109f015172febebe4fb1cc9b5dae
af062818b47340eef15700d2f0211576ba3506eevboxsync# $Id$
af062818b47340eef15700d2f0211576ba3506eevboxsync## @file
af062818b47340eef15700d2f0211576ba3506eevboxsync# Makefile for VBoxManage (the cli frontend).
af062818b47340eef15700d2f0211576ba3506eevboxsync#
af062818b47340eef15700d2f0211576ba3506eevboxsync
af062818b47340eef15700d2f0211576ba3506eevboxsync#
af062818b47340eef15700d2f0211576ba3506eevboxsync# Copyright (C) 2006-2007 innotek GmbH
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 as published by the Free Software Foundation,
af062818b47340eef15700d2f0211576ba3506eevboxsync# in version 2 as it comes in the "COPYING" file of the VirtualBox OSE
af062818b47340eef15700d2f0211576ba3506eevboxsync# distribution. VirtualBox OSE is distributed in the hope that it will
af062818b47340eef15700d2f0211576ba3506eevboxsync# be useful, but WITHOUT ANY WARRANTY of any kind.
af062818b47340eef15700d2f0211576ba3506eevboxsync#
af062818b47340eef15700d2f0211576ba3506eevboxsync# If you received this file as part of a commercial VirtualBox
b955672b950093ff7416d1269dd4d3b69983bd8fvboxsync# distribution, then only the terms of your commercial VirtualBox
b955672b950093ff7416d1269dd4d3b69983bd8fvboxsync# license agreement apply instead of the previous paragraph.
4b9d6701570cb98fd36e209314239d104ec584d3vboxsync#
4b9d6701570cb98fd36e209314239d104ec584d3vboxsync
b955672b950093ff7416d1269dd4d3b69983bd8fvboxsync
b955672b950093ff7416d1269dd4d3b69983bd8fvboxsyncDEPTH = ../../../..
b955672b950093ff7416d1269dd4d3b69983bd8fvboxsyncinclude $(PATH_KBUILD)/header.kmk
b955672b950093ff7416d1269dd4d3b69983bd8fvboxsync
b955672b950093ff7416d1269dd4d3b69983bd8fvboxsyncPROGRAMS = VBoxManage
589fd26cedb2b4ebbed14f2964cad03cc8ebbca2vboxsync
af062818b47340eef15700d2f0211576ba3506eevboxsyncVBoxManage_TEMPLATE = VBOXMAINCLIENTEXE
af062818b47340eef15700d2f0211576ba3506eevboxsyncVBoxManage_SOURCES = \
af062818b47340eef15700d2f0211576ba3506eevboxsync VBoxManage.cpp \
af062818b47340eef15700d2f0211576ba3506eevboxsync VBoxInternalManage.cpp
af062818b47340eef15700d2f0211576ba3506eevboxsyncifndef VBOX_OSE
af062818b47340eef15700d2f0211576ba3506eevboxsyncVBoxManage_SOURCES += \
af062818b47340eef15700d2f0211576ba3506eevboxsync VBoxInternalManageVmdk.cpp
af062818b47340eef15700d2f0211576ba3506eevboxsyncendif
af062818b47340eef15700d2f0211576ba3506eevboxsyncifdef VBOX_WITH_VRDP
af062818b47340eef15700d2f0211576ba3506eevboxsync VBoxManage_DEFS += VBOX_VRDP
af062818b47340eef15700d2f0211576ba3506eevboxsyncendif
af062818b47340eef15700d2f0211576ba3506eevboxsyncifdef VBOX_WITH_ALSA
af062818b47340eef15700d2f0211576ba3506eevboxsync VBoxManage_DEFS += VBOX_WITH_ALSA
af062818b47340eef15700d2f0211576ba3506eevboxsyncendif
af062818b47340eef15700d2f0211576ba3506eevboxsyncifeq ($(BUILD_TARGET),win)
af062818b47340eef15700d2f0211576ba3506eevboxsync VBoxManage_LIBS += \
af062818b47340eef15700d2f0211576ba3506eevboxsync $(PATH_LIB)/VBoxDDU$(VBOX_SUFF_LIB) \
af062818b47340eef15700d2f0211576ba3506eevboxsync $(PATH_LIB)/VBoxXML$(VBOX_SUFF_LIB)
af062818b47340eef15700d2f0211576ba3506eevboxsyncelse
af062818b47340eef15700d2f0211576ba3506eevboxsync VBoxManage_LIBS += \
af062818b47340eef15700d2f0211576ba3506eevboxsync $(PATH_BIN)/VBoxDDU$(VBOX_SUFF_DLL) \
af062818b47340eef15700d2f0211576ba3506eevboxsync $(PATH_BIN)/VBoxXML$(VBOX_SUFF_DLL)
af062818b47340eef15700d2f0211576ba3506eevboxsyncendif
af062818b47340eef15700d2f0211576ba3506eevboxsync
af062818b47340eef15700d2f0211576ba3506eevboxsync
af062818b47340eef15700d2f0211576ba3506eevboxsyncinclude $(PATH_KBUILD)/footer.kmk
af062818b47340eef15700d2f0211576ba3506eevboxsync
af062818b47340eef15700d2f0211576ba3506eevboxsync