VirtualBox

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

Last change on this file since 25275 was 24907, checked in by vboxsync, 14 years ago

VBoxManage: A little clean up in progress.

  • 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 24907 2009-11-24 14:22:47Z 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_HOSTNETIF_API), VBOX_WITH_HOSTNETIF_API)
48 VBoxManage_DEFS.win = _WIN32_WINNT=0x0500
49 ifdef VBOX_DYNAMIC_NET_ATTACH
50 VBoxManage_DEFS += VBOX_DYNAMIC_NET_ATTACH
51 endif
52 ifdef VBOX_WITH_NETFLT
53 VBoxManage_DEFS += VBOX_WITH_NETFLT
54 endif
55 ifdef VBOX_WITH_VIDEOHWACCEL
56 VBoxManage_DEFS += VBOX_WITH_VIDEOHWACCEL
57 endif
58 VBoxManage_SOURCES = \
59 VBoxManage.cpp \
60 VBoxInternalManage.cpp \
61 VBoxManageControlVM.cpp \
62 VBoxManageDHCPServer.cpp \
63 VBoxManageDisk.cpp \
64 $(if $(VBOX_WITH_GUEST_PROPS),VBoxManageGuestProp.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.

© 2023 Oracle
ContactPrivacy policyTerms of Use