VirtualBox

source: vbox/trunk/src/VBox/Additions/linux/module/Makefile.module@ 6359

Last change on this file since 6359 was 6159, checked in by vboxsync, 17 years ago

Linux kernel module Makefiles: use KDIR if set

  • Property svn:eol-style set to LF
  • Property svn:keywords set to Author Date Id Revision
File size: 4.3 KB
Line 
1#
2# VirtualBox Guest Additions Module Makefile.
3#
4# (For 2.6.x this file must be 'Makefile'!)
5#
6# Copyright (C) 2006-2007 innotek GmbH
7#
8# This file is part of VirtualBox Open Source Edition (OSE), as
9# available from http://www.virtualbox.org. This file is free software;
10# you can redistribute it and/or modify it under the terms of the GNU
11# General Public License (GPL) as published by the Free Software
12# Foundation, in version 2 as it comes in the "COPYING" file of the
13# VirtualBox OSE distribution. VirtualBox OSE is distributed in the
14# hope that it will be useful, but WITHOUT ANY WARRANTY of any kind.
15#
16
17#
18MODULE = vboxadd
19OBJS = \
20 cmc.o \
21 hgcmcall.o \
22 vboxmod.o \
23 GenericRequest.o \
24 HGCMInternal.o \
25 Init.o \
26 PhysHeap.o \
27 SysHlp.o \
28 VMMDev.o \
29 r0drv/alloc-r0drv.o \
30 r0drv/linux/alloc-r0drv-linux.o \
31 r0drv/linux/semevent-r0drv-linux.o \
32 r0drv/linux/semfastmutex-r0drv-linux.o \
33 RTErrConvertToErrno.o \
34 divdi3.o \
35 moddi3.o \
36 udivdi3.o \
37 umoddi3.o \
38 qdivrem.o \
39 assert.o \
40 logbackdoor.o \
41 logformat.o \
42 strformat.o \
43 strformatrt.o \
44 strformat-vbox.o
45
46ifneq ($(MAKECMDGOALS),clean)
47
48ifdef KDIR
49# Debian kernel module build system
50KERN_DIR := $(KDIR)
51endif
52
53# kernel base directory
54ifndef KERN_DIR
55 KERN_DIR := /lib/modules/$(shell uname -r)/build
56 ifneq ($(shell if test -d $(KERN_DIR); then echo yes; fi),yes)
57 KERN_DIR := /usr/src/linux
58 ifneq ($(shell if test -d $(KERN_DIR); then echo yes; fi),yes)
59 $(error Error: unable to find the sources of your current Linux kernel. Specify KERN_DIR=<directory> and run Make again.)
60 endif
61 $(warning Warning: using /usr/src/linux as the source directory of your Linux kernel. If this is not correct, specify KERN_DIR=<directory> and run Make again.)
62 endif
63else
64 ifneq ($(shell if test -d $(KERN_DIR); then echo yes; fi),yes)
65 $(error Error: KERN_DIR does not point to a directory.)
66 endif
67endif
68
69# includes
70ifndef KERN_INCL
71 KERN_INCL = $(KERN_DIR)/include
72endif
73ifneq ($(shell if test -d $(KERN_INCL); then echo yes; fi),yes)
74 $(error Error: unable to find the include directory for your current Linux kernel. Specify KERN_INCL=<directory> and run Make again.)
75endif
76
77# module install dir.
78ifneq ($(filter install install_rpm,$(MAKECMDGOALS)),)
79 ifndef MODULE_DIR
80 MODULE_DIR_TST := /lib/modules/$(shell uname -r)
81 ifeq ($(shell if test -d $(MODULE_DIR_TST); then echo yes; fi),yes)
82 MODULE_DIR := $(MODULE_DIR_TST)/misc
83 else
84 $(error Unable to find the folder to install the additions driver to)
85 endif
86 endif # MODULE_DIR unspecified
87endif
88
89# guess kernel version (24 or 26)
90ifeq ($(shell if grep '"2.4.' $(KERN_INCL)/linux/version.h > /dev/null; then echo yes; fi),yes)
91KERN_VERSION := 24
92else
93KERN_VERSION := 26
94endif
95# KERN_VERSION := $(if $(wildcard $(KERN_DIR)/Rules.make),24,26)
96
97# debug - show guesses.
98ifdef DEBUG
99$(warning dbg: KERN_DIR = $(KERN_DIR))
100$(warning dbg: KERN_INCL = $(KERN_INCL))
101$(warning dbg: MODULE_DIR = $(MODULE_DIR))
102$(warning dbg: KERN_VERSION = $(KERN_VERSION))
103endif
104
105
106#
107# Compiler options
108#
109ifndef INCL
110 INCL := -I$(KERN_INCL) $(addprefix -I, $(EXTRA_INCL))
111 ifndef KBUILD_EXTMOD
112 KBUILD_EXTMOD := $(shell pwd)
113 endif
114 INCL += $(addprefix -I$(KBUILD_EXTMOD),/ /include /r0drv/linux)
115 export INCL
116endif
117KFLAGS := -D__KERNEL__ -DMODULE -DRT_OS_LINUX -DIN_RING0 -D_X86_ \
118 -DIN_RT_R0 -DIN_SUP_R0 -DVBOX -DVBGL_VBOXGUEST -DVBOX_HGCM \
119 -DLOG_TO_BACKDOOR -DRT_WITH_VBOX -DIN_MODULE -DIN_GUEST_R0
120ifeq ($(BUILD_TYPE),debug)
121KFLAGS += -DDEBUG
122endif
123
124ifeq ($(KERN_VERSION), 24)
125#
126# 2.4
127#
128
129CFLAGS := -O2 -DVBOX_LINUX_2_4 -DEXPORT_SYMTAB $(INCL) $(KFLAGS) $(KDEBUG)
130MODULE_EXT := o
131
132# 2.4 Module linking
133$(MODULE).o: $(OBJS)
134 $(LD) -o $@ -r $(OBJS)
135
136.PHONY: $(MODULE)
137all: $(MODULE)
138$(MODULE): $(MODULE).o
139
140else
141#
142# 2.6 and later
143#
144
145MODULE_EXT := ko
146
147$(MODULE)-y := $(OBJS)
148
149# build defs
150EXTRA_CFLAGS += $(INCL) $(KFLAGS) $(KDEBUG)
151
152all: $(MODULE)
153
154obj-m += $(MODULE).o
155
156$(MODULE):
157 $(MAKE) KBUILD_VERBOSE=1 -C $(KERN_DIR) SUBDIRS=$(CURDIR) SRCROOT=$(CURDIR) modules
158
159endif
160
161install: $(MODULE)
162 @mkdir -p $(MODULE_DIR); \
163 install -m 0664 -o root -g root $(MODULE).$(MODULE_EXT) $(MODULE_DIR); \
164 PATH="$(PATH):/bin:/sbin" depmod -ae;
165
166endif # eq($(MAKECMDGOALS),clean)
167
168clean:
169 for f in . linux r0drv r0drv/linux; do rm -f $$f/*.o $$f/.*.cmd $$f/.*.flags; done
170 rm -rf .vboxadd* .tmp_ver* vboxadd.* Module.symvers Modules.symvers
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