VirtualBox

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

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

Additions/VBoxGuestLib+Additions/VBoxControl: Guest core dumps (VbglR3WriteCoreDump), untested.

  • 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 32574 2010-09-16 17:44:29Z 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 VBoxGuestR3LibCoreDump.cpp \
97 VBoxGuestR3LibCpuHotPlug.cpp \
98 VBoxGuestR3LibCredentials.cpp \
99 VBoxGuestR3LibEvent.cpp \
100 VBoxGuestR3LibGR.cpp \
101 VBoxGuestR3LibLog.cpp \
102 VBoxGuestR3LibMisc.cpp \
103 VBoxGuestR3LibStat.cpp \
104 VBoxGuestR3LibTime.cpp \
105 VBoxGuestR3LibModule.cpp
106ifneq ($(KBUILD_TARGET),win) ## @todo get rid of this hack (as soon as it's all implemented / #defined).
107 VBoxGuestR3Lib_SOURCES += \
108 VBoxGuestR3LibDaemonize.cpp \
109 VBoxGuestR3LibMouse.cpp \
110 VBoxGuestR3LibSeamless.cpp \
111 VBoxGuestR3LibVideo.cpp
112endif
113ifdef VBOX_WITH_GUEST_PROPS
114 VBoxGuestR3Lib_SOURCES += \
115 VBoxGuestR3LibGuestProp.cpp \
116 VBoxGuestR3LibHostVersion.cpp
117endif
118ifdef VBOX_WITH_SHARED_FOLDERS
119 VBoxGuestR3Lib_SOURCES += \
120 VBoxGuestR3LibSharedFolders.cpp
121endif
122ifdef VBOX_WITH_GUEST_CONTROL
123 VBoxGuestR3Lib_SOURCES += \
124 VBoxGuestR3LibGuestCtrl.cpp
125endif
126
127VBoxGuestR3LibAdditions.cpp_DEFS = VBOX_SVN_REV=$(VBOX_SVN_REV)
128
129#
130# VBoxGuestR3LibShared - a PIC variant of VBoxGuestR3Lib for linking into .so/.dll/.dylib.
131#
132VBoxGuestR3LibShared_TEMPLATE = VBOXGUESTR3DLL
133VBoxGuestR3LibShared_DEFS := $(VBoxGuestR3Lib_DEFS)
134VBoxGuestR3LibShared_SOURCES := $(VBoxGuestR3Lib_SOURCES)
135VBoxGuestR3LibShared_INST := $(INST_ADDITIONS_LIB)
136
137
138#
139# VBoxGuestR3LibXFree86 - a reduced version of the guest library which uses
140# the X server runtime instead of IPRT, for use with old servers where the
141# C library is not available.
142#
143VBoxGuestR3LibXFree86_TEMPLATE = VBOXGUESTR3XF86LIB
144VBoxGuestR3LibXFree86_DEFS = \
145 VBOX_WITH_HGCM \
146 VBOX_VBGLR3_XFREE86 \
147 RTMEM_NO_WRAP_TO_EF_APIS \
148 $(if $(VBOX_WITH_GUEST_PROPS),VBOX_WITH_GUEST_PROPS,)
149VBoxGuestR3LibXFree86_SOURCES = \
150 VBoxGuestR3Lib.cpp \
151 VBoxGuestR3LibGR.cpp \
152 $(if $(VBOX_WITH_GUEST_PROPS),VBoxGuestR3LibGuestProp.cpp,) \
153 VBoxGuestR3LibMouse.cpp \
154 VBoxGuestR3LibMisc.cpp \
155 VBoxGuestR3LibSeamless.cpp \
156 VBoxGuestR3LibVideo.cpp \
157 VBoxGuestR3LibRuntimeXF86.cpp
158VBoxGuestR3LibXFree86_INCS = \
159 $(VBOX_PATH_X11_XFREE_4_3)/programs/Xserver/hw/xfree86/common/ \
160 $(VBOX_PATH_X11_XFREE_4_3)/programs/Xserver/hw/xfree86/os-support \
161 $(VBOX_PATH_X11_XFREE_4_3)/programs/Xserver/include \
162 $(VBOX_PATH_X11_XFREE_4_3)/include \
163 $(VBOX_PATH_X11_XFREE_4_3)/exports/include/X11
164
165VBoxGuestR3LibRuntimeXF86.cpp_CXXFLAGS = -Wno-shadow
166
167include $(KBUILD_PATH)/subfooter.kmk
168
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