VirtualBox

source: vbox/trunk/src/VBox/Additions/common/VBoxService/Makefile.kmk@ 84540

Last change on this file since 84540 was 84540, checked in by vboxsync, 5 years ago

Reverting r138262 (i.e. restoring VBOX_WITH_AUTOMATIC_DEFS_QUOTING). Corrected the conditions for it's definition instead. bugref:8489

  • Property svn:eol-style set to native
  • Property svn:keywords set to Author Date Id Revision
File size: 5.5 KB
Line 
1# $Id: Makefile.kmk 84540 2020-05-26 15:06:13Z vboxsync $
2## @file
3# Sub-Makefile for the Cross Platform Guest Addition Services.
4#
5
6#
7# Copyright (C) 2007-2020 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
21#
22# Incldue testcases.
23#
24include $(PATH_SUB_CURRENT)/testcase/Makefile.kmk
25
26#
27# Target lists.
28#
29PROGRAMS += VBoxService
30
31# Enable the timesync service within VBoxService.
32VBOX_WITH_VBOXSERVICE_TIMESYNC := 1
33
34# Busybox-like toolbox, embedded into VBoxService.
35VBOX_WITH_VBOXSERVICE_TOOLBOX := 1
36
37# VM-management functions, like memory ballooning and statistics.
38VBOX_WITH_VBOXSERVICE_MANAGEMENT := 1
39
40if1of ($(KBUILD_TARGET), linux)
41 # CPU hotplugging.
42VBOX_WITH_VBOXSERVICE_CPUHOTPLUG := 1
43endif
44
45# Page Sharing (Page Fusion).
46if1of ($(KBUILD_TARGET), win)
47VBOX_WITH_VBOXSERVICE_PAGE_SHARING := 1
48endif
49
50ifdef VBOX_WITH_GUEST_PROPS
51VBOX_WITH_VBOXSERVICE_VMINFO := 1
52endif
53
54# Guest Control.
55ifdef VBOX_WITH_GUEST_CONTROL
56VBOX_WITH_VBOXSERVICE_CONTROL := 1
57endif
58
59# Shared Clipboard.
60ifdef VBOX_WITH_SHARED_CLIPBOARD
61VBOX_WITH_VBOXSERVICE_CLIPBOARD := 1
62endif
63
64#
65# VBoxService
66#
67if "$(KBUILD_TARGET)" == "win" || defined(VBOX_WITH_MASOCHISTIC_WARNINGS) ## @todo use VBoxGuestR3Exe everywhere
68VBoxService_TEMPLATE = VBoxGuestR3Exe
69else
70VBoxService_TEMPLATE = NewVBoxGuestR3Exe
71endif
72
73# Define features to be activate.
74VBoxService_DEFS += \
75 $(if $(VBOX_WITH_VBOXSERVICE_CONTROL),VBOX_WITH_VBOXSERVICE_CONTROL,) \
76 $(if $(VBOX_WITH_VBOXSERVICE_CPUHOTPLUG),VBOX_WITH_VBOXSERVICE_CPUHOTPLUG,) \
77 $(if $(VBOX_WITH_VBOXSERVICE_MANAGEMENT),VBOX_WITH_VBOXSERVICE_MANAGEMENT,) \
78 $(if $(VBOX_WITH_VBOXSERVICE_PAGE_SHARING),VBOX_WITH_VBOXSERVICE_PAGE_SHARING,) \
79 $(if $(VBOX_WITH_VBOXSERVICE_TIMESYNC),VBOX_WITH_VBOXSERVICE_TIMESYNC,) \
80 $(if $(VBOX_WITH_VBOXSERVICE_TOOLBOX),VBOX_WITH_VBOXSERVICE_TOOLBOX,) \
81 $(if $(VBOX_WITH_VBOXSERVICE_VMINFO),VBOX_WITH_VBOXSERVICE_VMINFO,)
82
83# Import global defines.
84VBoxService_DEFS += \
85 $(if $(VBOX_WITH_DBUS),VBOX_WITH_DBUS,) \
86 $(if $(VBOX_WITH_GUEST_CONTROL),VBOX_WITH_GUEST_CONTROL,) \
87 $(if $(VBOX_WITH_GUEST_PROPS),VBOX_WITH_GUEST_PROPS,) \
88 $(if $(VBOX_WITH_HGCM),VBOX_WITH_HGCM,)
89
90ifdef VBOX_WITH_AUTOMATIC_DEFS_QUOTING
91VBoxService_DEFS += VBOX_BUILD_TARGET="$(KBUILD_TARGET).$(KBUILD_TARGET_ARCH)"
92else
93VBoxService_DEFS += VBOX_BUILD_TARGET=\"$(KBUILD_TARGET).$(KBUILD_TARGET_ARCH)\"
94endif
95VBoxService_DEFS.win += _WIN32_WINNT=0x0501
96VBoxService_DEFS.os2 = VBOX_WITH_HGCM
97
98VBoxService_SOURCES = \
99 VBoxService.cpp \
100 VBoxServiceUtils.cpp \
101 VBoxServiceStats.cpp
102
103ifdef VBOX_WITH_VBOXSERVICE_TIMESYNC
104VBoxService_SOURCES += \
105 VBoxServiceTimeSync.cpp
106endif
107
108ifdef VBOX_WITH_VBOXSERVICE_CLIPBOARD
109 VBoxService_DEFS.os2 += VBOX_WITH_VBOXSERVICE_CLIPBOARD VBOX_WITH_SHARED_CLIPBOARD
110 VBoxService_SOURCES.os2 += \
111 VBoxServiceClipboard-os2.cpp \
112 $(PATH_ROOT)/src/VBox/GuestHost/SharedClipboard/clipboard-common.cpp
113endif
114
115ifdef VBOX_WITH_VBOXSERVICE_TOOLBOX
116VBoxService_SOURCES += \
117 VBoxServiceToolBox.cpp
118endif
119
120ifdef VBOX_WITH_VBOXSERVICE_CONTROL
121VBoxService_SOURCES += \
122 VBoxServiceControl.cpp \
123 VBoxServiceControlProcess.cpp \
124 VBoxServiceControlSession.cpp
125endif
126
127ifdef VBOX_WITH_VBOXSERVICE_MANAGEMENT
128VBoxService_SOURCES += \
129 VBoxServiceBalloon.cpp
130 ifdef VBOX_WITH_MEMBALLOON
131VBoxService_DEFS += VBOX_WITH_MEMBALLOON
132 endif
133endif
134
135if1of ($(KBUILD_TARGET), win)
136VBoxService_SOURCES += \
137 VBoxServicePageSharing.cpp
138endif
139
140ifdef VBOX_WITH_VBOXSERVICE_VMINFO
141VBoxService_SOURCES.win += \
142 VBoxServiceVMInfo-win.cpp
143VBoxService_SOURCES += \
144 VBoxServiceVMInfo.cpp \
145 VBoxServicePropCache.cpp
146endif
147
148ifdef VBOX_WITH_VBOXSERVICE_CPUHOTPLUG
149VBoxService_SOURCES += \
150 VBoxServiceCpuHotPlug.cpp
151endif
152
153ifdef VBOX_WITH_SHARED_FOLDERS
154 if1of ($(KBUILD_TARGET), linux os2 solaris win)
155VBoxService_DEFS += VBOX_WITH_SHARED_FOLDERS
156VBoxService_SOURCES += \
157 VBoxServiceAutoMount.cpp
158VBoxService_SOURCES.linux += \
159 ../../linux/sharedfolders/vbsfmount.c
160VBoxService_LIBS.win += \
161 Mpr.Lib
162 endif
163endif
164
165VBoxService_SOURCES.win += \
166 VBoxService-win.cpp
167
168VBoxService_SOURCES.os2 += \
169 VBoxService-os2.def
170
171VBoxService_LDFLAGS.darwin = -framework IOKit
172
173VBoxService_LIBS += \
174 $(VBOX_LIB_IPRT_GUEST_R3) \
175 $(VBOX_LIB_VBGL_R3) \
176 $(VBOX_LIB_IPRT_GUEST_R3) # (The joy of unix linkers.)
177ifdef VBOX_WITH_DBUS
178 if1of ($(KBUILD_TARGET), linux solaris) # FreeBSD?
179VBoxService_LIBS += \
180 dl
181 endif
182endif
183VBoxService_LIBS.netbsd += crypt
184ifdef VBOX_WITH_GUEST_PROPS
185VBoxService_LIBS.win += \
186 Secur32.lib \
187 WtsApi32.lib \
188 Psapi.lib
189VBoxService_LIBS.solaris += \
190 nsl \
191 kstat \
192 contract
193endif
194
195VBoxServiceVMInfo.cpp_DEFS = VBOX_SVN_REV=$(VBOX_SVN_REV)
196VBoxServiceVMInfo.cpp_DEPS = $(VBOX_SVN_REV_KMK)
197
198VBoxService_USES.win += vboximportchecker
199VBoxService_VBOX_IMPORT_CHECKER.win.x86 = nt31
200VBoxService_VBOX_IMPORT_CHECKER.win.amd64 = xp64
201
202$(call VBOX_SET_VER_INFO_EXE,VBoxService,VirtualBox Guest Additions Service,$(VBOX_WINDOWS_ICON_FILE)) # Version info / description.
203
204include $(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