VirtualBox

source: vbox/trunk/src/VBox/Additions/common/VBoxGuestLib/Makefile.kmk@ 28800

Last change on this file since 28800 was 28800, checked in by vboxsync, 15 years ago

Automated rebranding to Oracle copyright/license strings via filemuncher

  • Property svn:eol-style set to native
  • Property svn:keywords set to Author Date Id Revision
File size: 4.9 KB
Line 
1# $Id: Makefile.kmk 28800 2010-04-27 08:22:32Z vboxsync $
2## @file
3# Sub-Makefile for the common guest addition code library.
4#
5
6#
7# Copyright (C) 2006-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# The contents of this file may alternatively be used under the terms
18# of the Common Development and Distribution License Version 1.0
19# (CDDL) only, as it comes in the "COPYING.CDDL" file of the
20# VirtualBox OSE distribution, in which case the provisions of the
21# CDDL are applicable instead of those of the GPL.
22#
23# You may elect to license modified versions of this file under the
24# terms and conditions of either the GPL or the CDDL or both.
25#
26
27SUB_DEPTH = ../../../../..
28include $(KBUILD_PATH)/subheader.kmk
29
30#
31# Target config.
32#
33if defined(VBOX_WITH_ADDITION_DRIVERS) && !defined(VBOX_ONLY_TESTSUITE)
34 LIBRARIES += \
35 VBoxGuestR0Lib \
36 VBoxGuestR0LibBase
37endif
38LIBRARIES += \
39 VBoxGuestR3Lib \
40 VBoxGuestR3LibShared
41ifndef VBOX_ONLY_TESTSUITE
42 if1of ($(KBUILD_TARGET), freebsd linux netbsd openbsd)
43 LIBRARIES += \
44 VBoxGuestR3LibXFree86
45 endif
46endif
47
48
49#
50# VBoxGuestR0Lib
51#
52VBoxGuestR0Lib_TEMPLATE = VBOXGUESTR0LIB
53VBoxGuestR0Lib_DEFS = VBOX_WITH_HGCM
54VBoxGuestR0Lib_INCS = \
55 $(PATH_VBoxGuestR0Lib)
56VBoxGuestR0Lib_SOURCES = \
57 GenericRequest.cpp \
58 SysHlp.cpp \
59 PhysHeap.cpp \
60 Init.cpp \
61 VMMDev.cpp \
62 HGCM.cpp \
63 VBoxCalls.c \
64 VbglR0CanUsePhysPageList.cpp
65
66
67#
68# VBoxGuestR0LibBase
69#
70VBoxGuestR0LibBase_TEMPLATE = VBOXGUESTR0LIB
71VBoxGuestR0LibBase_DEFS = VBOX_WITH_HGCM VBGL_VBOXGUEST
72VBoxGuestR0LibBase_INCS = $(VBoxGuestR0Lib_INCS)
73VBoxGuestR0LibBase_INCS.win = $(VBoxGuestR0Lib_INCS.win)
74VBoxGuestR0LibBase_SOURCES = \
75 GenericRequest.cpp \
76 SysHlp.cpp \
77 PhysHeap.cpp \
78 Init.cpp \
79 VMMDev.cpp \
80 HGCMInternal.cpp \
81 VbglR0CanUsePhysPageList.cpp
82
83#
84# VBoxGuestR3Lib
85#
86VBoxGuestR3Lib_TEMPLATE = VBOXGUESTR3LIB
87VBoxGuestR3Lib_DEFS = \
88 VBOX_WITH_HGCM \
89 $(if $(VBOX_WITH_GUEST_PROPS),VBOX_WITH_GUEST_PROPS,) \
90 $(if $(VBOX_WITH_GUEST_CONTROL),VBOX_WITH_GUEST_CONTROL,)
91ifdef VBOX_WITH_PAGE_SHARING
92 VBoxGuestR3Lib_DEFS += VBOX_WITH_PAGE_SHARING
93endif
94VBoxGuestR3Lib_SOURCES = \
95 VBoxGuestR3Lib.cpp \
96 VBoxGuestR3LibAdditions.cpp \
97 VBoxGuestR3LibBalloon.cpp \
98 VBoxGuestR3LibClipboard.cpp \
99 VBoxGuestR3LibCpuHotPlug.cpp \
100 VBoxGuestR3LibCredentials.cpp \
101 VBoxGuestR3LibEvent.cpp \
102 VBoxGuestR3LibGR.cpp \
103 VBoxGuestR3LibLog.cpp \
104 VBoxGuestR3LibMisc.cpp \
105 VBoxGuestR3LibStat.cpp \
106 VBoxGuestR3LibTime.cpp
107ifneq ($(KBUILD_TARGET),win) ## @todo get rid of this hack (as soon as it's all implemented / #defined).
108 VBoxGuestR3Lib_SOURCES += \
109 VBoxGuestR3LibDaemonize.cpp \
110 VBoxGuestR3LibMouse.cpp \
111 VBoxGuestR3LibSeamless.cpp \
112 VBoxGuestR3LibVideo.cpp
113endif
114ifdef VBOX_WITH_GUEST_PROPS
115 VBoxGuestR3Lib_SOURCES += \
116 VBoxGuestR3LibGuestProp.cpp \
117 VBoxGuestR3LibHostVersion.cpp
118endif
119ifdef VBOX_WITH_GUEST_CONTROL
120 VBoxGuestR3Lib_SOURCES += \
121 VBoxGuestR3LibGuestCtrl.cpp
122endif
123ifdef VBOX_WITH_PAGE_SHARING
124 VBoxGuestR3Lib_SOURCES += \
125 VBoxGuestR3LibModule.cpp
126endif
127
128VBoxGuestR3LibAdditions.cpp_DEFS = VBOX_SVN_REV=$(VBOX_SVN_REV)
129
130#
131# VBoxGuestR3LibShared - a PIC variant of VBoxGuestR3Lib for linking into .so/.dll/.dylib.
132#
133VBoxGuestR3LibShared_TEMPLATE = VBOXGUESTR3DLL
134VBoxGuestR3LibShared_DEFS := $(VBoxGuestR3Lib_DEFS)
135VBoxGuestR3LibShared_SOURCES := $(VBoxGuestR3Lib_SOURCES)
136VBoxGuestR3LibShared_INST := $(INST_ADDITIONS_LIB)
137
138
139#
140# VBoxGuestR3LibXFree86 - a reduced version of the guest library which uses
141# the X server runtime instead of IPRT, for use with old servers where the
142# C library is not available.
143#
144## @todo We're quite probably using the wrong template here.
145VBoxGuestR3LibXFree86_TEMPLATE = VBOXGUESTR3LIB
146VBoxGuestR3LibXFree86_DEFS = \
147 VBOX_WITH_HGCM \
148 VBOX_VBGLR3_XFREE86 \
149 RTMEM_NO_WRAP_TO_EF_APIS \
150 $(if $(VBOX_WITH_GUEST_PROPS),VBOX_WITH_GUEST_PROPS,)
151VBoxGuestR3LibXFree86_SOURCES = \
152 VBoxGuestR3Lib.cpp \
153 VBoxGuestR3LibGR.cpp \
154 $(if $(VBOX_WITH_GUEST_PROPS),VBoxGuestR3LibGuestProp.cpp,) \
155 VBoxGuestR3LibMouse.cpp \
156 VBoxGuestR3LibMisc.cpp \
157 VBoxGuestR3LibSeamless.cpp \
158 VBoxGuestR3LibVideo.cpp \
159 VBoxGuestR3LibRuntimeXF86.cpp
160VBoxGuestR3LibXFree86_INCS = \
161 $(VBOX_PATH_X11_XFREE_4_3)/programs/Xserver/hw/xfree86/common/ \
162 $(VBOX_PATH_X11_XFREE_4_3)/programs/Xserver/hw/xfree86/os-support \
163 $(VBOX_PATH_X11_XFREE_4_3)/programs/Xserver/include \
164 $(VBOX_PATH_X11_XFREE_4_3)/include \
165 $(VBOX_PATH_X11_XFREE_4_3)/exports/include/X11
166
167VBoxGuestR3LibRuntimeXF86.cpp_CXXFLAGS = -Wno-shadow
168
169include $(KBUILD_PATH)/subfooter.kmk
170
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