VirtualBox

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

Last change on this file since 35263 was 33257, checked in by vboxsync, 14 years ago

additions build fix

  • Property svn:eol-style set to native
  • Property svn:keywords set to Author Date Id Revision
File size: 3.9 KB
Line 
1# $Id: Makefile.kmk 33257 2010-10-20 11:56:23Z vboxsync $
2## @file
3# Sub-Makefile for the Cross Platform Guest Addition Services.
4#
5
6#
7# Copyright (C) 2007-2010 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 = VBOXGUESTR3EXE
36VBoxService_DEFS = LOG_TO_BACKDOOR VBOX_WITH_HGCM VBOXSERVICE_TIMESYNC VBOXSERVICE_MANAGEMENT VBOXSERVICE_TOOLBOX
37VBoxService_DEFS.win += _WIN32_WINNT=0x0501
38VBoxService_DEFS.os2 = VBOX_WITH_HGCM VBOXSERVICE_CLIPBOARD
39ifdef VBOX_WITH_GUEST_PROPS
40 VBoxService_DEFS += VBOX_WITH_GUEST_PROPS VBOXSERVICE_VMINFO
41endif
42ifdef VBOX_WITH_GUEST_CONTROL
43 VBoxService_DEFS += VBOX_WITH_GUEST_CONTROL VBOXSERVICE_CONTROL
44endif
45ifdef VBOX_WITH_MEMBALLOON
46 VBoxService_DEFS += VBOX_WITH_MEMBALLOON
47endif
48if1of ($(KBUILD_TARGET), win)
49 VBoxService_DEFS += VBOX_WITH_PAGE_SHARING
50endif
51if1of ($(KBUILD_TARGET), linux)
52 VBoxService_DEFS += VBOXSERVICE_CPUHOTPLUG
53endif
54ifdef VBOX_WITH_SHARED_FOLDERS
55 # darwin freebsd
56 if1of ($(KBUILD_TARGET), linux solaris)
57 VBoxService_DEFS += VBOX_WITH_SHARED_FOLDERS
58 endif
59endif
60
61VBoxService_SOURCES = \
62 VBoxService.cpp \
63 VBoxServiceTimeSync.cpp \
64 VBoxServiceUtils.cpp \
65 VBoxServiceStats.cpp \
66 VBoxServiceToolBox.cpp
67
68ifdef VBOX_WITH_GUEST_CONTROL
69 VBoxService_SOURCES += \
70 VBoxServiceControl.cpp \
71 VBoxServiceControlExec.cpp
72endif
73
74ifdef VBOX_WITH_MEMBALLOON
75 VBoxService_SOURCES += \
76 VBoxServiceBalloon.cpp
77endif
78if1of ($(KBUILD_TARGET), win)
79 VBoxService_SOURCES += \
80 VBoxServicePageSharing.cpp
81endif
82
83ifdef VBOX_WITH_GUEST_PROPS
84 VBoxService_SOURCES.win = \
85 VBoxServiceVMInfo-win.cpp
86 VBoxService_SOURCES += \
87 VBoxServiceVMInfo.cpp \
88 VBoxServicePropCache.cpp
89endif
90
91if1of ($(KBUILD_TARGET), linux)
92 VBoxService_SOURCES += \
93 VBoxServiceCpuHotPlug.cpp
94endif
95
96ifdef VBOX_WITH_SHARED_FOLDERS
97 if1of ($(KBUILD_TARGET), linux solaris)
98 VBoxService_SOURCES += \
99 VBoxServiceAutoMount.cpp
100 VBoxService_SOURCES.linux += \
101 ../../linux/sharedfolders/vbsfmount.c
102 endif
103endif
104
105VBoxService_SOURCES.win += \
106 VBoxService-win.rc \
107 VBoxService-win.cpp
108
109VBoxService_SOURCES.os2 = \
110 VBoxService-os2.def \
111 VBoxServiceClipboard-os2.cpp
112
113VBoxService_LIBS = \
114 $(VBOX_LIB_IPRT_GUEST_R3) \
115 $(VBOX_LIB_VBGL_R3) \
116 $(VBOX_LIB_IPRT_GUEST_R3)
117if1of ($(KBUILD_TARGET), linux)
118 VBoxService_LIBS += \
119 crypt
120endif
121ifdef VBOX_WITH_GUEST_PROPS
122 VBoxService_LIBS.win += \
123 Secur32.lib \
124 WtsApi32.lib \
125 Psapi.lib
126 VBoxService_LIBS.solaris += \
127 nsl kstat contract
128endif
129
130#
131# VBoxServiceNT - NT4 version of VBoxService.
132#
133VBoxServiceNT_TEMPLATE = VBOXGUESTR3EXE
134VBoxServiceNT_EXTENDS = VBoxService
135VBoxServiceNT_DEFS.win = _WIN32_WINNT=0x0400 TARGET_NT4 VBOXSERVICE_MANAGEMENT
136
137VBoxServiceVMInfo.cpp_DEFS = VBOX_SVN_REV=$(VBOX_SVN_REV)
138VBoxServiceVMInfo.cpp_DEPS = $(VBOX_SVN_REV_KMK)
139
140#
141# The icon is configurable.
142#
143VBoxService-win.rc_INCS = $(PATH_VBoxService)
144VBoxService-win.rc_DEPS = $(PATH_VBoxService)/VBoxService-win-icon.rc
145VBoxService-win.rc_CLEAN = $(PATH_VBoxService)/VBoxService-win-icon.rc
146
147# Icon include file.
148$$(PATH_VBoxService)/VBoxService-win-icon.rc: $(VBOX_WINDOWS_ADDITIONS_ICON_FILE) $$(VBoxService_PATH)/Makefile.kmk | $$(dir $$@)
149 $(RM) -f $@
150 $(APPEND) $@ 'IDI_VIRTUALBOX ICON DISCARDABLE "$(subst /,\\,$(VBOX_WINDOWS_ADDITIONS_ICON_FILE))"'
151
152include $(KBUILD_PATH)/subfooter.kmk
153
Note: See TracBrowser for help on using the repository browser.

© 2023 Oracle
ContactPrivacy policyTerms of Use