1 | # $Id: Makefile.kmk 33590 2010-10-29 08:55:09Z vboxsync $
|
---|
2 | ## @file
|
---|
3 | # Sub-Makefile for VBoxManage (the cli frontend).
|
---|
4 | #
|
---|
5 |
|
---|
6 | #
|
---|
7 | # Copyright (C) 2006-2007 Oracle Corporation
|
---|
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 | SUB_DEPTH = ../../../..
|
---|
19 | include $(KBUILD_PATH)/subheader.kmk
|
---|
20 |
|
---|
21 | PROGRAMS += VBoxManage
|
---|
22 | ifdef VBOX_ONLY_DOCS
|
---|
23 | VBoxManage_TEMPLATE = VBOXR3NPEXE
|
---|
24 | VBoxManage_DEFS += VBOX_ONLY_DOCS
|
---|
25 | VBoxManage_SOURCES = \
|
---|
26 | VBoxManage.cpp \
|
---|
27 | VBoxManageHelp.cpp \
|
---|
28 | $(if $(VBOX_WITH_GUEST_PROPS),VBoxManageGuestProp.cpp) \
|
---|
29 | $(if $(VBOX_WITH_GUEST_CONTROL),VBoxManageGuestCtrl.cpp)
|
---|
30 | VBoxManage_LIBS += $(LIB_RUNTIME)
|
---|
31 | else # !VBOX_ONLY_DOCS
|
---|
32 | VBoxManage_TEMPLATE = VBOXMAINCLIENTEXE
|
---|
33 | VBoxManage_DEFS.win = _WIN32_WINNT=0x0500
|
---|
34 | VBoxManage_SOURCES = \
|
---|
35 | VBoxManage.cpp \
|
---|
36 | VBoxInternalManage.cpp \
|
---|
37 | VBoxManageControlVM.cpp \
|
---|
38 | VBoxManageDHCPServer.cpp \
|
---|
39 | VBoxManageDisk.cpp \
|
---|
40 | $(if $(VBOX_WITH_GUEST_PROPS),VBoxManageGuestProp.cpp) \
|
---|
41 | $(if $(VBOX_WITH_GUEST_CONTROL),VBoxManageGuestCtrl.cpp) \
|
---|
42 | VBoxManageHelp.cpp \
|
---|
43 | VBoxManageHostonly.cpp \
|
---|
44 | VBoxManageAppliance.cpp \
|
---|
45 | VBoxManageInfo.cpp \
|
---|
46 | VBoxManageList.cpp \
|
---|
47 | VBoxManageMetrics.cpp \
|
---|
48 | VBoxManageMisc.cpp \
|
---|
49 | VBoxManageModifyVM.cpp \
|
---|
50 | VBoxManageSnapshot.cpp \
|
---|
51 | VBoxManageStorageController.cpp \
|
---|
52 | VBoxManageUSB.cpp
|
---|
53 | endif # !VBOX_ONLY_DOCS
|
---|
54 |
|
---|
55 | VBoxManage_DEFS += \
|
---|
56 | $(if $(VBOX_WITH_AHCI), VBOX_WITH_AHCI) \
|
---|
57 | $(if $(VBOX_WITH_ALSA), VBOX_WITH_ALSA) \
|
---|
58 | $(if $(VBOX_WITH_COPYTOGUEST),VBOX_WITH_COPYTOGUEST) \
|
---|
59 | $(if $(VBOX_WITH_E1000),VBOX_WITH_E1000) \
|
---|
60 | $(if $(VBOX_WITH_GUEST_CONTROL),VBOX_WITH_GUEST_CONTROL) \
|
---|
61 | $(if $(VBOX_WITH_GUEST_PROPS),VBOX_WITH_GUEST_PROPS) \
|
---|
62 | $(if $(VBOX_WITH_HEADLESS), VBOX_WITH_HEADLESS) \
|
---|
63 | $(if $(VBOX_WITH_HGCM), VBOX_WITH_HGCM) \
|
---|
64 | $(if $(VBOX_WITH_HOSTNETIF_API), VBOX_WITH_HOSTNETIF_API) \
|
---|
65 | $(if $(VBOX_WITH_NETFLT), VBOX_WITH_NETFLT) \
|
---|
66 | $(if $(VBOX_WITH_PULSE),VBOX_WITH_PULSE) \
|
---|
67 | $(if $(VBOX_WITH_SCSI), VBOX_WITH_SCSI) \
|
---|
68 | $(if $(VBOX_WITH_SOLARIS_OSS), VBOX_WITH_SOLARIS_OSS) \
|
---|
69 | $(if $(VBOX_WITH_VBOXSDL), VBOX_WITH_VBOXSDL) \
|
---|
70 | $(if $(VBOX_WITH_VDE), VBOX_WITH_VDE) \
|
---|
71 | $(if $(VBOX_WITH_VIDEOHWACCEL), VBOX_WITH_VIDEOHWACCEL) \
|
---|
72 | $(if $(VBOX_WITH_VIRTIO),VBOX_WITH_VIRTIO)
|
---|
73 |
|
---|
74 | ifneq ($(KBUILD_TARGET),win)
|
---|
75 | # Workaround for buggy gcc-4.3 compilers, see
|
---|
76 | #
|
---|
77 | # http://gcc.gnu.org/bugzilla/show_bug.cgi?id=36474
|
---|
78 | #
|
---|
79 | # Some later revisions of version 4.3.1 are known to work so we assume
|
---|
80 | # that version 4.3.2 or later has this bug definitely fixed.
|
---|
81 | VBoxManage_CXXFLAGS.release += \
|
---|
82 | $(if $(VBOX_GCC_VERSION_CXX),$(if-expr $(VBOX_GCC_VERSION_CXX) < 40300 || $(VBOX_GCC_VERSION_CXX) > 40301,,--param max-fields-for-field-sensitive=0),)
|
---|
83 | endif
|
---|
84 | ifndef VBOX_ONLY_DOCS
|
---|
85 | VBoxManage_LIBS += $(LIB_DDU)
|
---|
86 | endif # !VBOX_ONLY_DOCS
|
---|
87 |
|
---|
88 | include $(KBUILD_PATH)/subfooter.kmk
|
---|
89 |
|
---|