VirtualBox

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

Last change on this file since 52195 was 49643, checked in by vboxsync, 11 years ago

Additions/linux: back out single bit-count Additions package experiment.

  • Property svn:eol-style set to native
  • Property svn:keywords set to Author Date Id Revision
File size: 4.4 KB
Line 
1# $Id: Makefile.kmk 49643 2013-11-25 15:46:54Z vboxsync $
2## @file
3# Sub-Makefile for the Cross Platform Guest Addition Services.
4#
5
6#
7# Copyright (C) 2007-2013 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
30PROGRAMS.win.x86 += VBoxServiceNT
31
32#
33# VBoxService
34#
35VBoxService_TEMPLATE = NewVBoxGuestR3Exe
36VBoxService_DEFS = VBOX_WITH_HGCM VBOXSERVICE_TIMESYNC VBOXSERVICE_MANAGEMENT VBOXSERVICE_TOOLBOX
37VBoxService_DEFS += \
38 VBOX_BUILD_TARGET=\"$(KBUILD_TARGET).$(KBUILD_TARGET_ARCH)\"
39VBoxService_DEFS.win += _WIN32_WINNT=0x0501
40VBoxService_DEFS.os2 = VBOX_WITH_HGCM VBOXSERVICE_CLIPBOARD
41ifdef VBOX_WITH_DBUS
42 VBoxService_DEFS += VBOX_WITH_DBUS
43endif
44ifdef VBOX_WITH_GUEST_PROPS
45 VBoxService_DEFS += VBOX_WITH_GUEST_PROPS VBOXSERVICE_VMINFO
46endif
47ifdef VBOX_WITH_GUEST_CONTROL
48 VBoxService_DEFS += VBOX_WITH_GUEST_CONTROL VBOXSERVICE_CONTROL
49endif
50ifdef VBOX_WITH_MEMBALLOON
51 VBoxService_DEFS += VBOX_WITH_MEMBALLOON
52endif
53if1of ($(KBUILD_TARGET), win)
54 VBoxService_DEFS += VBOXSERVICE_PAGE_SHARING
55 ifdef VBOX_WITH_MMR
56 VBoxService_DEFS += VBOX_WITH_MMR
57 endif
58endif
59if1of ($(KBUILD_TARGET), linux)
60 VBoxService_DEFS += VBOXSERVICE_CPUHOTPLUG
61endif
62ifdef VBOX_WITH_SHARED_FOLDERS
63 # darwin freebsd
64 if1of ($(KBUILD_TARGET), linux solaris)
65 VBoxService_DEFS += VBOX_WITH_SHARED_FOLDERS
66 endif
67endif
68
69VBoxService_SOURCES = \
70 VBoxService.cpp \
71 VBoxServiceTimeSync.cpp \
72 VBoxServiceUtils.cpp \
73 VBoxServiceStats.cpp \
74 VBoxServiceToolBox.cpp
75
76ifdef VBOX_WITH_GUEST_CONTROL
77 VBoxService_SOURCES += \
78 VBoxServiceControl.cpp \
79 VBoxServiceControlProcess.cpp \
80 VBoxServiceControlSession.cpp
81endif
82
83ifdef VBOX_WITH_MEMBALLOON
84 VBoxService_SOURCES += \
85 VBoxServiceBalloon.cpp
86endif
87if1of ($(KBUILD_TARGET), win)
88 VBoxService_SOURCES += \
89 VBoxServicePageSharing.cpp
90endif
91
92ifdef VBOX_WITH_GUEST_PROPS
93 VBoxService_SOURCES.win = \
94 VBoxServiceVMInfo-win.cpp
95 VBoxService_SOURCES += \
96 VBoxServiceVMInfo.cpp \
97 VBoxServicePropCache.cpp
98endif
99
100if1of ($(KBUILD_TARGET), linux)
101 VBoxService_SOURCES += \
102 VBoxServiceCpuHotPlug.cpp
103endif
104
105ifdef VBOX_WITH_SHARED_FOLDERS
106 if1of ($(KBUILD_TARGET), linux solaris)
107 VBoxService_SOURCES += \
108 VBoxServiceAutoMount.cpp
109 VBoxService_SOURCES.linux += \
110 ../../linux/sharedfolders/vbsfmount.c
111 endif
112endif
113
114VBoxService_SOURCES.win += \
115 VBoxService-win.rc \
116 VBoxService-win.cpp
117
118VBoxService_SOURCES.os2 = \
119 VBoxService-os2.def \
120 VBoxServiceClipboard-os2.cpp
121
122VBoxService_LDFLAGS.darwin = -framework IOKit
123
124VBoxService_LIBS += \
125 $(VBOX_LIB_IPRT_GUEST_R3) \
126 $(VBOX_LIB_VBGL_R3) \
127 $(VBOX_LIB_IPRT_GUEST_R3) # (The joy of unix linkers.)
128if1of ($(KBUILD_TARGET), linux)
129 VBoxService_LIBS += \
130 crypt
131endif
132ifdef VBOX_WITH_DBUS
133 if1of ($(KBUILD_TARGET), linux solaris) # FreeBSD?
134 VBoxService_LIBS += \
135 dl
136 endif
137endif
138ifdef VBOX_WITH_GUEST_PROPS
139 VBoxService_LIBS.win += \
140 Secur32.lib \
141 WtsApi32.lib \
142 Psapi.lib
143 VBoxService_LIBS.solaris += \
144 nsl \
145 kstat \
146 contract
147endif
148
149#
150# VBoxServiceNT - NT4 version of VBoxService.
151#
152VBoxServiceNT_TEMPLATE = NewVBoxGuestR3Exe
153VBoxServiceNT_EXTENDS = VBoxService
154VBoxServiceNT_DEFS.win = _WIN32_WINNT=0x0400 TARGET_NT4 VBOXSERVICE_MANAGEMENT
155
156VBoxServiceVMInfo.cpp_DEFS = VBOX_SVN_REV=$(VBOX_SVN_REV)
157VBoxServiceVMInfo.cpp_DEPS = $(VBOX_SVN_REV_KMK)
158
159#
160# The icon is configurable.
161#
162VBoxService-win.rc_INCS = $(VBoxService_0_OUTDIR)
163VBoxService-win.rc_DEPS = $(VBoxService_0_OUTDIR)/VBoxService-win-icon.rc
164VBoxService-win.rc_CLEAN = $(VBoxService_0_OUTDIR)/VBoxService-win-icon.rc
165
166# Icon include file.
167$$(VBoxService_0_OUTDIR)/VBoxService-win-icon.rc: $(VBOX_WINDOWS_ADDITIONS_ICON_FILE) $$(VBoxService_DEFPATH)/Makefile.kmk | $$(dir $$@)
168 $(RM) -f $@
169 $(APPEND) $@ 'IDI_VIRTUALBOX ICON DISCARDABLE "$(subst /,\\,$(VBOX_WINDOWS_ADDITIONS_ICON_FILE))"'
170
171include $(FILE_KBUILD_SUB_FOOTER)
172
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