VirtualBox

source: vbox/trunk/src/VBox/Installer/linux/Makefile.include.footer@ 69402

Last change on this file since 69402 was 69402, checked in by vboxsync, 7 years ago

Installer/linux: scm cleanups

  • Property svn:eol-style set to LF
  • Property svn:keywords set to Author Date Id Revision
File size: 3.1 KB
Line 
1# $Id: Makefile.include.footer 69402 2017-10-27 00:06:50Z vboxsync $
2## @file
3# VirtualBox Guest Additions kernel module Makefile, common parts.
4#
5# See Makefile.include.header for details of how to use this.
6#
7
8#
9# Copyright (C) 2006-2015 Oracle Corporation
10#
11# This file is part of VirtualBox Open Source Edition (OSE), as
12# available from http://www.virtualbox.org. This file is free software;
13# you can redistribute it and/or modify it under the terms of the GNU
14# General Public License (GPL) as published by the Free Software
15# Foundation, in version 2 as it comes in the "COPYING" file of the
16# VirtualBox OSE distribution. VirtualBox OSE is distributed in the
17# hope that it will be useful, but WITHOUT ANY WARRANTY of any kind.
18#
19
20# override is required by the Debian guys
21override MODULE = $(MOD_NAME)
22OBJS = $(MOD_OBJS)
23
24KBUILD_VERBOSE ?= 1
25
26#
27# Compiler options
28#
29ifndef INCL
30 INCL := $(addprefix -I,$(KERN_INCL) $(EXTRA_INCL))
31 ifndef KBUILD_EXTMOD
32 KBUILD_EXTMOD := $(shell pwd)
33 endif
34 INCL += $(MOD_INCL)
35 export INCL
36endif
37KFLAGS := -D__KERNEL__ -DMODULE $(MOD_DEFS)
38ifeq ($(BUILD_TYPE),debug)
39 KFLAGS += -DDEBUG -DDEBUG_$(subst $(subst _, ,_),_,$(USERNAME)) -DDEBUG_USERNAME=$(subst $(subst _, ,_),_,$(USERNAME))
40endif
41
42ifeq ($(KERN_VERSION), 24)
43#
44# 2.4
45#
46
47# Note: while 2.4 kernels could also do "proper" builds from kbuild, the make
48# script needed to support it was somewhat different from 2.6. Since this
49# script works and 2.4 is not a moving target we will not try do do things the
50# "proper" way.
51
52ifeq ($(BUILD_TARGET_ARCH),amd64)
53 KFLAGS += -mcmodel=kernel
54endif
55
56CFLAGS := -O2 -DVBOX_LINUX_2_4 $(MOD_CFLAGS) $(INCL) $(KFLAGS) $(MOD_EXTRA) $(KDEBUG)
57MODULE_EXT := o
58
59# 2.4 Module linking
60$(MODULE).o: $(OBJS)
61 $(LD) -o $@ -r $(OBJS)
62
63.PHONY: $(MODULE)
64all: $(MODULE)
65$(MODULE): $(MODULE).o
66
67install: $(MODULE)
68 @mkdir -p $(MODULE_DIR); \
69 install -m 0644 -o root -g root $(MODULE).$(MODULE_EXT) $(MODULE_DIR); \
70 PATH="$(PATH):/bin:/sbin" depmod -a;
71
72clean:
73 for f in $(sort $(dir $(OBJS))); do rm -f $$f/*.o $$f/.*.cmd $$f/.*.flags; done
74 rm -rf .$(MOD_NAME)* .tmp_ver* $(MOD_NAME).* Modules.symvers modules.order
75
76else # ! $(KERN_VERSION), 24
77#
78# 2.6 and later
79#
80
81MODULE_EXT := ko
82
83$(MODULE)-y := $(OBJS)
84
85# build defs
86EXTRA_CFLAGS += $(MOD_CFLAGS) $(INCL) $(KFLAGS) $(MOD_EXTRA) $(KDEBUG)
87
88.PHONY: $(MODULE)
89all: $(MODULE)
90
91obj-m += $(MODULE).o
92
93JOBS := $(shell (getconf _NPROCESSORS_ONLN || grep -Ec '^processor|^CPU[0-9]' /proc/cpuinfo) 2>/dev/null)
94ifeq ($(JOBS),0)
95 JOBS := 1
96endif
97
98# OL/UEK: disable module signing for external modules -- we don't have any private key
99$(MODULE):
100 $(MAKE) KBUILD_VERBOSE=$(KBUILD_VERBOSE) CONFIG_MODULE_SIG= -C $(KERN_DIR) SUBDIRS=$(CURDIR) SRCROOT=$(CURDIR) -j$(JOBS) modules
101
102install: $(MODULE)
103 $(MAKE) KBUILD_VERBOSE=$(KBUILD_VERBOSE) CONFIG_MODULE_SIG= -C $(KERN_DIR) SUBDIRS=$(CURDIR) SRCROOT=$(CURDIR) INSTALL_MOD_PATH=$(INSTALL_MOD_PATH) INSTALL_MOD_DIR=$(INSTALL_MOD_DIR) modules_install
104
105modules_install: install
106
107clean:
108 $(MAKE) KBUILD_VERBOSE=$(KBUILD_VERBOSE) CONFIG_MODULE_SIG= -C $(KERN_DIR) SUBDIRS=$(CURDIR) SRCROOT=$(CURDIR) clean
109
110.PHONY: $(MODULE) install modules_install clean
111endif
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