VirtualBox

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

Last change on this file since 45234 was 45156, checked in by vboxsync, 12 years ago

Frontends/VBoxManage: listing/manipulating nat networks if VBOX_WITH_NAT_SERVICE is defined.

  • Property svn:eol-style set to native
  • Property svn:keywords set to Author Date Id Revision
File size: 3.4 KB
Line 
1# $Id: Makefile.kmk 45156 2013-03-25 05:50:09Z vboxsync $
2## @file
3# Sub-Makefile for VBoxManage (the cli frontend).
4#
5
6#
7# Copyright (C) 2006-2012 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
21ifdef VBOX_WITH_DOCS
22 PROGRAMS += VBoxManageHelp
23endif
24VBoxManageHelp_TEMPLATE = VBoxAdvBldProg
25VBoxManageHelp_DEFS += VBOX_ONLY_DOCS
26VBoxManageHelp_SOURCES = \
27 VBoxManage.cpp \
28 VBoxManageHelp.cpp \
29 $(if $(VBOX_WITH_GUEST_PROPS),VBoxManageGuestProp.cpp) \
30 $(if $(VBOX_WITH_GUEST_CONTROL),VBoxManageGuestCtrl.cpp)
31
32ifndef VBOX_ONLY_DOCS
33 PROGRAMS += VBoxManage
34endif
35VBoxManage_TEMPLATE = VBOXMAINCLIENTEXE
36VBoxManage_DEFS.win = _WIN32_WINNT=0x0500
37VBoxManage_SOURCES = \
38 VBoxManage.cpp \
39 VBoxInternalManage.cpp \
40 VBoxManageAppliance.cpp \
41 VBoxManageBandwidthControl.cpp \
42 VBoxManageControlVM.cpp \
43 VBoxManageDebugVM.cpp \
44 VBoxManageDHCPServer.cpp \
45 VBoxManageDisk.cpp \
46 $(if $(VBOX_WITH_GUEST_CONTROL),VBoxManageGuestCtrl.cpp) \
47 $(if $(VBOX_WITH_GUEST_PROPS),VBoxManageGuestProp.cpp) \
48 VBoxManageHelp.cpp \
49 VBoxManageHostonly.cpp \
50 VBoxManageInfo.cpp \
51 VBoxManageList.cpp \
52 VBoxManageMetrics.cpp \
53 VBoxManageMisc.cpp \
54 VBoxManageModifyVM.cpp \
55 VBoxManageSnapshot.cpp \
56 VBoxManageStorageController.cpp \
57 VBoxManageUSB.cpp \
58 $(if $(VBOX_WITH_NAT_SERVICE),VBoxManageNATNetwork.cpp,)
59VBoxManage_LIBS += $(LIB_DDU)
60
61VBoxManage_DEFS += \
62 $(if $(VBOX_WITH_AHCI), VBOX_WITH_AHCI) \
63 $(if $(VBOX_WITH_ALSA), VBOX_WITH_ALSA) \
64 $(if $(VBOX_WITH_COPYTOGUEST),VBOX_WITH_COPYTOGUEST) \
65 $(if $(VBOX_WITH_E1000),VBOX_WITH_E1000) \
66 $(if $(VBOX_WITH_GUEST_CONTROL),VBOX_WITH_GUEST_CONTROL) \
67 $(if $(VBOX_WITH_GUEST_PROPS),VBOX_WITH_GUEST_PROPS) \
68 $(if $(VBOX_WITH_HEADLESS), VBOX_WITH_HEADLESS) \
69 $(if $(VBOX_WITH_HGCM), VBOX_WITH_HGCM) \
70 $(if $(VBOX_WITH_HOSTNETIF_API), VBOX_WITH_HOSTNETIF_API) \
71 $(if $(VBOX_WITH_NETFLT), VBOX_WITH_NETFLT) \
72 $(if $(VBOX_WITH_PULSE),VBOX_WITH_PULSE) \
73 $(if $(VBOX_WITH_SCSI), VBOX_WITH_SCSI) \
74 $(if $(VBOX_WITH_SOLARIS_OSS), VBOX_WITH_SOLARIS_OSS) \
75 $(if $(VBOX_WITH_VBOXSDL), VBOX_WITH_VBOXSDL) \
76 $(if $(VBOX_WITH_VIDEOHWACCEL), VBOX_WITH_VIDEOHWACCEL) \
77 $(if $(VBOX_WITH_VIRTIO),VBOX_WITH_VIRTIO) \
78 $(if $(VBOX_WITH_USB_VIDEO),VBOX_WITH_USB_VIDEO) \
79 $(if $(VBOX_WITH_USB_CARDREADER),VBOX_WITH_USB_CARDREADER) \
80 $(if $(VBOX_WITH_PCI_PASSTHROUGH),VBOX_WITH_PCI_PASSTHROUGH) \
81 $(if $(VBOX_WITH_VPX),VBOX_WITH_VPX) \
82 $(if $(VBOX_WITH_NAT_SERVICE),VBOX_WITH_NAT_SERVICE)
83
84ifneq ($(KBUILD_TARGET),win)
85 # Workaround for buggy gcc-4.3 compilers, see
86 #
87 # http://gcc.gnu.org/bugzilla/show_bug.cgi?id=36474
88 #
89 # Some later revisions of version 4.3.1 are known to work so we assume
90 # that version 4.3.2 or later has this bug definitely fixed.
91 VBoxManage_CXXFLAGS.release += \
92 $(if $(VBOX_GCC_VERSION_CXX),$(if-expr $(VBOX_GCC_VERSION_CXX) < 40300 || $(VBOX_GCC_VERSION_CXX) > 40301,,--param max-fields-for-field-sensitive=0),)
93 VBoxManageHelp_CXXFLAGS.release = $(VBoxManage_CXXFLAGS.release)
94endif
95
96include $(FILE_KBUILD_SUB_FOOTER)
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