VirtualBox

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

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

Guest Control: Update (VBoxManage, Main, Host Service, VbglR3), not enabled by default.

  • Property svn:eol-style set to native
  • Property svn:keywords set to Author Date Id Revision
File size: 3.2 KB
Line 
1# $Id: Makefile.kmk 27703 2010-03-25 13:17:01Z vboxsync $
2## @file
3# Sub-Makefile for VBoxManage (the cli frontend).
4#
5
6#
7# Copyright (C) 2006-2007 Sun Microsystems, Inc.
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# Please contact Sun Microsystems, Inc., 4150 Network Circle, Santa
18# Clara, CA 95054 USA or visit http://www.sun.com if you need
19# additional information or have any questions.
20#
21
22SUB_DEPTH = ../../../..
23include $(KBUILD_PATH)/subheader.kmk
24
25PROGRAMS += VBoxManage
26ifdef VBOX_ONLY_DOCS
27 VBoxManage_TEMPLATE = VBOXR3NPEXE
28 VBoxManage_DEFS += VBOX_ONLY_DOCS
29 VBoxManage_SOURCES = \
30 VBoxManage.cpp \
31 VBoxManageHelp.cpp
32 VBoxManage_LIBS += $(LIB_RUNTIME)
33else # !VBOX_ONLY_DOCS
34 VBoxManage_TEMPLATE = VBOXMAINCLIENTEXE
35 VBoxManage_DEFS += \
36 $(if $(VBOX_WITH_VBOXSDL), VBOX_WITH_VBOXSDL) \
37 $(if $(VBOX_WITH_VRDP), VBOX_WITH_VRDP) \
38 $(if $(VBOX_WITH_HEADLESS), VBOX_WITH_HEADLESS) \
39 $(if $(VBOX_WITH_ALSA), VBOX_WITH_ALSA) \
40 $(if $(VBOX_WITH_SOLARIS_OSS), VBOX_WITH_SOLARIS_OSS) \
41 $(if $(VBOX_WITH_PULSE),VBOX_WITH_PULSE) \
42 $(if $(VBOX_WITH_E1000),VBOX_WITH_E1000) \
43 $(if $(VBOX_WITH_VIRTIO),VBOX_WITH_VIRTIO) \
44 $(if $(VBOX_WITH_AHCI), VBOX_WITH_AHCI) \
45 $(if $(VBOX_WITH_SCSI), VBOX_WITH_SCSI) \
46 $(if $(VBOX_WITH_GUEST_PROPS),VBOX_WITH_GUEST_PROPS) \
47 $(if $(VBOX_WITH_GUEST_CONTROL),VBOX_WITH_GUEST_CONTROL) \
48 $(if $(VBOX_WITH_HOSTNETIF_API), VBOX_WITH_HOSTNETIF_API)
49 VBoxManage_DEFS.win = _WIN32_WINNT=0x0500
50 ifdef VBOX_DYNAMIC_NET_ATTACH
51 VBoxManage_DEFS += VBOX_DYNAMIC_NET_ATTACH
52 endif
53 ifdef VBOX_WITH_NETFLT
54 VBoxManage_DEFS += VBOX_WITH_NETFLT
55 endif
56 ifdef VBOX_WITH_VIDEOHWACCEL
57 VBoxManage_DEFS += VBOX_WITH_VIDEOHWACCEL
58 endif
59 VBoxManage_SOURCES = \
60 VBoxManage.cpp \
61 VBoxInternalManage.cpp \
62 VBoxManageControlVM.cpp \
63 VBoxManageDHCPServer.cpp \
64 VBoxManageDisk.cpp \
65 $(if $(VBOX_WITH_GUEST_PROPS),VBoxManageGuestProp.cpp) \
66 $(if $(VBOX_WITH_GUEST_CONTROL),VBoxManageGuestCtrl.cpp) \
67 VBoxManageHelp.cpp \
68 VBoxManageHostonly.cpp \
69 VBoxManageImport.cpp \
70 VBoxManageInfo.cpp \
71 VBoxManageList.cpp \
72 VBoxManageMetrics.cpp \
73 VBoxManageMisc.cpp \
74 VBoxManageModifyVM.cpp \
75 VBoxManageSnapshot.cpp \
76 VBoxManageStorageController.cpp \
77 VBoxManageUSB.cpp
78endif # !VBOX_ONLY_DOCS
79ifneq ($(KBUILD_TARGET),win)
80 # Workaround for buggy gcc-4.3 compilers, see
81 #
82 # http://gcc.gnu.org/bugzilla/show_bug.cgi?id=36474
83 #
84 # Some later revisions of version 4.3.1 are known to work so we assume
85 # that version 4.3.2 or later has this bug definitely fixed.
86 VBoxManage_CXXFLAGS.release += \
87 $(if $(VBOX_GCC_VERSION_CXX),$(if-expr $(VBOX_GCC_VERSION_CXX) < 40300 || $(VBOX_GCC_VERSION_CXX) > 40301,,--param max-fields-for-field-sensitive=0),)
88endif
89ifndef VBOX_ONLY_DOCS
90 VBoxManage_LIBS += $(LIB_DDU)
91endif # !VBOX_ONLY_DOCS
92
93include $(KBUILD_PATH)/subfooter.kmk
94
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