Makefile.kmk revision c97989161fbe75bc14cea477a5443bbf474dd3ad
137N/A# $Id$
137N/A## @file
137N/A# Makefile for VBoxManage (the cli frontend).
137N/A#
943N/A
137N/A#
137N/A# Copyright (C) 2006-2007 innotek GmbH
919N/A#
919N/A# This file is part of VirtualBox Open Source Edition (OSE), as
919N/A# available from http://www.virtualbox.org. This file is free software;
919N/A# you can redistribute it and/or modify it under the terms of the GNU
919N/A# General Public License as published by the Free Software Foundation,
919N/A# in version 2 as it comes in the "COPYING" file of the VirtualBox OSE
919N/A# distribution. VirtualBox OSE is distributed in the hope that it will
919N/A# be useful, but WITHOUT ANY WARRANTY of any kind.
919N/A#
919N/A# If you received this file as part of a commercial VirtualBox
919N/A# distribution, then only the terms of your commercial VirtualBox
919N/A# license agreement apply instead of the previous paragraph.
919N/A#
919N/A
919N/A
919N/ADEPTH = ../../../..
919N/Ainclude $(PATH_KBUILD)/header.kmk
137N/A
137N/APROGRAMS = VBoxManage
137N/A
137N/AVBoxManage_TEMPLATE = VBOXMAINCLIENT
493N/AVBoxManage_SOURCES = \
137N/A VBoxManage.cpp \
137N/A VBoxInternalManage.cpp
851N/Aifndef VBOX_OSE
137N/AVBoxManage_SOURCES += \
911N/A VBoxInternalManageVmdk.cpp
911N/Aendif
911N/Aifdef VBOX_WITH_VRDP
911N/A VBoxManage_DEFS += VBOX_VRDP
137N/Aendif
137N/Aifdef VBOX_WITH_ALSA
137N/A VBoxManage_DEFS += VBOX_WITH_ALSA
137N/Aendif
137N/Aifeq ($(BUILD_TARGET),win)
137N/A VBoxManage_LIBS += \
137N/A $(PATH_LIB)/VBoxDDU$(VBOX_SUFF_LIB) \
137N/A $(PATH_LIB)/VBoxXML$(VBOX_SUFF_LIB)
137N/Aelse
493N/A VBoxManage_LIBS += \
137N/A $(PATH_BIN)/VBoxDDU$(VBOX_SUFF_DLL) \
137N/A $(PATH_BIN)/VBoxXML$(VBOX_SUFF_DLL)
137N/Aendif
493N/A
137N/A
137N/Ainclude $(PATH_KBUILD)/footer.kmk
493N/A
137N/A