VirtualBox

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

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

Missing file

  • Property svn:eol-style set to native
  • Property svn:keywords set to Author Date Id Revision
File size: 4.8 KB
Line 
1# $Id: Makefile.kmk 29535 2010-05-17 11:57:06Z 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,)
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_GUEST_CONTROL
118 VBoxGuestR3Lib_SOURCES += \
119 VBoxGuestR3LibGuestCtrl.cpp
120endif
121
122VBoxGuestR3LibAdditions.cpp_DEFS = VBOX_SVN_REV=$(VBOX_SVN_REV)
123
124#
125# VBoxGuestR3LibShared - a PIC variant of VBoxGuestR3Lib for linking into .so/.dll/.dylib.
126#
127VBoxGuestR3LibShared_TEMPLATE = VBOXGUESTR3DLL
128VBoxGuestR3LibShared_DEFS := $(VBoxGuestR3Lib_DEFS)
129VBoxGuestR3LibShared_SOURCES := $(VBoxGuestR3Lib_SOURCES)
130VBoxGuestR3LibShared_INST := $(INST_ADDITIONS_LIB)
131
132
133#
134# VBoxGuestR3LibXFree86 - a reduced version of the guest library which uses
135# the X server runtime instead of IPRT, for use with old servers where the
136# C library is not available.
137#
138## @todo We're quite probably using the wrong template here.
139VBoxGuestR3LibXFree86_TEMPLATE = VBOXGUESTR3LIB
140VBoxGuestR3LibXFree86_DEFS = \
141 VBOX_WITH_HGCM \
142 VBOX_VBGLR3_XFREE86 \
143 RTMEM_NO_WRAP_TO_EF_APIS \
144 $(if $(VBOX_WITH_GUEST_PROPS),VBOX_WITH_GUEST_PROPS,)
145VBoxGuestR3LibXFree86_SOURCES = \
146 VBoxGuestR3Lib.cpp \
147 VBoxGuestR3LibGR.cpp \
148 $(if $(VBOX_WITH_GUEST_PROPS),VBoxGuestR3LibGuestProp.cpp,) \
149 VBoxGuestR3LibMouse.cpp \
150 VBoxGuestR3LibMisc.cpp \
151 VBoxGuestR3LibSeamless.cpp \
152 VBoxGuestR3LibVideo.cpp \
153 VBoxGuestR3LibRuntimeXF86.cpp
154VBoxGuestR3LibXFree86_INCS = \
155 $(VBOX_PATH_X11_XFREE_4_3)/programs/Xserver/hw/xfree86/common/ \
156 $(VBOX_PATH_X11_XFREE_4_3)/programs/Xserver/hw/xfree86/os-support \
157 $(VBOX_PATH_X11_XFREE_4_3)/programs/Xserver/include \
158 $(VBOX_PATH_X11_XFREE_4_3)/include \
159 $(VBOX_PATH_X11_XFREE_4_3)/exports/include/X11
160
161VBoxGuestR3LibRuntimeXF86.cpp_CXXFLAGS = -Wno-shadow
162
163include $(KBUILD_PATH)/subfooter.kmk
164
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