VirtualBox

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

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

Guest Execution/Copy: Added support for input handling, added more code for data copying.

  • 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 33064 2010-10-12 13:20:50Z 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 = VBOX_WITH_HGCM VBOXSERVICE_TIMESYNC VBOXSERVICE_MANAGEMENT
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
67ifdef VBOX_WITH_GUEST_CONTROL
68 VBoxService_SOURCES += \
69 VBoxServiceControl.cpp \
70 VBoxServiceControlExec.cpp
71endif
72
73ifdef VBOX_WITH_MEMBALLOON
74 VBoxService_SOURCES += \
75 VBoxServiceBalloon.cpp
76endif
77if1of ($(KBUILD_TARGET), win)
78 VBoxService_SOURCES += \
79 VBoxServicePageSharing.cpp
80endif
81
82ifdef VBOX_WITH_GUEST_PROPS
83 VBoxService_SOURCES.win = \
84 VBoxServiceVMInfo-win.cpp
85 VBoxService_SOURCES += \
86 VBoxServiceVMInfo.cpp \
87 VBoxServicePropCache.cpp
88endif
89
90if1of ($(KBUILD_TARGET), linux)
91 VBoxService_SOURCES += \
92 VBoxServiceCpuHotPlug.cpp
93endif
94
95ifdef VBOX_WITH_SHARED_FOLDERS
96 if1of ($(KBUILD_TARGET), linux solaris)
97 VBoxService_SOURCES += \
98 VBoxServiceAutoMount.cpp
99 VBoxService_SOURCES.linux += \
100 ../../linux/sharedfolders/vbsfmount.c
101 endif
102endif
103
104VBoxService_SOURCES.win += \
105 VBoxService-win.rc \
106 VBoxService-win.cpp
107
108VBoxService_SOURCES.os2 = \
109 VBoxService-os2.def \
110 VBoxServiceClipboard-os2.cpp
111
112VBoxService_LIBS = \
113 $(VBOX_LIB_IPRT_GUEST_R3) \
114 $(VBOX_LIB_VBGL_R3) \
115 $(VBOX_LIB_IPRT_GUEST_R3)
116if1of ($(KBUILD_TARGET), linux)
117 VBoxService_LIBS += \
118 crypt
119endif
120ifdef VBOX_WITH_GUEST_PROPS
121 VBoxService_LIBS.win += \
122 Secur32.lib \
123 WtsApi32.lib \
124 Psapi.lib
125 VBoxService_LIBS.solaris += \
126 nsl kstat contract
127endif
128
129#
130# VBoxServiceNT - NT4 version of VBoxService.
131#
132VBoxServiceNT_TEMPLATE = VBOXGUESTR3EXE
133VBoxServiceNT_EXTENDS = VBoxService
134VBoxServiceNT_DEFS.win = _WIN32_WINNT=0x0400 TARGET_NT4 VBOXSERVICE_MANAGEMENT
135
136VBoxServiceVMInfo.cpp_DEFS = VBOX_SVN_REV=$(VBOX_SVN_REV)
137VBoxServiceVMInfo.cpp_DEPS = $(VBOX_SVN_REV_KMK)
138
139#
140# The icon is configurable.
141#
142VBoxService-win.rc_INCS = $(PATH_VBoxService)
143VBoxService-win.rc_DEPS = $(PATH_VBoxService)/VBoxService-win-icon.rc
144VBoxService-win.rc_CLEAN = $(PATH_VBoxService)/VBoxService-win-icon.rc
145
146# Icon include file.
147$$(PATH_VBoxService)/VBoxService-win-icon.rc: $(VBOX_WINDOWS_ADDITIONS_ICON_FILE) $$(VBoxService_PATH)/Makefile.kmk | $$(dir $$@)
148 $(RM) -f $@
149 $(APPEND) $@ 'IDI_VIRTUALBOX ICON DISCARDABLE "$(subst /,\\,$(VBOX_WINDOWS_ADDITIONS_ICON_FILE))"'
150
151include $(KBUILD_PATH)/subfooter.kmk
152
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