1 | #
|
---|
2 | # VirtualBox Guest Additions kernel module Makefile, common parts.
|
---|
3 | #
|
---|
4 | # (For 2.6.x, the main file must be called 'Makefile'!)
|
---|
5 | #
|
---|
6 | # Copyright (C) 2006-2015 Oracle Corporation
|
---|
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 | #
|
---|
18 | # These file should be included by the Makefiles for any kernel modules we
|
---|
19 | # build as part of the Guest Additions. The intended way of doing this is as
|
---|
20 | # follows:
|
---|
21 | #
|
---|
22 | # # Linux kbuild sets this to our source directory if we are called from
|
---|
23 | # # there
|
---|
24 | # obj ?= $(CURDIR)
|
---|
25 | # include $(obj)/Makefile.include.header
|
---|
26 | # MOD_NAME = <name of the module to be built, without extension>
|
---|
27 | # MOD_OBJS = <list of object files which should be included>
|
---|
28 | # MOD_DEFS = <any additional defines which this module needs>
|
---|
29 | # MOD_INCL = <any additional include paths which this module needs>
|
---|
30 | # MOD_CFLAGS = <any additional CFLAGS which this module needs>
|
---|
31 | # MOD_CLEAN = <list of directories that the clean target should look at>
|
---|
32 | # include $(obj)/Makefile.include.footer
|
---|
33 | #
|
---|
34 | # The kmk kBuild define KBUILD_TARGET_ARCH is available.
|
---|
35 | #
|
---|
36 |
|
---|
37 |
|
---|
38 | #
|
---|
39 | # First, figure out which architecture we're targeting and the build type.
|
---|
40 | # (We have to support basic cross building (ARCH=i386|x86_64).)
|
---|
41 | # While at it, warn about BUILD_* vars found to help with user problems.
|
---|
42 | #
|
---|
43 | ifeq ($(filter-out x86_64 amd64 AMD64,$(shell uname -m)),)
|
---|
44 | BUILD_TARGET_ARCH_DEF := amd64
|
---|
45 | else
|
---|
46 | BUILD_TARGET_ARCH_DEF := x86
|
---|
47 | endif
|
---|
48 | ifneq ($(filter-out amd64 x86,$(BUILD_TARGET_ARCH)),)
|
---|
49 | $(warning Ignoring unknown BUILD_TARGET_ARCH value '$(BUILD_TARGET_ARCH)'.)
|
---|
50 | BUILD_TARGET_ARCH :=
|
---|
51 | endif
|
---|
52 | ifeq ($(BUILD_TARGET_ARCH),)
|
---|
53 | ifeq ($(ARCH),x86_64)
|
---|
54 | BUILD_TARGET_ARCH := amd64
|
---|
55 | else
|
---|
56 | ifeq ($(ARCH),i386)
|
---|
57 | BUILD_TARGET_ARCH := x86
|
---|
58 | else
|
---|
59 | BUILD_TARGET_ARCH := $(BUILD_TARGET_ARCH_DEF)
|
---|
60 | endif
|
---|
61 | endif
|
---|
62 | else
|
---|
63 | ifneq ($(BUILD_TARGET_ARCH),$(BUILD_TARGET_ARCH_DEF))
|
---|
64 | $(warning Using BUILD_TARGET_ARCH='$(BUILD_TARGET_ARCH)' from the $(origin BUILD_TARGET_ARCH).)
|
---|
65 | endif
|
---|
66 | endif
|
---|
67 |
|
---|
68 | ifneq ($(filter-out release profile debug strict,$(BUILD_TYPE)),)
|
---|
69 | $(warning Ignoring unknown BUILD_TYPE value '$(BUILD_TYPE)'.)
|
---|
70 | BUILD_TYPE :=
|
---|
71 | endif
|
---|
72 | ifeq ($(BUILD_TYPE),)
|
---|
73 | BUILD_TYPE := release
|
---|
74 | else
|
---|
75 | ifneq ($(BUILD_TYPE),release)
|
---|
76 | $(warning Using BUILD_TYPE='$(BUILD_TYPE)' from the $(origin BUILD_TYPE).)
|
---|
77 | endif
|
---|
78 | endif
|
---|
79 | ifeq ($(USERNAME),)
|
---|
80 | USERNAME := noname
|
---|
81 | endif
|
---|
82 |
|
---|
83 | ifneq ($(MAKECMDGOALS),clean)
|
---|
84 |
|
---|
85 | ifeq ($(KERNELRELEASE),)
|
---|
86 |
|
---|
87 | #
|
---|
88 | # building from this directory
|
---|
89 | #
|
---|
90 |
|
---|
91 | # kernel base directory
|
---|
92 | ifndef KERN_DIR
|
---|
93 | KERN_DIR := /lib/modules/$(shell uname -r)/build
|
---|
94 | ifneq ($(shell if test -d $(KERN_DIR); then echo yes; fi),yes)
|
---|
95 | KERN_DIR := /usr/src/linux
|
---|
96 | ifneq ($(shell if test -d $(KERN_DIR); then echo yes; fi),yes)
|
---|
97 | $(error Error: unable to find the sources of your current Linux kernel. \
|
---|
98 | Specify KERN_DIR=<directory> and run Make again)
|
---|
99 | endif
|
---|
100 | $(warning Warning: using /usr/src/linux as the source directory of your \
|
---|
101 | Linux kernel. If this is not correct, specify \
|
---|
102 | KERN_DIR=<directory> and run Make again.)
|
---|
103 | endif
|
---|
104 | else
|
---|
105 | ifneq ($(shell if test -d $(KERN_DIR); then echo yes; fi),yes)
|
---|
106 | $(error Error: KERN_DIR does not point to a directory)
|
---|
107 | endif
|
---|
108 | endif
|
---|
109 |
|
---|
110 | # includes
|
---|
111 | ifndef KERN_INCL
|
---|
112 | KERN_INCL = $(KERN_DIR)/include
|
---|
113 | endif
|
---|
114 | ifneq ($(shell if test -d $(KERN_INCL); then echo yes; fi),yes)
|
---|
115 | $(error Error: unable to find the include directory for your current Linux \
|
---|
116 | kernel. Specify KERN_INCL=<directory> and run Make again)
|
---|
117 | endif
|
---|
118 |
|
---|
119 | # module install dir, only for current kernel
|
---|
120 | ifneq ($(filter install install_rpm,$(MAKECMDGOALS)),)
|
---|
121 | ifndef MODULE_DIR
|
---|
122 | MODULE_DIR_TST := /lib/modules/$(shell uname -r)
|
---|
123 | ifeq ($(shell if test -d $(MODULE_DIR_TST); then echo yes; fi),yes)
|
---|
124 | MODULE_DIR := $(MODULE_DIR_TST)/misc
|
---|
125 | else
|
---|
126 | $(error Unable to find the folder to install the module to)
|
---|
127 | endif
|
---|
128 | endif # MODULE_DIR unspecified
|
---|
129 | endif
|
---|
130 |
|
---|
131 | # guess kernel version (24 or 26)
|
---|
132 | ifeq ($(shell if grep '"2\.4\.' $(KERN_INCL)/linux/version.h > /dev/null; then echo yes; fi),yes)
|
---|
133 | KERN_VERSION := 24
|
---|
134 | else
|
---|
135 | KERN_VERSION := 26
|
---|
136 | endif
|
---|
137 |
|
---|
138 | else # neq($(KERNELRELEASE),)
|
---|
139 |
|
---|
140 | #
|
---|
141 | # building from kbuild (make -C <kernel_directory> M=`pwd`)
|
---|
142 | #
|
---|
143 |
|
---|
144 | # guess kernel version (24 or 26)
|
---|
145 | ifeq ($(shell if echo "$(VERSION).$(PATCHLEVEL)." | grep '2\.4\.' > /dev/null; then echo yes; fi),yes)
|
---|
146 | KERN_VERSION := 24
|
---|
147 | else
|
---|
148 | KERN_VERSION := 26
|
---|
149 | endif
|
---|
150 |
|
---|
151 | endif # neq($(KERNELRELEASE),)
|
---|
152 |
|
---|
153 | # debug - show guesses.
|
---|
154 | ifdef DEBUG
|
---|
155 | $(warning dbg: KERN_DIR = $(KERN_DIR))
|
---|
156 | $(warning dbg: KERN_INCL = $(KERN_INCL))
|
---|
157 | $(warning dbg: MODULE_DIR = $(MODULE_DIR))
|
---|
158 | $(warning dbg: KERN_VERSION = $(KERN_VERSION))
|
---|
159 | endif
|
---|
160 |
|
---|
161 | endif # eq($(MAKECMDGOALS),clean)
|
---|