VirtualBox

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

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

VBoxService: No need for custom resource file on windows, use the template.

  • Property svn:eol-style set to native
  • Property svn:keywords set to Author Date Id Revision
File size: 5.3 KB
Line 
1# $Id: Makefile.kmk 82749 2020-01-14 20:54:27Z vboxsync $
2## @file
3# Sub-Makefile for the Cross Platform Guest Addition Services.
4#
5
6#
7# Copyright (C) 2007-2019 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
90VBoxService_DEFS += \
91 VBOX_BUILD_TARGET=\"$(KBUILD_TARGET).$(KBUILD_TARGET_ARCH)\"
92VBoxService_DEFS.win += _WIN32_WINNT=0x0501
93VBoxService_DEFS.os2 = VBOX_WITH_HGCM
94
95VBoxService_SOURCES = \
96 VBoxService.cpp \
97 VBoxServiceUtils.cpp \
98 VBoxServiceStats.cpp
99
100ifdef VBOX_WITH_VBOXSERVICE_TIMESYNC
101VBoxService_SOURCES += \
102 VBoxServiceTimeSync.cpp
103endif
104
105ifdef VBOX_WITH_VBOXSERVICE_CLIPBOARD
106 VBoxService_DEFS.os2 += VBOX_WITH_VBOXSERVICE_CLIPBOARD VBOX_WITH_SHARED_CLIPBOARD
107 VBoxService_SOURCES.os2 += \
108 VBoxServiceClipboard-os2.cpp \
109 $(PATH_ROOT)/src/VBox/GuestHost/SharedClipboard/clipboard-common.cpp
110endif
111
112ifdef VBOX_WITH_VBOXSERVICE_TOOLBOX
113VBoxService_SOURCES += \
114 VBoxServiceToolBox.cpp
115endif
116
117ifdef VBOX_WITH_VBOXSERVICE_CONTROL
118VBoxService_SOURCES += \
119 VBoxServiceControl.cpp \
120 VBoxServiceControlProcess.cpp \
121 VBoxServiceControlSession.cpp
122endif
123
124ifdef VBOX_WITH_VBOXSERVICE_MANAGEMENT
125VBoxService_SOURCES += \
126 VBoxServiceBalloon.cpp
127 ifdef VBOX_WITH_MEMBALLOON
128VBoxService_DEFS += VBOX_WITH_MEMBALLOON
129 endif
130endif
131
132if1of ($(KBUILD_TARGET), win)
133VBoxService_SOURCES += \
134 VBoxServicePageSharing.cpp
135endif
136
137ifdef VBOX_WITH_VBOXSERVICE_VMINFO
138VBoxService_SOURCES.win += \
139 VBoxServiceVMInfo-win.cpp
140VBoxService_SOURCES += \
141 VBoxServiceVMInfo.cpp \
142 VBoxServicePropCache.cpp
143endif
144
145ifdef VBOX_WITH_VBOXSERVICE_CPUHOTPLUG
146VBoxService_SOURCES += \
147 VBoxServiceCpuHotPlug.cpp
148endif
149
150ifdef VBOX_WITH_SHARED_FOLDERS
151 if1of ($(KBUILD_TARGET), linux os2 solaris win)
152VBoxService_DEFS += VBOX_WITH_SHARED_FOLDERS
153VBoxService_SOURCES += \
154 VBoxServiceAutoMount.cpp
155VBoxService_SOURCES.linux += \
156 ../../linux/sharedfolders/vbsfmount.c
157VBoxService_LIBS.win += \
158 Mpr.Lib
159 endif
160endif
161
162VBoxService_SOURCES.win += \
163 VBoxService-win.cpp
164
165VBoxService_SOURCES.os2 += \
166 VBoxService-os2.def
167
168VBoxService_LDFLAGS.darwin = -framework IOKit
169
170VBoxService_LIBS += \
171 $(VBOX_LIB_IPRT_GUEST_R3) \
172 $(VBOX_LIB_VBGL_R3) \
173 $(VBOX_LIB_IPRT_GUEST_R3) # (The joy of unix linkers.)
174ifdef VBOX_WITH_DBUS
175 if1of ($(KBUILD_TARGET), linux solaris) # FreeBSD?
176VBoxService_LIBS += \
177 dl
178 endif
179endif
180VBoxService_LIBS.netbsd += crypt
181ifdef VBOX_WITH_GUEST_PROPS
182VBoxService_LIBS.win += \
183 Secur32.lib \
184 WtsApi32.lib \
185 Psapi.lib
186VBoxService_LIBS.solaris += \
187 nsl \
188 kstat \
189 contract
190endif
191
192VBoxServiceVMInfo.cpp_DEFS = VBOX_SVN_REV=$(VBOX_SVN_REV)
193VBoxServiceVMInfo.cpp_DEPS = $(VBOX_SVN_REV_KMK)
194
195VBoxService_USES.win += vboximportchecker
196VBoxService_VBOX_IMPORT_CHECKER.win.x86 = nt31
197VBoxService_VBOX_IMPORT_CHECKER.win.amd64 = xp64
198
199$(call VBOX_SET_VER_INFO_EXE,VBoxService,VirtualBox Guest Additions Service,$(VBOX_WINDOWS_ICON_FILE)) # Version info / description.
200
201include $(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