VirtualBox

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

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

VBoxGuestLib/Makefile.kmk,Config.kmk: Followup to r64491 - fixed library installation location.

  • 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 31520 2010-08-10 11:41:04Z 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 VBoxGuestR0LibSharedFolders.c \
64 VbglR0CanUsePhysPageList.cpp
65
66#
67# VBoxGuestR0LibBase
68#
69VBoxGuestR0LibBase_TEMPLATE = VBOXGUESTR0LIB
70VBoxGuestR0LibBase_DEFS = VBOX_WITH_HGCM VBGL_VBOXGUEST
71VBoxGuestR0LibBase_INCS = $(VBoxGuestR0Lib_INCS)
72VBoxGuestR0LibBase_INCS.win = $(VBoxGuestR0Lib_INCS.win)
73VBoxGuestR0LibBase_SOURCES = \
74 GenericRequest.cpp \
75 SysHlp.cpp \
76 PhysHeap.cpp \
77 Init.cpp \
78 VMMDev.cpp \
79 HGCMInternal.cpp \
80 VbglR0CanUsePhysPageList.cpp
81
82#
83# VBoxGuestR3Lib
84#
85VBoxGuestR3Lib_TEMPLATE = VBOXGUESTR3LIB
86VBoxGuestR3Lib_DEFS = \
87 VBOX_WITH_HGCM \
88 $(if $(VBOX_WITH_GUEST_PROPS),VBOX_WITH_GUEST_PROPS,) \
89 $(if $(VBOX_WITH_SHARED_FOLDERS),VBOX_WITH_SHARED_FOLDERS,) \
90 $(if $(VBOX_WITH_GUEST_CONTROL),VBOX_WITH_GUEST_CONTROL,)
91VBoxGuestR3Lib_SOURCES = \
92 VBoxGuestR3Lib.cpp \
93 VBoxGuestR3LibAdditions.cpp \
94 VBoxGuestR3LibBalloon.cpp \
95 VBoxGuestR3LibClipboard.cpp \
96 VBoxGuestR3LibCpuHotPlug.cpp \
97 VBoxGuestR3LibCredentials.cpp \
98 VBoxGuestR3LibEvent.cpp \
99 VBoxGuestR3LibGR.cpp \
100 VBoxGuestR3LibLog.cpp \
101 VBoxGuestR3LibMisc.cpp \
102 VBoxGuestR3LibStat.cpp \
103 VBoxGuestR3LibTime.cpp \
104 VBoxGuestR3LibModule.cpp
105ifneq ($(KBUILD_TARGET),win) ## @todo get rid of this hack (as soon as it's all implemented / #defined).
106 VBoxGuestR3Lib_SOURCES += \
107 VBoxGuestR3LibDaemonize.cpp \
108 VBoxGuestR3LibMouse.cpp \
109 VBoxGuestR3LibSeamless.cpp \
110 VBoxGuestR3LibVideo.cpp
111endif
112ifdef VBOX_WITH_GUEST_PROPS
113 VBoxGuestR3Lib_SOURCES += \
114 VBoxGuestR3LibGuestProp.cpp \
115 VBoxGuestR3LibHostVersion.cpp
116endif
117ifdef VBOX_WITH_SHARED_FOLDERS
118 VBoxGuestR3Lib_SOURCES += \
119 VBoxGuestR3LibSharedFolders.cpp
120endif
121ifdef VBOX_WITH_GUEST_CONTROL
122 VBoxGuestR3Lib_SOURCES += \
123 VBoxGuestR3LibGuestCtrl.cpp
124endif
125
126VBoxGuestR3LibAdditions.cpp_DEFS = VBOX_SVN_REV=$(VBOX_SVN_REV)
127
128#
129# VBoxGuestR3LibShared - a PIC variant of VBoxGuestR3Lib for linking into .so/.dll/.dylib.
130#
131VBoxGuestR3LibShared_TEMPLATE = VBOXGUESTR3DLL
132VBoxGuestR3LibShared_DEFS := $(VBoxGuestR3Lib_DEFS)
133VBoxGuestR3LibShared_SOURCES := $(VBoxGuestR3Lib_SOURCES)
134VBoxGuestR3LibShared_INST := $(INST_ADDITIONS_LIB)
135
136
137#
138# VBoxGuestR3LibXFree86 - a reduced version of the guest library which uses
139# the X server runtime instead of IPRT, for use with old servers where the
140# C library is not available.
141#
142VBoxGuestR3LibXFree86_TEMPLATE = VBOXGUESTR3XF86LIB
143VBoxGuestR3LibXFree86_DEFS = \
144 VBOX_WITH_HGCM \
145 VBOX_VBGLR3_XFREE86 \
146 RTMEM_NO_WRAP_TO_EF_APIS \
147 $(if $(VBOX_WITH_GUEST_PROPS),VBOX_WITH_GUEST_PROPS,)
148VBoxGuestR3LibXFree86_SOURCES = \
149 VBoxGuestR3Lib.cpp \
150 VBoxGuestR3LibGR.cpp \
151 $(if $(VBOX_WITH_GUEST_PROPS),VBoxGuestR3LibGuestProp.cpp,) \
152 VBoxGuestR3LibMouse.cpp \
153 VBoxGuestR3LibMisc.cpp \
154 VBoxGuestR3LibSeamless.cpp \
155 VBoxGuestR3LibVideo.cpp \
156 VBoxGuestR3LibRuntimeXF86.cpp
157VBoxGuestR3LibXFree86_INCS = \
158 $(VBOX_PATH_X11_XFREE_4_3)/programs/Xserver/hw/xfree86/common/ \
159 $(VBOX_PATH_X11_XFREE_4_3)/programs/Xserver/hw/xfree86/os-support \
160 $(VBOX_PATH_X11_XFREE_4_3)/programs/Xserver/include \
161 $(VBOX_PATH_X11_XFREE_4_3)/include \
162 $(VBOX_PATH_X11_XFREE_4_3)/exports/include/X11
163
164VBoxGuestR3LibRuntimeXF86.cpp_CXXFLAGS = -Wno-shadow
165
166include $(KBUILD_PATH)/subfooter.kmk
167
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