VirtualBox

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

Last change on this file since 78449 was 78449, checked in by vboxsync, 6 years ago

Shared Clipboard:/VBoxService OS/2 build fix.

  • Property svn:eol-style set to native
  • Property svn:keywords set to Author Date Id Revision
File size: 5.7 KB
Line 
1# $Id: Makefile.kmk 78449 2019-05-08 13:56:43Z 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
109endif
110
111ifdef VBOX_WITH_VBOXSERVICE_TOOLBOX
112VBoxService_SOURCES += \
113 VBoxServiceToolBox.cpp
114endif
115
116ifdef VBOX_WITH_VBOXSERVICE_CONTROL
117VBoxService_SOURCES += \
118 VBoxServiceControl.cpp \
119 VBoxServiceControlProcess.cpp \
120 VBoxServiceControlSession.cpp
121endif
122
123ifdef VBOX_WITH_VBOXSERVICE_MANAGEMENT
124VBoxService_SOURCES += \
125 VBoxServiceBalloon.cpp
126 ifdef VBOX_WITH_MEMBALLOON
127VBoxService_DEFS += VBOX_WITH_MEMBALLOON
128 endif
129endif
130
131if1of ($(KBUILD_TARGET), win)
132VBoxService_SOURCES += \
133 VBoxServicePageSharing.cpp
134endif
135
136ifdef VBOX_WITH_VBOXSERVICE_VMINFO
137VBoxService_SOURCES.win += \
138 VBoxServiceVMInfo-win.cpp
139VBoxService_SOURCES += \
140 VBoxServiceVMInfo.cpp \
141 VBoxServicePropCache.cpp
142endif
143
144ifdef VBOX_WITH_VBOXSERVICE_CPUHOTPLUG
145VBoxService_SOURCES += \
146 VBoxServiceCpuHotPlug.cpp
147endif
148
149ifdef VBOX_WITH_SHARED_FOLDERS
150 if1of ($(KBUILD_TARGET), linux os2 solaris win)
151VBoxService_DEFS += VBOX_WITH_SHARED_FOLDERS
152VBoxService_SOURCES += \
153 VBoxServiceAutoMount.cpp
154VBoxService_SOURCES.linux += \
155 ../../linux/sharedfolders/vbsfmount.c
156VBoxService_LIBS.win += \
157 Mpr.Lib
158 endif
159endif
160
161VBoxService_SOURCES.win += \
162 VBoxService-win.rc \
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.)
174if1of ($(KBUILD_TARGET), linux)
175 VBoxService_LIBS += \
176 crypt
177endif
178ifdef VBOX_WITH_DBUS
179 if1of ($(KBUILD_TARGET), linux solaris) # FreeBSD?
180VBoxService_LIBS += \
181 dl
182 endif
183endif
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
203#
204# The icon is configurable.
205#
206VBoxService-win.rc_INCS = $(VBoxService_0_OUTDIR)
207VBoxService-win.rc_DEPS = $(VBoxService_0_OUTDIR)/VBoxService-win-icon.rc
208VBoxService-win.rc_CLEAN = $(VBoxService_0_OUTDIR)/VBoxService-win-icon.rc
209
210# Icon include file.
211$$(VBoxService_0_OUTDIR)/VBoxService-win-icon.rc: $(VBOX_WINDOWS_ADDITIONS_ICON_FILE) $$(VBoxService_DEFPATH)/Makefile.kmk | $$(dir $$@)
212 $(RM) -f $@
213 $(APPEND) $@ 'IDI_VIRTUALBOX ICON DISCARDABLE "$(subst /,\\,$(VBOX_WINDOWS_ADDITIONS_ICON_FILE))"'
214
215include $(FILE_KBUILD_SUB_FOOTER)
216
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