VirtualBox

source: vbox/trunk/src/VBox/Frontends/VBoxManage/Makefile.kmk@ 31196

Last change on this file since 31196 was 29555, checked in by vboxsync, 15 years ago

VBoxMange: print exit status in readable form

  • Property svn:eol-style set to native
  • Property svn:keywords set to Author Date Id Revision
File size: 3.1 KB
Line 
1# $Id: Makefile.kmk 29555 2010-05-17 14:37:48Z 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
18SUB_DEPTH = ../../../..
19include $(KBUILD_PATH)/subheader.kmk
20
21PROGRAMS += VBoxManage
22ifdef VBOX_ONLY_DOCS
23 VBoxManage_TEMPLATE = VBOXR3NPEXE
24 VBoxManage_DEFS += VBOX_ONLY_DOCS
25 VBoxManage_SOURCES = \
26 VBoxManage.cpp \
27 VBoxManageHelp.cpp
28 VBoxManage_LIBS += $(LIB_RUNTIME)
29else # !VBOX_ONLY_DOCS
30 VBoxManage_TEMPLATE = VBOXMAINCLIENTEXE
31 VBoxManage_DEFS += \
32 $(if $(VBOX_WITH_VBOXSDL), VBOX_WITH_VBOXSDL) \
33 $(if $(VBOX_WITH_VRDP), VBOX_WITH_VRDP) \
34 $(if $(VBOX_WITH_HEADLESS), VBOX_WITH_HEADLESS) \
35 $(if $(VBOX_WITH_ALSA), VBOX_WITH_ALSA) \
36 $(if $(VBOX_WITH_SOLARIS_OSS), VBOX_WITH_SOLARIS_OSS) \
37 $(if $(VBOX_WITH_PULSE),VBOX_WITH_PULSE) \
38 $(if $(VBOX_WITH_E1000),VBOX_WITH_E1000) \
39 $(if $(VBOX_WITH_VIRTIO),VBOX_WITH_VIRTIO) \
40 $(if $(VBOX_WITH_AHCI), VBOX_WITH_AHCI) \
41 $(if $(VBOX_WITH_SCSI), VBOX_WITH_SCSI) \
42 $(if $(VBOX_WITH_GUEST_PROPS),VBOX_WITH_GUEST_PROPS) \
43 $(if $(VBOX_WITH_GUEST_CONTROL),VBOX_WITH_GUEST_CONTROL) \
44 $(if $(VBOX_WITH_HOSTNETIF_API), VBOX_WITH_HOSTNETIF_API) \
45 $(if $(VBOX_WITH_VDE), VBOX_WITH_VDE) \
46 $(if $(VBOX_WITH_HGCM), VBOX_WITH_HGCM)
47 VBoxManage_DEFS.win = _WIN32_WINNT=0x0500
48 ifdef VBOX_DYNAMIC_NET_ATTACH
49 VBoxManage_DEFS += VBOX_DYNAMIC_NET_ATTACH
50 endif
51 ifdef VBOX_WITH_NETFLT
52 VBoxManage_DEFS += VBOX_WITH_NETFLT
53 endif
54 ifdef VBOX_WITH_VIDEOHWACCEL
55 VBoxManage_DEFS += VBOX_WITH_VIDEOHWACCEL
56 endif
57 VBoxManage_SOURCES = \
58 VBoxManage.cpp \
59 VBoxInternalManage.cpp \
60 VBoxManageControlVM.cpp \
61 VBoxManageDHCPServer.cpp \
62 VBoxManageDisk.cpp \
63 $(if $(VBOX_WITH_GUEST_PROPS),VBoxManageGuestProp.cpp) \
64 $(if $(VBOX_WITH_GUEST_CONTROL),VBoxManageGuestCtrl.cpp) \
65 VBoxManageHelp.cpp \
66 VBoxManageHostonly.cpp \
67 VBoxManageImport.cpp \
68 VBoxManageInfo.cpp \
69 VBoxManageList.cpp \
70 VBoxManageMetrics.cpp \
71 VBoxManageMisc.cpp \
72 VBoxManageModifyVM.cpp \
73 VBoxManageSnapshot.cpp \
74 VBoxManageStorageController.cpp \
75 VBoxManageUSB.cpp
76endif # !VBOX_ONLY_DOCS
77ifneq ($(KBUILD_TARGET),win)
78 # Workaround for buggy gcc-4.3 compilers, see
79 #
80 # http://gcc.gnu.org/bugzilla/show_bug.cgi?id=36474
81 #
82 # Some later revisions of version 4.3.1 are known to work so we assume
83 # that version 4.3.2 or later has this bug definitely fixed.
84 VBoxManage_CXXFLAGS.release += \
85 $(if $(VBOX_GCC_VERSION_CXX),$(if-expr $(VBOX_GCC_VERSION_CXX) < 40300 || $(VBOX_GCC_VERSION_CXX) > 40301,,--param max-fields-for-field-sensitive=0),)
86endif
87ifndef VBOX_ONLY_DOCS
88 VBoxManage_LIBS += $(LIB_DDU)
89endif # !VBOX_ONLY_DOCS
90
91include $(KBUILD_PATH)/subfooter.kmk
92
Note: See TracBrowser for help on using the repository browser.

© 2024 Oracle Support Privacy / Do Not Sell My Info Terms of Use Trademark Policy Automated Access Etiquette