VirtualBox

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

Last change on this file since 43421 was 42838, checked in by vboxsync, 12 years ago

Main/EncodeAndVideoRecording Module and API implementation: Integrating an independent encoding and video recording module that will serve all the frontends.
Introducing settings settings and API implementation for accessing and modifying video recording parameters:
->target video capture file
->video capture width
->video capture height
->enable video capturing

  • 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 42838 2012-08-16 09:21: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
58VBoxManage_LIBS += $(LIB_DDU)
59
60VBoxManage_DEFS += \
61 $(if $(VBOX_WITH_AHCI), VBOX_WITH_AHCI) \
62 $(if $(VBOX_WITH_ALSA), VBOX_WITH_ALSA) \
63 $(if $(VBOX_WITH_COPYTOGUEST),VBOX_WITH_COPYTOGUEST) \
64 $(if $(VBOX_WITH_E1000),VBOX_WITH_E1000) \
65 $(if $(VBOX_WITH_GUEST_CONTROL),VBOX_WITH_GUEST_CONTROL) \
66 $(if $(VBOX_WITH_GUEST_PROPS),VBOX_WITH_GUEST_PROPS) \
67 $(if $(VBOX_WITH_HEADLESS), VBOX_WITH_HEADLESS) \
68 $(if $(VBOX_WITH_HGCM), VBOX_WITH_HGCM) \
69 $(if $(VBOX_WITH_HOSTNETIF_API), VBOX_WITH_HOSTNETIF_API) \
70 $(if $(VBOX_WITH_NETFLT), VBOX_WITH_NETFLT) \
71 $(if $(VBOX_WITH_PULSE),VBOX_WITH_PULSE) \
72 $(if $(VBOX_WITH_SCSI), VBOX_WITH_SCSI) \
73 $(if $(VBOX_WITH_SOLARIS_OSS), VBOX_WITH_SOLARIS_OSS) \
74 $(if $(VBOX_WITH_VBOXSDL), VBOX_WITH_VBOXSDL) \
75 $(if $(VBOX_WITH_VIDEOHWACCEL), VBOX_WITH_VIDEOHWACCEL) \
76 $(if $(VBOX_WITH_VIRTIO),VBOX_WITH_VIRTIO) \
77 $(if $(VBOX_WITH_USB_CARDREADER),VBOX_WITH_USB_CARDREADER) \
78 $(if $(VBOX_WITH_PCI_PASSTHROUGH),VBOX_WITH_PCI_PASSTHROUGH) \
79 $(if $(VBOX_WITH_VPX),VBOX_WITH_VPX)
80
81ifneq ($(KBUILD_TARGET),win)
82 # Workaround for buggy gcc-4.3 compilers, see
83 #
84 # http://gcc.gnu.org/bugzilla/show_bug.cgi?id=36474
85 #
86 # Some later revisions of version 4.3.1 are known to work so we assume
87 # that version 4.3.2 or later has this bug definitely fixed.
88 VBoxManage_CXXFLAGS.release += \
89 $(if $(VBOX_GCC_VERSION_CXX),$(if-expr $(VBOX_GCC_VERSION_CXX) < 40300 || $(VBOX_GCC_VERSION_CXX) > 40301,,--param max-fields-for-field-sensitive=0),)
90 VBoxManageHelp_CXXFLAGS.release = $(VBoxManage_CXXFLAGS.release)
91endif
92
93include $(FILE_KBUILD_SUB_FOOTER)
Note: See TracBrowser for help on using the repository browser.

© 2023 Oracle
ContactPrivacy policyTerms of Use