VirtualBox

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

Last change on this file since 14792 was 14646, checked in by vboxsync, 16 years ago

Frontends/VBoxManage: split off metrics command to reduce chance of compiler screwup.

  • Property svn:eol-style set to native
  • Property svn:keywords set to Author Date Id Revision
File size: 2.4 KB
Line 
1# $Id: Makefile.kmk 14646 2008-11-26 14:30:34Z 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 VBoxManageSVN.cpp
32 VBoxManage_LIBS += $(LIB_RUNTIME)
33else # !VBOX_ONLY_DOCS
34 VBoxManage_TEMPLATE = VBOXMAINCLIENTEXE
35 VBoxManage_DEFS += \
36 $(if $(VBOX_WITH_VRDP), VBOX_WITH_VRDP) \
37 $(if $(VBOX_WITH_ALSA), VBOX_WITH_ALSA) \
38 $(if $(VBOX_WITH_PULSE),VBOX_WITH_PULSE) \
39 $(if $(VBOX_WITH_E1000),VBOX_WITH_E1000) \
40 $(if $(VBOX_WITH_AHCI), VBOX_WITH_AHCI) \
41 $(if $(VBOX_WITH_GUEST_PROPS),VBOX_WITH_GUEST_PROPS)
42 VBoxManage_DEFS.win = _WIN32_WINNT=0x0500
43 VBoxManage_SOURCES = \
44 VBoxManage.cpp \
45 VBoxManageInfo.cpp \
46 VBoxManageMetrics.cpp \
47 VBoxManageList.cpp \
48 VBoxInternalManage.cpp \
49 $(if $(VBOX_WITH_GUEST_PROPS),VBoxManageGuestProp.cpp) \
50 VBoxManageSVN.cpp
51endif # !VBOX_ONLY_DOCS
52ifneq ($(KBUILD_TARGET),win)
53 # Workaround for buggy gcc-4.3 compilers, see
54 #
55 # http://gcc.gnu.org/bugzilla/show_bug.cgi?id=36474
56 #
57 # Some later revisions of version 4.3.1 are known to work so we assume
58 # that version 4.3.2 or later has this bug definitely fixed.
59 VBoxManage_CXXFLAGS.release += \
60 $(if $(VBOX_GCC_VERSION_CXX),$(if-expr $(VBOX_GCC_VERSION_CXX) < 40300 || $(VBOX_GCC_VERSION_CXX) > 40301,,--param max-fields-for-field-sensitive=0),)
61endif
62ifndef VBOX_ONLY_DOCS
63 VBoxManage_LIBS += $(LIB_DDU)
64endif # !VBOX_ONLY_DOCS
65
66# VBoxManageSVN.cpp uses VBOX_SVN_REV.
67VBoxManageSVN.cpp_DEFS = VBOX_SVN_REV=$(VBOX_SVN_REV)
68VBoxManageSVN.cpp_DEPS = $(VBOX_SVN_REV_KMK)
69
70include $(KBUILD_PATH)/subfooter.kmk
71
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