VirtualBox

source: vbox/trunk/src/VBox/Additions/common/VBoxGuest/linux/Makefile@ 31146

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

Additions/linux/vboxguest: fix missing symbol/function

  • Property svn:eol-style set to LF
  • Property svn:keywords set to Author Date Id Revision
File size: 7.8 KB
Line 
1# $Revision: 31146 $
2## @file
3# VirtualBox Guest Additions Module Makefile.
4#
5
6#
7# Copyright (C) 2006-2009 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
18#
19# First, figure out which architecture we're targeting and the build type.
20# (We have to support basic cross building (ARCH=i386|x86_64).)
21# While at it, warn about BUILD_* vars found to help with user problems.
22#
23ifeq ($(filter-out x86_64 amd64 AMD64,$(shell uname -m)),)
24 BUILD_TARGET_ARCH_DEF := amd64
25else
26 BUILD_TARGET_ARCH_DEF := x86
27endif
28ifneq ($(filter-out amd64 x86,$(BUILD_TARGET_ARCH)),)
29 $(warning Ignoring unknown BUILD_TARGET_ARCH value '$(BUILD_TARGET_ARCH)'.)
30 BUILD_TARGET_ARCH :=
31endif
32ifeq ($(BUILD_TARGET_ARCH),)
33 ifeq ($(ARCH),x86_64)
34 BUILD_TARGET_ARCH := amd64
35 else
36 ifeq ($(ARCH),i386)
37 BUILD_TARGET_ARCH := x86
38 else
39 BUILD_TARGET_ARCH := $(BUILD_TARGET_ARCH_DEF)
40 endif
41 endif
42else
43 ifneq ($(BUILD_TARGET_ARCH),$(BUILD_TARGET_ARCH_DEF))
44 $(warning Using BUILD_TARGET_ARCH='$(BUILD_TARGET_ARCH)' from the $(origin BUILD_TARGET_ARCH).)
45 endif
46endif
47
48ifneq ($(filter-out release profile debug strict,$(BUILD_TYPE)),)
49 $(warning Ignoring unknown BUILD_TYPE value '$(BUILD_TYPE)'.)
50 BUILD_TYPE :=
51endif
52ifeq ($(BUILD_TYPE),)
53 BUILD_TYPE := release
54else
55 ifneq ($(BUILD_TYPE),release)
56 $(warning Using BUILD_TYPE='$(BUILD_TYPE)' from the $(origin BUILD_TYPE).)
57 endif
58endif
59
60
61# override is required by the Debian guys
62override MODULE = vboxguest
63OBJS = \
64 VBoxGuest-linux.o \
65 VBoxGuest.o \
66 GenericRequest.o \
67 HGCMInternal.o \
68 Init.o \
69 PhysHeap.o \
70 SysHlp.o \
71 VMMDev.o \
72 r0drv/alloc-r0drv.o \
73 r0drv/initterm-r0drv.o \
74 r0drv/memobj-r0drv.o \
75 r0drv/mpnotification-r0drv.o \
76 r0drv/powernotification-r0drv.o \
77 r0drv/linux/alloc-r0drv-linux.o \
78 r0drv/linux/assert-r0drv-linux.o \
79 r0drv/linux/initterm-r0drv-linux.o \
80 r0drv/linux/memobj-r0drv-linux.o \
81 r0drv/linux/memuserkernel-r0drv-linux.o \
82 r0drv/linux/mp-r0drv-linux.o \
83 r0drv/linux/mpnotification-r0drv-linux.o \
84 r0drv/linux/process-r0drv-linux.o \
85 r0drv/linux/semevent-r0drv-linux.o \
86 r0drv/linux/semeventmulti-r0drv-linux.o \
87 r0drv/linux/semfastmutex-r0drv-linux.o \
88 r0drv/linux/spinlock-r0drv-linux.o \
89 r0drv/linux/thread-r0drv-linux.o \
90 r0drv/linux/time-r0drv-linux.o \
91 r0drv/linux/RTLogWriteDebugger-r0drv-linux.o \
92 r0drv/generic/semspinmutex-r0drv-generic.o \
93 common/alloc/alloc.o \
94 common/err/RTErrConvertFromErrno.o \
95 common/err/RTErrConvertToErrno.o \
96 common/log/log.o \
97 common/log/logellipsis.o \
98 common/log/logrel.o \
99 common/log/logrelellipsis.o \
100 common/log/logcom.o \
101 common/log/logformat.o \
102 common/misc/RTAssertMsg1Weak.o \
103 common/misc/RTAssertMsg2.o \
104 common/misc/RTAssertMsg2Add.o \
105 common/misc/RTAssertMsg2AddWeak.o \
106 common/misc/RTAssertMsg2AddWeakV.o \
107 common/misc/RTAssertMsg2Weak.o \
108 common/misc/RTAssertMsg2WeakV.o \
109 common/misc/assert.o \
110 common/string/RTStrCopy.o \
111 common/string/strformat.o \
112 common/string/strformatrt.o \
113 common/string/strformattype.o \
114 common/string/strprintf.o \
115 common/string/strtonum.o \
116 common/time/time.o \
117 generic/RTAssertShouldPanic-generic.o \
118 generic/RTLogWriteStdErr-stub-generic.o \
119 generic/RTLogWriteStdOut-stub-generic.o \
120 VBox/log-vbox.o \
121 VBox/logbackdoor.o
122ifeq ($(BUILD_TARGET_ARCH),x86)
123OBJS += \
124 common/math/gcc/divdi3.o \
125 common/math/gcc/moddi3.o \
126 common/math/gcc/udivdi3.o \
127 common/math/gcc/umoddi3.o \
128 common/math/gcc/qdivrem.o
129endif
130ifeq ($(BUILD_TARGET_ARCH),amd64)
131OBJS += common/alloc/heapsimple.o
132endif
133
134ifneq ($(MAKECMDGOALS),clean)
135
136ifeq ($(KERNELRELEASE),)
137
138 #
139 # building from this directory
140 #
141
142 # kernel base directory
143 ifndef KERN_DIR
144 KERN_DIR := /lib/modules/$(shell uname -r)/build
145 ifneq ($(shell if test -d $(KERN_DIR); then echo yes; fi),yes)
146 KERN_DIR := /usr/src/linux
147 ifneq ($(shell if test -d $(KERN_DIR); then echo yes; fi),yes)
148 $(error Error: unable to find the sources of your current Linux kernel. \
149 Specify KERN_DIR=<directory> and run Make again)
150 endif
151 $(warning Warning: using /usr/src/linux as the source directory of your \
152 Linux kernel. If this is not correct, specify \
153 KERN_DIR=<directory> and run Make again.)
154 endif
155 else
156 ifneq ($(shell if test -d $(KERN_DIR); then echo yes; fi),yes)
157 $(error Error: KERN_DIR does not point to a directory)
158 endif
159 endif
160
161 # includes
162 ifndef KERN_INCL
163 KERN_INCL = $(KERN_DIR)/include
164 endif
165 ifneq ($(shell if test -d $(KERN_INCL); then echo yes; fi),yes)
166 $(error Error: unable to find the include directory for your current Linux \
167 kernel. Specify KERN_INCL=<directory> and run Make again)
168 endif
169
170 # module install dir, only for current kernel
171 ifneq ($(filter install install_rpm,$(MAKECMDGOALS)),)
172 ifndef MODULE_DIR
173 MODULE_DIR_TST := /lib/modules/$(shell uname -r)
174 ifeq ($(shell if test -d $(MODULE_DIR_TST); then echo yes; fi),yes)
175 MODULE_DIR := $(MODULE_DIR_TST)/misc
176 else
177 $(error Unable to find the folder to install the additions driver to)
178 endif
179 endif # MODULE_DIR unspecified
180 endif
181
182 # guess kernel version (24 or 26)
183 ifeq ($(shell if grep '"2\.4\.' $(KERN_INCL)/linux/version.h > /dev/null; then echo yes; fi),yes)
184 KERN_VERSION := 24
185 else
186 KERN_VERSION := 26
187 endif
188
189else # neq($(KERNELRELEASE),)
190
191 #
192 # building from kbuild (make -C <kernel_directory> M=`pwd`)
193 #
194
195 # guess kernel version (24 or 26)
196 ifeq ($(shell if echo "$(VERSION).$(PATCHLEVEL)." | grep '2\.4\.' > /dev/null; then echo yes; fi),yes)
197 KERN_VERSION := 24
198 else
199 KERN_VERSION := 26
200 endif
201
202endif # neq($(KERNELRELEASE),)
203
204# debug - show guesses.
205ifdef DEBUG
206$(warning dbg: KERN_DIR = $(KERN_DIR))
207$(warning dbg: KERN_INCL = $(KERN_INCL))
208$(warning dbg: MODULE_DIR = $(MODULE_DIR))
209$(warning dbg: KERN_VERSION = $(KERN_VERSION))
210endif
211
212KBUILD_VERBOSE ?= 1
213
214#
215# Compiler options
216#
217ifndef INCL
218 INCL := $(addprefix -I,$(KERN_INCL) $(EXTRA_INCL))
219 ifndef KBUILD_EXTMOD
220 KBUILD_EXTMOD := $(shell pwd)
221 endif
222 INCL += $(addprefix -I$(KBUILD_EXTMOD),/ /include /r0drv/linux)
223 export INCL
224endif
225KFLAGS := -D__KERNEL__ -DMODULE \
226 -DVBOX -DRT_OS_LINUX -DIN_RING0 -DIN_RT_R0 -DIN_GUEST -DIN_GUEST_R0 \
227 -DIN_MODULE -DRT_WITH_VBOX -DVBGL_VBOXGUEST -DVBOX_WITH_HGCM
228ifeq ($(BUILD_TARGET_ARCH),amd64)
229 KFLAGS += -DRT_ARCH_AMD64 -DVBOX_WITH_64_BITS_GUESTS
230else
231 KFLAGS += -DRT_ARCH_X86
232endif
233ifeq ($(BUILD_TYPE),debug)
234KFLAGS += -DDEBUG
235endif
236
237ifeq ($(KERN_VERSION), 24)
238#
239# 2.4
240#
241
242ifeq ($(BUILD_TARGET_ARCH),amd64)
243 KFLAGS += -mcmodel=kernel
244endif
245
246CFLAGS := -O2 -DVBOX_LINUX_2_4 -DEXPORT_SYMTAB $(INCL) $(KFLAGS) $(KDEBUG)
247MODULE_EXT := o
248
249# 2.4 Module linking
250$(MODULE).o: $(OBJS)
251 $(LD) -o $@ -r $(OBJS)
252
253.PHONY: $(MODULE)
254all: $(MODULE)
255$(MODULE): $(MODULE).o
256
257else
258#
259# 2.6 and later
260#
261
262MODULE_EXT := ko
263
264$(MODULE)-y := $(OBJS)
265
266# build defs
267EXTRA_CFLAGS += $(INCL) $(KFLAGS) $(KDEBUG)
268
269all: $(MODULE)
270
271obj-m += $(MODULE).o
272
273$(MODULE):
274 $(MAKE) KBUILD_VERBOSE=$(KBUILD_VERBOSE) -C $(KERN_DIR) SUBDIRS=$(CURDIR) SRCROOT=$(CURDIR) modules
275
276endif
277
278install: $(MODULE)
279 @mkdir -p $(MODULE_DIR); \
280 install -m 0664 -o root -g root $(MODULE).$(MODULE_EXT) $(MODULE_DIR); \
281 PATH="$(PATH):/bin:/sbin" depmod -a;
282
283endif # eq($(MAKECMDGOALS),clean)
284
285clean:
286 for f in . linux r0drv r0drv/linux r0drv/generic VBox common/err common/string common/log generic common/math/gcc; \
287 do rm -f $$f/*.o $$f/.*.cmd $$f/.*.flags; done
288 rm -rf .vboxguest* .tmp_ver* vboxguest.* Module.symvers Modules.symvers modules.order
Note: See TracBrowser for help on using the repository browser.

© 2025 Oracle Support Privacy / Do Not Sell My Info Terms of Use Trademark Policy Automated Access Etiquette