1 | # $Id: Makefile.kmk 7457 2008-03-14 12:17:16Z vboxsync $
|
---|
2 | ## @file
|
---|
3 | # Sub-Makefile for VBoxManage (the cli frontend).
|
---|
4 | #
|
---|
5 |
|
---|
6 | #
|
---|
7 | # Copyright (C) 2006-2007 innotek GmbH
|
---|
8 | #
|
---|
9 | # This file is part of VirtualBox Open Source Edition (OSE), as
|
---|
10 | # available from http://www.virtualbox.org. This file is free software;
|
---|
11 | # you can redistribute it and/or modify it under the terms of the GNU
|
---|
12 | # General Public License (GPL) as published by the Free Software
|
---|
13 | # Foundation, in version 2 as it comes in the "COPYING" file of the
|
---|
14 | # VirtualBox OSE distribution. VirtualBox OSE is distributed in the
|
---|
15 | # hope that it will be useful, but WITHOUT ANY WARRANTY of any kind.
|
---|
16 | #
|
---|
17 |
|
---|
18 |
|
---|
19 | DEPTH ?= ../../../..
|
---|
20 | SUB_DEPTH = ..
|
---|
21 | include $(PATH_KBUILD)/subheader.kmk
|
---|
22 |
|
---|
23 | PROGRAMS += VBoxManage
|
---|
24 | VBoxManage_TEMPLATE = VBOXMAINCLIENTEXE
|
---|
25 | VBoxManage_DEFS += $(if $(VBOX_WITH_VRDP),VBOX_VRDP,) \
|
---|
26 | $(if $(VBOX_WITH_ALSA),VBOX_WITH_ALSA,) \
|
---|
27 | $(if $(VBOX_WITH_PULSE),VBOX_WITH_PULSE,) \
|
---|
28 | $(if $(VBOX_WITH_E1000),VBOX_WITH_E1000,) \
|
---|
29 | $(if $(VBOX_WITH_AHCI),VBOX_WITH_AHCI,)
|
---|
30 | VBoxManage_SOURCES = \
|
---|
31 | VBoxManage.cpp \
|
---|
32 | VBoxInternalManage.cpp \
|
---|
33 | VBoxManageSVN.cpp
|
---|
34 | ifndef VBOX_OSE
|
---|
35 | VBoxManage_SOURCES += \
|
---|
36 | VBoxInternalManageVmdk.cpp
|
---|
37 | endif
|
---|
38 | VBoxManage_LIBS += $(LIB_DDU)
|
---|
39 |
|
---|
40 | # VBoxManageSVN.cpp uses VBOX_SVN_REV.
|
---|
41 | VBoxManageSVN.cpp_DEFS = VBOX_SVN_REV=$(VBOX_SVN_REV)
|
---|
42 | VBoxManageSVN.cpp_DEPS = $(VBOX_SVN_REV_KMK)
|
---|
43 |
|
---|
44 | include $(PATH_KBUILD)/subfooter.kmk
|
---|
45 |
|
---|