VirtualBox

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

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

FE/VBoxManage: add support for VDE networking. Contributed by Renzo Davoli, VirtualSquare?, University of Bologna

  • Property svn:eol-style set to native
  • Property svn:keywords set to Author Date Id Revision
File size: 3.0 KB
Line 
1# $Id: Makefile.kmk 29117 2010-05-05 22:59:38Z 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 VBoxManage_DEFS.win = _WIN32_WINNT=0x0500
47 ifdef VBOX_DYNAMIC_NET_ATTACH
48 VBoxManage_DEFS += VBOX_DYNAMIC_NET_ATTACH
49 endif
50 ifdef VBOX_WITH_NETFLT
51 VBoxManage_DEFS += VBOX_WITH_NETFLT
52 endif
53 ifdef VBOX_WITH_VIDEOHWACCEL
54 VBoxManage_DEFS += VBOX_WITH_VIDEOHWACCEL
55 endif
56 VBoxManage_SOURCES = \
57 VBoxManage.cpp \
58 VBoxInternalManage.cpp \
59 VBoxManageControlVM.cpp \
60 VBoxManageDHCPServer.cpp \
61 VBoxManageDisk.cpp \
62 $(if $(VBOX_WITH_GUEST_PROPS),VBoxManageGuestProp.cpp) \
63 $(if $(VBOX_WITH_GUEST_CONTROL),VBoxManageGuestCtrl.cpp) \
64 VBoxManageHelp.cpp \
65 VBoxManageHostonly.cpp \
66 VBoxManageImport.cpp \
67 VBoxManageInfo.cpp \
68 VBoxManageList.cpp \
69 VBoxManageMetrics.cpp \
70 VBoxManageMisc.cpp \
71 VBoxManageModifyVM.cpp \
72 VBoxManageSnapshot.cpp \
73 VBoxManageStorageController.cpp \
74 VBoxManageUSB.cpp
75endif # !VBOX_ONLY_DOCS
76ifneq ($(KBUILD_TARGET),win)
77 # Workaround for buggy gcc-4.3 compilers, see
78 #
79 # http://gcc.gnu.org/bugzilla/show_bug.cgi?id=36474
80 #
81 # Some later revisions of version 4.3.1 are known to work so we assume
82 # that version 4.3.2 or later has this bug definitely fixed.
83 VBoxManage_CXXFLAGS.release += \
84 $(if $(VBOX_GCC_VERSION_CXX),$(if-expr $(VBOX_GCC_VERSION_CXX) < 40300 || $(VBOX_GCC_VERSION_CXX) > 40301,,--param max-fields-for-field-sensitive=0),)
85endif
86ifndef VBOX_ONLY_DOCS
87 VBoxManage_LIBS += $(LIB_DDU)
88endif # !VBOX_ONLY_DOCS
89
90include $(KBUILD_PATH)/subfooter.kmk
91
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