]> git.proxmox.com Git - mirror_ubuntu-disco-kernel.git/blame - Makefile
s390/kexec_file: Fix detection of text segment in ELF loader
[mirror_ubuntu-disco-kernel.git] / Makefile
CommitLineData
b2441318 1# SPDX-License-Identifier: GPL-2.0
bfeffd15
LT
2VERSION = 5
3PATCHLEVEL = 0
695a3ab1 4SUBLEVEL = 19
1c163f4c 5EXTRAVERSION =
2e6e902d 6NAME = Shy Crocodile
1da177e4
LT
7
8# *DOCUMENTATION*
9# To see a list of typical targets execute "make help"
10# More info can be located in ./README
11# Comments in this file are targeted only to the developer, do not
12# expect to learn how to build the kernel reading this file.
13
ba634ece
MY
14# That's our default target when none is given on the command line
15PHONY := _all
16_all:
17
1da177e4
LT
18# We are using a recursive build, so we need to do a little thinking
19# to get the ordering right.
20#
21# Most importantly: sub-Makefiles should only ever modify files in
22# their own directory. If in some directory we have a dependency on
23# a file in another dir (which doesn't happen often, but it's often
f49821ee 24# unavoidable when linking the built-in.a targets which finally
1da177e4
LT
25# turn into vmlinux), we will call a sub make in that other dir, and
26# after that we are sure that everything which is in that other dir
27# is now up to date.
28#
29# The only cases where we need to modify files which have global
30# effects are thus separated out and done before the recursive
31# descending is started. They are now explicitly listed as the
32# prepare rule.
33
3d1f7b9a 34ifneq ($(sub_make_done),1)
66c8324a
MY
35
36# Do not use make's built-in rules and variables
37# (this increases performance and avoids hard-to-debug behaviour)
38MAKEFLAGS += -rR
39
40# Avoid funny character set dependencies
41unexport LC_ALL
42LC_COLLATE=C
43LC_NUMERIC=C
44export LC_COLLATE LC_NUMERIC
45
46# Avoid interference with shell env settings
47unexport GREP_OPTIONS
48
066b7ed9
MM
49# Beautify output
50# ---------------------------------------------------------------------------
51#
52# Normally, we echo the whole command before executing it. By making
53# that echo $($(quiet)$(cmd)), we now have the possibility to set
54# $(quiet) to choose other forms of output instead, e.g.
55#
56# quiet_cmd_cc_o_c = Compiling $(RELDIR)/$@
57# cmd_cc_o_c = $(CC) $(c_flags) -c -o $@ $<
58#
59# If $(quiet) is empty, the whole command will be printed.
60# If it is set to "quiet_", only the short version will be printed.
61# If it is set to "silent_", nothing will be printed at all, since
62# the variable $(silent_cmd_cc_o_c) doesn't exist.
63#
64# A simple variant is to prefix commands with $(Q) - that's useful
65# for commands that shall be hidden in non-verbose mode.
66#
67# $(Q)ln $@ :<
68#
69# If KBUILD_VERBOSE equals 0 then the above command will be hidden.
70# If KBUILD_VERBOSE equals 1 then the above command is displayed.
71#
1da177e4
LT
72# To put more focus on warnings, be less verbose as default
73# Use 'make V=1' to see the full commands
74
b8b0618c
CR
75ifeq ("$(origin V)", "command line")
76 KBUILD_VERBOSE = $(V)
1da177e4
LT
77endif
78ifndef KBUILD_VERBOSE
79 KBUILD_VERBOSE = 0
80endif
81
066b7ed9
MM
82ifeq ($(KBUILD_VERBOSE),1)
83 quiet =
84 Q =
85else
86 quiet=quiet_
87 Q = @
88endif
89
90# If the user is running make -s (silent mode), suppress echoing of
91# commands
92
6f0fa58e 93ifneq ($(findstring s,$(filter-out --%,$(MAKEFLAGS))),)
066b7ed9 94 quiet=silent_
e572d088 95 tools_silent=s
066b7ed9 96endif
066b7ed9
MM
97
98export quiet Q KBUILD_VERBOSE
99
1da177e4
LT
100# kbuild supports saving output files in a separate directory.
101# To locate output files in a separate directory two syntaxes are supported.
102# In both cases the working directory must be the root of the kernel src.
103# 1) O=
104# Use "make O=dir/to/store/output/files/"
070b98bf 105#
1da177e4
LT
106# 2) Set KBUILD_OUTPUT
107# Set the environment variable KBUILD_OUTPUT to point to the directory
108# where the output files shall be placed.
109# export KBUILD_OUTPUT=dir/to/store/output/files/
110# make
111#
112# The O= assignment takes precedence over the KBUILD_OUTPUT environment
113# variable.
114
c4e6fff1
C
115# KBUILD_SRC is not intended to be used by the regular user (for now),
116# it is set on invocation of make with KBUILD_OUTPUT or O= specified.
1da177e4
LT
117
118# OK, Make called in directory where kernel src resides
119# Do we want to locate output files in a separate directory?
b8b0618c
CR
120ifeq ("$(origin O)", "command line")
121 KBUILD_OUTPUT := $(O)
1da177e4
LT
122endif
123
1cacc9ab
SR
124# Cancel implicit rules on top Makefile
125$(CURDIR)/Makefile Makefile: ;
126
51193b76
RJ
127ifneq ($(words $(subst :, ,$(CURDIR))), 1)
128 $(error main directory cannot contain spaces nor colons)
129endif
130
1da177e4 131ifneq ($(KBUILD_OUTPUT),)
1da177e4
LT
132# check that the output directory actually exists
133saved-output := $(KBUILD_OUTPUT)
028568d8 134KBUILD_OUTPUT := $(shell mkdir -p $(KBUILD_OUTPUT) && cd $(KBUILD_OUTPUT) \
16f8259c 135 && pwd)
1da177e4 136$(if $(KBUILD_OUTPUT),, \
1c9e70a5 137 $(error failed to create output directory "$(saved-output)"))
1da177e4 138
80463f1b
MY
139# Look for make include files relative to root of kernel src
140#
141# This does not become effective immediately because MAKEFLAGS is re-parsed
142# once after the Makefile is read. It is OK since we are going to invoke
143# 'sub-make' below.
144MAKEFLAGS += --include-dir=$(CURDIR)
145
5a53e7d3 146need-sub-make := 1
66c8324a
MY
147else
148
149# Do not print "Entering directory ..." at all for in-tree build.
150MAKEFLAGS += --no-print-directory
151
152endif # ifneq ($(KBUILD_OUTPUT),)
153
5a53e7d3
MY
154ifneq ($(filter 3.%,$(MAKE_VERSION)),)
155# 'MAKEFLAGS += -rR' does not immediately become effective for GNU Make 3.x
156# We need to invoke sub-make to avoid implicit rules in the top Makefile.
157need-sub-make := 1
158# Cancel implicit rules for this Makefile.
159$(lastword $(MAKEFILE_LIST)): ;
160endif
161
3d1f7b9a
MY
162export sub_make_done := 1
163
5a53e7d3
MY
164ifeq ($(need-sub-make),1)
165
0b35786d
MM
166PHONY += $(MAKECMDGOALS) sub-make
167
1cacc9ab 168$(filter-out _all sub-make $(CURDIR)/Makefile, $(MAKECMDGOALS)) _all: sub-make
16f89098 169 @:
0b35786d 170
c4e6fff1 171# Invoke a second make in the output directory, passing relevant variables
2e8d696b 172sub-make:
3d1f7b9a 173 $(Q)$(MAKE) \
66c8324a 174 $(if $(KBUILD_OUTPUT),-C $(KBUILD_OUTPUT) KBUILD_SRC=$(CURDIR)) \
aa55c8e2 175 -f $(CURDIR)/Makefile $(filter-out _all sub-make,$(MAKECMDGOALS))
1da177e4 176
5a53e7d3 177endif # need-sub-make
3d1f7b9a 178endif # sub_make_done
5a53e7d3 179
1da177e4 180# We process the rest of the Makefile if this is the final invocation of make
5a53e7d3 181ifeq ($(need-sub-make),)
1da177e4 182
7ff52571
MY
183# Do not print "Entering directory ...",
184# but we want to display it when entering to the output directory
185# so that IDEs/editors are able to understand relative filenames.
186MAKEFLAGS += --no-print-directory
187
aa55c8e2
MY
188# Call a source code checker (by default, "sparse") as part of the
189# C compilation.
190#
191# Use 'make C=1' to enable checking of only re-compiled files.
192# Use 'make C=2' to enable checking of *all* source files, regardless
193# of whether they are re-compiled or not.
194#
036db11c
C
195# See the file "Documentation/dev-tools/sparse.rst" for more details,
196# including where to get the "sparse" utility.
aa55c8e2
MY
197
198ifeq ("$(origin C)", "command line")
199 KBUILD_CHECKSRC = $(C)
200endif
201ifndef KBUILD_CHECKSRC
202 KBUILD_CHECKSRC = 0
203endif
204
bf46cb1e
MS
205# Call message checker as part of the C compilation
206#
207# Use 'make D=1' to enable checking
208# Use 'make D=2' to create the message catalog
209
210ifdef D
211 ifeq ("$(origin D)", "command line")
212 KBUILD_KMSG_CHECK = $(D)
213 endif
214endif
215ifndef KBUILD_KMSG_CHECK
216 KBUILD_KMSG_CHECK = 0
217endif
218
aa55c8e2
MY
219# Use make M=dir to specify directory of external module to build
220# Old syntax make ... SUBDIRS=$PWD is still supported
221# Setting the environment variable KBUILD_EXTMOD take precedence
222ifdef SUBDIRS
0126be38
MY
223 $(warning ================= WARNING ================)
224 $(warning 'SUBDIRS' will be removed after Linux 5.3)
225 $(warning Please use 'M=' or 'KBUILD_EXTMOD' instead)
226 $(warning ==========================================)
aa55c8e2
MY
227 KBUILD_EXTMOD ?= $(SUBDIRS)
228endif
229
230ifeq ("$(origin M)", "command line")
231 KBUILD_EXTMOD := $(M)
232endif
233
9da0763b
MM
234ifeq ($(KBUILD_SRC),)
235 # building in the source tree
236 srctree := .
237else
238 ifeq ($(KBUILD_SRC)/,$(dir $(CURDIR)))
239 # building in a subdirectory of the source tree
240 srctree := ..
241 else
242 srctree := $(KBUILD_SRC)
243 endif
244endif
2c1f4f12
MY
245
246export KBUILD_CHECKSRC KBUILD_EXTMOD KBUILD_SRC
247
7e1c0477 248objtree := .
1da177e4
LT
249src := $(srctree)
250obj := $(objtree)
251
0f558c33 252VPATH := $(srctree)$(if $(KBUILD_EXTMOD),:$(KBUILD_EXTMOD))
1da177e4 253
11294235 254export srctree objtree VPATH
1da177e4 255
2c1f4f12
MY
256# To make sure we do not include .config for any of the *config targets
257# catch them early, and hand them over to scripts/kconfig/Makefile
258# It is allowed to specify more targets when calling make, including
259# mixing *config targets and build targets.
260# For example 'make oldconfig all'.
261# Detect when mixed targets is specified, and make a second invocation
262# of make so .config is not included in this case either (for *config).
263
264version_h := include/generated/uapi/linux/version.h
265old_version_h := include/linux/version.h
266
22340a06
MY
267clean-targets := %clean mrproper cleandocs
268no-dot-config-targets := $(clean-targets) \
2c1f4f12
MY
269 cscope gtags TAGS tags help% %docs check% coccicheck \
270 $(version_h) headers_% archheaders archscripts \
63e31a67 271 %asm-generic kernelversion %src-pkg
a29d4d8c
MY
272no-sync-config-targets := $(no-dot-config-targets) install %install \
273 kernelrelease
2c1f4f12 274
d7942413
MY
275config-targets := 0
276mixed-targets := 0
277dot-config := 1
278may-sync-config := 1
2c1f4f12
MY
279
280ifneq ($(filter $(no-dot-config-targets), $(MAKECMDGOALS)),)
281 ifeq ($(filter-out $(no-dot-config-targets), $(MAKECMDGOALS)),)
282 dot-config := 0
283 endif
284endif
285
d7942413
MY
286ifneq ($(filter $(no-sync-config-targets), $(MAKECMDGOALS)),)
287 ifeq ($(filter-out $(no-sync-config-targets), $(MAKECMDGOALS)),)
288 may-sync-config := 0
289 endif
290endif
291
292ifneq ($(KBUILD_EXTMOD),)
293 may-sync-config := 0
294endif
295
2c1f4f12
MY
296ifeq ($(KBUILD_EXTMOD),)
297 ifneq ($(filter config %config,$(MAKECMDGOALS)),)
298 config-targets := 1
299 ifneq ($(words $(MAKECMDGOALS)),1)
300 mixed-targets := 1
301 endif
302 endif
303endif
22340a06
MY
304
305# For "make -j clean all", "make -j mrproper defconfig all", etc.
306ifneq ($(filter $(clean-targets),$(MAKECMDGOALS)),)
307 ifneq ($(filter-out $(clean-targets),$(MAKECMDGOALS)),)
308 mixed-targets := 1
309 endif
310endif
311
2c1f4f12
MY
312# install and modules_install need also be processed one by one
313ifneq ($(filter install,$(MAKECMDGOALS)),)
314 ifneq ($(filter modules_install,$(MAKECMDGOALS)),)
315 mixed-targets := 1
316 endif
317endif
318
319ifeq ($(mixed-targets),1)
320# ===========================================================================
321# We're called with mixed targets (*config and build targets).
322# Handle them one by one.
323
324PHONY += $(MAKECMDGOALS) __build_one_by_one
325
326$(filter-out __build_one_by_one, $(MAKECMDGOALS)): __build_one_by_one
327 @:
328
329__build_one_by_one:
330 $(Q)set -e; \
331 for i in $(MAKECMDGOALS); do \
332 $(MAKE) -f $(srctree)/Makefile $$i; \
333 done
334
335else
336
337# We need some generic definitions (do not try to remake the file).
338scripts/Kbuild.include: ;
339include scripts/Kbuild.include
340
341# Read KERNELRELEASE from include/config/kernel.release (if it exists)
342KERNELRELEASE = $(shell cat include/config/kernel.release 2> /dev/null)
343KERNELVERSION = $(VERSION)$(if $(PATCHLEVEL),.$(PATCHLEVEL)$(if $(SUBLEVEL),.$(SUBLEVEL)))$(EXTRAVERSION)
344export VERSION PATCHLEVEL SUBLEVEL KERNELRELEASE KERNELVERSION
345
b2d35fa5 346include scripts/subarch.include
1da177e4
LT
347
348# Cross compiling and selecting different set of gcc/bin-utils
349# ---------------------------------------------------------------------------
350#
351# When performing cross compilation for other architectures ARCH shall be set
352# to the target architecture. (See arch/* for the possibilities).
353# ARCH can be set during invocation of make:
354# make ARCH=ia64
355# Another way is to have ARCH set in the environment.
356# The default ARCH is the host where make is executed.
357
358# CROSS_COMPILE specify the prefix used for all executables used
359# during compilation. Only gcc and related bin-utils executables
360# are prefixed with $(CROSS_COMPILE).
361# CROSS_COMPILE can be set on the command line
362# make CROSS_COMPILE=ia64-linux-
363# Alternatively CROSS_COMPILE can be set in the environment.
364# Default value for CROSS_COMPILE is not to prefix executables
365# Note: Some architectures assign CROSS_COMPILE in their arch/*/Makefile
2331d1a6 366ARCH ?= $(SUBARCH)
1da177e4
LT
367
368# Architecture as present in compile.h
6752ed90
TG
369UTS_MACHINE := $(ARCH)
370SRCARCH := $(ARCH)
1da177e4 371
d746d647
SR
372# Additional ARCH settings for x86
373ifeq ($(ARCH),i386)
374 SRCARCH := x86
375endif
376ifeq ($(ARCH),x86_64)
377 SRCARCH := x86
378endif
74b469f2 379
5e538790 380# Additional ARCH settings for sparc
e69f58c0
NK
381ifeq ($(ARCH),sparc32)
382 SRCARCH := sparc
383endif
a439fe51 384ifeq ($(ARCH),sparc64)
5e538790 385 SRCARCH := sparc
a439fe51 386endif
2fb9b1bd 387
3cc000b5
PM
388# Additional ARCH settings for sh
389ifeq ($(ARCH),sh64)
390 SRCARCH := sh
391endif
392
14cdd3c4 393KCONFIG_CONFIG ?= .config
41263fc6 394export KCONFIG_CONFIG
14cdd3c4 395
1da177e4
LT
396# SHELL used by kbuild
397CONFIG_SHELL := $(shell if [ -x "$$BASH" ]; then echo $$BASH; \
398 else if [ -x /bin/bash ]; then echo /bin/bash; \
399 else echo sh; fi ; fi)
400
6d79a7b4
MY
401HOST_LFS_CFLAGS := $(shell getconf LFS_CFLAGS 2>/dev/null)
402HOST_LFS_LDFLAGS := $(shell getconf LFS_LDFLAGS 2>/dev/null)
403HOST_LFS_LIBS := $(shell getconf LFS_LIBS 2>/dev/null)
d7f14c66 404
070b98bf
SR
405HOSTCC = gcc
406HOSTCXX = g++
96f14fe7 407KBUILD_HOSTCFLAGS := -Wall -Wmissing-prototypes -Wstrict-prototypes -O2 \
f92d19e0
LA
408 -fomit-frame-pointer -std=gnu89 $(HOST_LFS_CFLAGS) \
409 $(HOSTCFLAGS)
410KBUILD_HOSTCXXFLAGS := -O2 $(HOST_LFS_CFLAGS) $(HOSTCXXFLAGS)
411KBUILD_HOSTLDFLAGS := $(HOST_LFS_LDFLAGS) $(HOSTLDFLAGS)
412KBUILD_HOSTLDLIBS := $(HOST_LFS_LIBS) $(HOSTLDLIBS)
1da177e4 413
1da177e4 414# Make variables (CC, etc...)
1da177e4
LT
415AS = $(CROSS_COMPILE)as
416LD = $(CROSS_COMPILE)ld
417CC = $(CROSS_COMPILE)gcc
418CPP = $(CC) -E
419AR = $(CROSS_COMPILE)ar
420NM = $(CROSS_COMPILE)nm
421STRIP = $(CROSS_COMPILE)strip
422OBJCOPY = $(CROSS_COMPILE)objcopy
423OBJDUMP = $(CROSS_COMPILE)objdump
73a4f6db
MY
424LEX = flex
425YACC = bison
1da177e4
LT
426AWK = awk
427GENKSYMS = scripts/genksyms/genksyms
caa27b66 428INSTALLKERNEL := installkernel
1da177e4 429DEPMOD = /sbin/depmod
1da177e4 430PERL = perl
011bf125 431PYTHON = python
e9781b52
MY
432PYTHON2 = python2
433PYTHON3 = python3
1da177e4
LT
434CHECK = sparse
435
80a7d1d9 436CHECKFLAGS := -D__linux__ -Dlinux -D__STDC__ -Dunix -D__unix__ \
6c49f359 437 -Wbitwise -Wno-return-void -Wno-unknown-attribute $(CF)
bf46cb1e 438KMSG_CHECK = $(srctree)/scripts/kmsg-doc
b36fad65 439NOSTDINC_FLAGS =
6588169d
SR
440CFLAGS_MODULE =
441AFLAGS_MODULE =
442LDFLAGS_MODULE =
1da177e4
LT
443CFLAGS_KERNEL =
444AFLAGS_KERNEL =
b36fad65 445LDFLAGS_vmlinux =
1da177e4 446
4e9a16c3
LO
447# Prefer linux-backports-modules
448ifneq ($(KBUILD_SRC),)
449ifneq ($(shell if test -e $(KBUILD_OUTPUT)/ubuntu-build; then echo yes; fi),yes)
450UBUNTUINCLUDE := -I/usr/src/linux-headers-lbm-$(KERNELRELEASE)
451endif
452endif
453
abbf1590
DH
454# Use USERINCLUDE when you must reference the UAPI directories only.
455USERINCLUDE := \
9d022c54
MY
456 -I$(srctree)/arch/$(SRCARCH)/include/uapi \
457 -I$(objtree)/arch/$(SRCARCH)/include/generated/uapi \
abbf1590 458 -I$(srctree)/include/uapi \
3308b285 459 -I$(objtree)/include/generated/uapi \
abbf1590
DH
460 -include $(srctree)/include/linux/kconfig.h
461
1da177e4
LT
462# Use LINUXINCLUDE when you must reference the include/ directory.
463# Needed to be compatible with the O= option
abbf1590 464LINUXINCLUDE := \
4e9a16c3 465 $(UBUNTUINCLUDE) \
9d022c54
MY
466 -I$(srctree)/arch/$(SRCARCH)/include \
467 -I$(objtree)/arch/$(SRCARCH)/include/generated \
abbf1590 468 $(if $(KBUILD_SRC), -I$(srctree)/include) \
f8224f7f
MY
469 -I$(objtree)/include \
470 $(USERINCLUDE)
1da177e4 471
4e9a16c3
LO
472# UBUNTU: Include our third party driver stuff too
473LINUXINCLUDE += -Iubuntu/include $(if $(KBUILD_SRC),-I$(srctree)/ubuntu/include)
474
42a92bcc 475KBUILD_AFLAGS := -D__ASSEMBLY__ -fno-PIE
eeb5687a 476KBUILD_CFLAGS := -Wall -Wundef -Werror=strict-prototypes -Wno-trigraphs \
42a92bcc 477 -fno-strict-aliasing -fno-common -fshort-wchar -fno-PIE \
61a0902a 478 -Werror-implicit-function-declaration -Werror=implicit-int \
51b97e35 479 -Wno-format-security \
433dc2eb
MY
480 -std=gnu89
481KBUILD_CPPFLAGS := -D__KERNEL__
80c00ba9
SR
482KBUILD_AFLAGS_KERNEL :=
483KBUILD_CFLAGS_KERNEL :=
6588169d
SR
484KBUILD_AFLAGS_MODULE := -DMODULE
485KBUILD_CFLAGS_MODULE := -DMODULE
486KBUILD_LDFLAGS_MODULE := -T $(srctree)/scripts/module-common.lds
d503ac53 487KBUILD_LDFLAGS :=
433dc2eb 488GCC_PLUGINS_CFLAGS :=
1da177e4 489
96f14fe7 490export ARCH SRCARCH CONFIG_SHELL HOSTCC KBUILD_HOSTCFLAGS CROSS_COMPILE AS LD CC
8377bd2b 491export CPP AR NM STRIP OBJCOPY OBJDUMP KBUILD_HOSTLDFLAGS KBUILD_HOSTLDLIBS
e9781b52 492export MAKE LEX YACC AWK GENKSYMS INSTALLKERNEL PERL PYTHON PYTHON2 PYTHON3 UTS_MACHINE
10844aeb 493export HOSTCXX KBUILD_HOSTCXXFLAGS LDFLAGS_MODULE CHECK CHECKFLAGS
1da177e4 494
d503ac53 495export KBUILD_CPPFLAGS NOSTDINC_FLAGS LINUXINCLUDE OBJCOPYFLAGS KBUILD_LDFLAGS
0e410e15
AK
496export KBUILD_CFLAGS CFLAGS_KERNEL CFLAGS_MODULE
497export CFLAGS_KASAN CFLAGS_KASAN_NOSANITIZE CFLAGS_UBSAN
222d394d 498export KBUILD_AFLAGS AFLAGS_KERNEL AFLAGS_MODULE
bf46cb1e 499export KBUILD_KMSG_CHECK KMSG_CHECK
6588169d 500export KBUILD_AFLAGS_MODULE KBUILD_CFLAGS_MODULE KBUILD_LDFLAGS_MODULE
80c00ba9 501export KBUILD_AFLAGS_KERNEL KBUILD_CFLAGS_KERNEL
40df759e 502export KBUILD_ARFLAGS
1da177e4
LT
503
504# When compiling out-of-tree modules, put MODVERDIR in the module
505# tree rather than in the kernel tree. The kernel tree might
506# even be read-only.
507export MODVERDIR := $(if $(KBUILD_EXTMOD),$(firstword $(KBUILD_EXTMOD))/).tmp_versions
508
1da177e4
LT
509# Files to ignore in find ... statements
510
ae63b2d7
PB
511export RCS_FIND_IGNORE := \( -name SCCS -o -name BitKeeper -o -name .svn -o \
512 -name CVS -o -name .pc -o -name .hg -o -name .git \) \
513 -prune -o
450c6076
JJ
514export RCS_TAR_IGNORE := --exclude SCCS --exclude BitKeeper --exclude .svn \
515 --exclude CVS --exclude .pc --exclude .hg --exclude .git
1da177e4
LT
516
517# ===========================================================================
518# Rules shared between *config targets and build targets
519
312a3d09 520# Basic helpers built in scripts/basic/
4f193362 521PHONY += scripts_basic
1da177e4
LT
522scripts_basic:
523 $(Q)$(MAKE) $(build)=scripts/basic
638adb05 524 $(Q)rm -f .tmp_quiet_recordmcount
1da177e4 525
cd05e6bd
JB
526# To avoid any implicit rule to kick in, define an empty command.
527scripts/basic/%: scripts_basic ;
528
4f193362 529PHONY += outputmakefile
fd5f0cd6
JB
530# outputmakefile generates a Makefile in the output directory, if using a
531# separate output directory. This allows convenient use of make in the
532# output directory.
1da177e4 533outputmakefile:
fd5f0cd6 534ifneq ($(KBUILD_SRC),)
92979997 535 $(Q)ln -fsn $(srctree) source
4fd61277 536 $(Q)$(CONFIG_SHELL) $(srctree)/scripts/mkmakefile $(srctree)
fd5f0cd6 537endif
1da177e4 538
99516742 539ifneq ($(shell $(CC) --version 2>&1 | head -n 1 | grep clang),)
ae6b289a 540ifneq ($(CROSS_COMPILE),)
238bcbc4 541CLANG_FLAGS := --target=$(notdir $(CROSS_COMPILE:%-=%))
5890aa5c 542GCC_TOOLCHAIN_DIR := $(dir $(shell which $(CROSS_COMPILE)elfedit))
238bcbc4 543CLANG_FLAGS += --prefix=$(GCC_TOOLCHAIN_DIR)
ef8c4ed9 544GCC_TOOLCHAIN := $(realpath $(GCC_TOOLCHAIN_DIR)/..)
ae6b289a
CF
545endif
546ifneq ($(GCC_TOOLCHAIN),)
238bcbc4 547CLANG_FLAGS += --gcc-toolchain=$(GCC_TOOLCHAIN)
ae6b289a 548endif
238bcbc4
MY
549CLANG_FLAGS += -no-integrated-as
550KBUILD_CFLAGS += $(CLANG_FLAGS)
551KBUILD_AFLAGS += $(CLANG_FLAGS)
3bd98050 552export CLANG_FLAGS
ae6b289a
CF
553endif
554
d5028ba8 555RETPOLINE_CFLAGS_GCC := -mindirect-branch=thunk-extern -mindirect-branch-register
2e549b2e 556RETPOLINE_VDSO_CFLAGS_GCC := -mindirect-branch=thunk-inline -mindirect-branch-register
d5028ba8 557RETPOLINE_CFLAGS_CLANG := -mretpoline-external-thunk
2e549b2e 558RETPOLINE_VDSO_CFLAGS_CLANG := -mretpoline
d5028ba8 559RETPOLINE_CFLAGS := $(call cc-option,$(RETPOLINE_CFLAGS_GCC),$(call cc-option,$(RETPOLINE_CFLAGS_CLANG)))
2e549b2e 560RETPOLINE_VDSO_CFLAGS := $(call cc-option,$(RETPOLINE_VDSO_CFLAGS_GCC),$(call cc-option,$(RETPOLINE_VDSO_CFLAGS_CLANG)))
d5028ba8 561export RETPOLINE_CFLAGS
2e549b2e 562export RETPOLINE_VDSO_CFLAGS
d5028ba8 563
315bab4e
MY
564# The expansion should be delayed until arch/$(SRCARCH)/Makefile is included.
565# Some architectures define CROSS_COMPILE in arch/$(SRCARCH)/Makefile.
566# CC_VERSION_TEXT is referenced from Kconfig (so it needs export),
567# and from include/config/auto.conf.cmd to detect the compiler upgrade.
568CC_VERSION_TEXT = $(shell $(CC) --version | head -n 1)
569
1da177e4
LT
570ifeq ($(config-targets),1)
571# ===========================================================================
572# *config targets only - make sure prerequisites are updated, and descend
573# in scripts/kconfig to make the *config target
574
575# Read arch specific Makefile to set KBUILD_DEFCONFIG as needed.
576# KBUILD_DEFCONFIG may point out an alternative default configuration
577# used for 'make defconfig'
a436bb7b 578include arch/$(SRCARCH)/Makefile
315bab4e 579export KBUILD_DEFCONFIG KBUILD_KCONFIG CC_VERSION_TEXT
1da177e4 580
31110ebb 581config: scripts_basic outputmakefile FORCE
31110ebb
SR
582 $(Q)$(MAKE) $(build)=scripts/kconfig $@
583
584%config: scripts_basic outputmakefile FORCE
1da177e4
LT
585 $(Q)$(MAKE) $(build)=scripts/kconfig $@
586
587else
588# ===========================================================================
589# Build targets only - this includes vmlinux, arch specific targets, clean
590# targets and others. In general all targets except *config targets.
591
2c1f4f12
MY
592# If building an external module we do not care about the all: rule
593# but instead _all depend on modules
594PHONY += all
595ifeq ($(KBUILD_EXTMOD),)
596_all: all
597else
598_all: modules
599endif
600
601# Decide whether to build built-in, modular, or both.
602# Normally, just do built-in.
603
604KBUILD_MODULES :=
605KBUILD_BUILTIN := 1
606
607# If we have only "make modules", don't compile built-in objects.
608# When we're building modules with modversions, we need to consider
609# the built-in objects during the descend as well, in order to
610# make sure the checksums are up to date before we record them.
611
612ifeq ($(MAKECMDGOALS),modules)
613 KBUILD_BUILTIN := $(if $(CONFIG_MODVERSIONS),1)
614endif
615
616# If we have "make <whatever> modules", compile modules
617# in addition to whatever we do anyway.
618# Just "make" or "make all" shall build modules as well
619
620ifneq ($(filter all _all modules,$(MAKECMDGOALS)),)
621 KBUILD_MODULES := 1
622endif
623
624ifeq ($(MAKECMDGOALS),)
625 KBUILD_MODULES := 1
626endif
627
628export KBUILD_MODULES KBUILD_BUILTIN
629
1da177e4 630ifeq ($(KBUILD_EXTMOD),)
1da177e4
LT
631# Objects we will link into vmlinux / subdirs we need to visit
632init-y := init/
4e9a16c3 633drivers-y := drivers/ sound/ firmware/ ubuntu/
1da177e4
LT
634net-y := net/
635libs-y := lib/
636core-y := usr/
37d9fe47 637virt-y := virt/
1da177e4
LT
638endif # KBUILD_EXTMOD
639
640ifeq ($(dot-config),1)
0a16d2e8 641include include/config/auto.conf
315bab4e
MY
642endif
643
644# The all: target is the default when no target is given on the
645# command line.
646# This allow a user to issue only 'make' to build a kernel including modules
647# Defaults to vmlinux, but the arch makefile usually adds further targets
648all: vmlinux
649
650CFLAGS_GCOV := -fprofile-arcs -ftest-coverage \
651 $(call cc-option,-fno-tree-loop-im) \
652 $(call cc-disable-warning,maybe-uninitialized,)
5aadfdeb 653export CFLAGS_GCOV
315bab4e 654
b1f4ff74
PZ
655# The arch Makefiles can override CC_FLAGS_FTRACE. We may also append it later.
656ifdef CONFIG_FUNCTION_TRACER
657 CC_FLAGS_FTRACE := -pg
658endif
659
315bab4e
MY
660# The arch Makefile can set ARCH_{CPP,A,C}FLAGS to override the default
661# values of the respective KBUILD_* variables
662ARCH_CPPFLAGS :=
663ARCH_AFLAGS :=
664ARCH_CFLAGS :=
665include arch/$(SRCARCH)/Makefile
1da177e4 666
315bab4e 667ifeq ($(dot-config),1)
d7942413 668ifeq ($(may-sync-config),1)
315bab4e
MY
669# Read in dependencies to all Kconfig* files, make sure to run syncconfig if
670# changes are detected. This should be included after arch/$(SRCARCH)/Makefile
671# because some architectures define CROSS_COMPILE there.
68bc2b50 672include include/config/auto.conf.cmd
1da177e4 673
1da177e4 674# To avoid any implicit rule to kick in, define an empty command
40636aee 675$(KCONFIG_CONFIG): ;
1da177e4 676
61277981
UM
677# The actual configuration files used during the build are stored in
678# include/generated/ and include/config/. Update them if .config is newer than
679# include/config/auto.conf (which mirrors .config).
40636aee
MY
680#
681# This exploits the 'multi-target pattern rule' trick.
682# The syncconfig should be executed only once to make all the targets.
683%/auto.conf %/auto.conf.cmd %/tristate.conf: $(KCONFIG_CONFIG)
911a91c3 684 $(Q)$(MAKE) -f $(srctree)/Makefile syncconfig
3041e47e 685else
d7942413
MY
686# External modules and some install targets need include/generated/autoconf.h
687# and include/config/auto.conf but do not care if they are up-to-date.
688# Use auto.conf to trigger the test
9ee4e336
SR
689PHONY += include/config/auto.conf
690
691include/config/auto.conf:
264a2683 692 $(Q)test -e include/generated/autoconf.h -a -e $@ || ( \
5369f550
MM
693 echo >&2; \
694 echo >&2 " ERROR: Kernel configuration is invalid."; \
695 echo >&2 " include/generated/autoconf.h or $@ are missing.";\
696 echo >&2 " Run 'make oldconfig && make prepare' on kernel src to fix it."; \
697 echo >&2 ; \
9ee4e336
SR
698 /bin/false)
699
d7942413 700endif # may-sync-config
9ee4e336 701endif # $(dot-config)
1da177e4 702
a1c48bb1 703KBUILD_CFLAGS += $(call cc-option,-fno-delete-null-pointer-checks,)
ef6000b4 704KBUILD_CFLAGS += $(call cc-disable-warning,frame-address,)
bd664f6b
LT
705KBUILD_CFLAGS += $(call cc-disable-warning, format-truncation)
706KBUILD_CFLAGS += $(call cc-disable-warning, format-overflow)
707KBUILD_CFLAGS += $(call cc-disable-warning, int-in-bool-context)
a1c48bb1 708
1da177e4 709ifdef CONFIG_CC_OPTIMIZE_FOR_SIZE
76b01936 710KBUILD_CFLAGS += -Os $(call cc-disable-warning,maybe-uninitialized,)
1da177e4 711else
815eb71e 712ifdef CONFIG_PROFILE_ALL_BRANCHES
a76bcf55 713KBUILD_CFLAGS += -O2 $(call cc-disable-warning,maybe-uninitialized,)
815eb71e
AB
714else
715KBUILD_CFLAGS += -O2
716endif
1da177e4
LT
717endif
718
a76bcf55
AB
719KBUILD_CFLAGS += $(call cc-ifversion, -lt, 0409, \
720 $(call cc-disable-warning,maybe-uninitialized,))
721
69102311
JK
722# Tell gcc to never replace conditional load with a non-conditional one
723KBUILD_CFLAGS += $(call cc-option,--param=allow-store-data-races=0)
724
d677a4d6 725include scripts/Makefile.kcov
6b90bd4b
ER
726include scripts/Makefile.gcc-plugins
727
1873e870
AK
728ifdef CONFIG_READABLE_ASM
729# Disable optimizations that make assembler listings hard to read.
730# reorder blocks reorders the control in the function
731# ipa clone creates specialized cloned functions
732# partial inlining inlines only parts of functions
733KBUILD_CFLAGS += $(call cc-option,-fno-reorder-blocks,) \
734 $(call cc-option,-fno-ipa-cp-clone,) \
735 $(call cc-option,-fno-partial-inlining)
736endif
737
08f67461 738ifneq ($(CONFIG_FRAME_WARN),0)
35bb5b1e
AK
739KBUILD_CFLAGS += $(call cc-option,-Wframe-larger-than=${CONFIG_FRAME_WARN})
740endif
741
2a61f474 742stackp-flags-$(CONFIG_CC_HAS_STACKPROTECTOR_NONE) := -fno-stack-protector
050e9baa
LT
743stackp-flags-$(CONFIG_STACKPROTECTOR) := -fstack-protector
744stackp-flags-$(CONFIG_STACKPROTECTOR_STRONG) := -fstack-protector-strong
2a61f474
MY
745
746KBUILD_CFLAGS += $(stackp-flags-y)
e06b8b98 747
076f421d 748ifdef CONFIG_CC_IS_CLANG
cfe17c9b 749KBUILD_CPPFLAGS += $(call cc-option,-Qunused-arguments,)
cfe17c9b
MY
750KBUILD_CFLAGS += $(call cc-disable-warning, format-invalid-specifier)
751KBUILD_CFLAGS += $(call cc-disable-warning, gnu)
752KBUILD_CFLAGS += $(call cc-disable-warning, address-of-packed-member)
753# Quiet clang warning: comparison of unsigned expression < 0 is always false
754KBUILD_CFLAGS += $(call cc-disable-warning, tautological-compare)
755# CLANG uses a _MergedGlobals as optimization, but this breaks modpost, as the
756# source of a reference will be _MergedGlobals and not on of the whitelisted names.
757# See modpost pattern 2
758KBUILD_CFLAGS += $(call cc-option, -mno-global-merge,)
759KBUILD_CFLAGS += $(call cc-option, -fcatch-undefined-behavior)
cfe17c9b
MY
760else
761
762# These warnings generated too much noise in a regular build.
763# Use make W=1 to enable them (see scripts/Makefile.extrawarn)
9df3e7a7 764KBUILD_CFLAGS += -Wno-unused-but-set-variable
cfe17c9b
MY
765endif
766
0a5f4176 767KBUILD_CFLAGS += $(call cc-disable-warning, unused-const-variable)
1da177e4 768ifdef CONFIG_FRAME_POINTER
a0f97e06 769KBUILD_CFLAGS += -fno-omit-frame-pointer -fno-optimize-sibling-calls
1da177e4 770else
7e9501fd
RV
771# Some targets (ARM with Thumb2, for example), can't be built with frame
772# pointers. For those, we don't have FUNCTION_TRACER automatically
773# select FRAME_POINTER. However, FUNCTION_TRACER adds -pg, and this is
774# incompatible with -fomit-frame-pointer with current GCC, so we don't use
775# -fomit-frame-pointer with FUNCTION_TRACER.
776ifndef CONFIG_FUNCTION_TRACER
a0f97e06 777KBUILD_CFLAGS += -fomit-frame-pointer
1da177e4 778endif
7e9501fd 779endif
1da177e4 780
2062afb4
LT
781KBUILD_CFLAGS += $(call cc-option, -fno-var-tracking-assignments)
782
1da177e4 783ifdef CONFIG_DEBUG_INFO
866ced95
AK
784ifdef CONFIG_DEBUG_INFO_SPLIT
785KBUILD_CFLAGS += $(call cc-option, -gsplit-dwarf, -g)
786else
a0f97e06 787KBUILD_CFLAGS += -g
866ced95 788endif
2288328c 789KBUILD_AFLAGS += -Wa,-gdwarf-2
1da177e4 790endif
bfaf2dd3
AK
791ifdef CONFIG_DEBUG_INFO_DWARF4
792KBUILD_CFLAGS += $(call cc-option, -gdwarf-4,)
793endif
1da177e4 794
d6f4ceb7 795ifdef CONFIG_DEBUG_INFO_REDUCED
e82c4bb8
AK
796KBUILD_CFLAGS += $(call cc-option, -femit-struct-debug-baseonly) \
797 $(call cc-option,-fno-var-tracking)
d6f4ceb7
AK
798endif
799
606576ce 800ifdef CONFIG_FUNCTION_TRACER
07d04081
VG
801ifdef CONFIG_FTRACE_MCOUNT_RECORD
802 # gcc 5 supports generating the mcount tables directly
803 ifeq ($(call cc-option-yn,-mrecord-mcount),y)
804 CC_FLAGS_FTRACE += -mrecord-mcount
805 export CC_USING_RECORD_MCOUNT := 1
806 endif
2f4df001
VG
807 ifdef CONFIG_HAVE_NOP_MCOUNT
808 ifeq ($(call cc-option-yn, -mnop-mcount),y)
809 CC_FLAGS_FTRACE += -mnop-mcount
810 CC_FLAGS_USING += -DCC_USING_NOP_MCOUNT
811 endif
812 endif
07d04081 813endif
a2546fae 814ifdef CONFIG_HAVE_FENTRY
f28bc3c3
VG
815 ifeq ($(call cc-option-yn, -mfentry),y)
816 CC_FLAGS_FTRACE += -mfentry
817 CC_FLAGS_USING += -DCC_USING_FENTRY
818 endif
a2546fae 819endif
f28bc3c3
VG
820export CC_FLAGS_FTRACE
821KBUILD_CFLAGS += $(CC_FLAGS_FTRACE) $(CC_FLAGS_USING)
822KBUILD_AFLAGS += $(CC_FLAGS_USING)
72441cb1 823ifdef CONFIG_DYNAMIC_FTRACE
cf4db259 824 ifdef CONFIG_HAVE_C_RECORDMCOUNT
72441cb1
SR
825 BUILD_C_RECORDMCOUNT := y
826 export BUILD_C_RECORDMCOUNT
827 endif
828endif
16444a8a
ACM
829endif
830
91341d4b
SR
831# We trigger additional mismatches with less inlining
832ifdef CONFIG_DEBUG_SECTION_MISMATCH
833KBUILD_CFLAGS += $(call cc-option, -fno-inline-functions-called-once)
834endif
835
90ad4052 836ifdef CONFIG_LD_DEAD_CODE_DATA_ELIMINATION
e85d1d65
MY
837KBUILD_CFLAGS_KERNEL += -ffunction-sections -fdata-sections
838LDFLAGS_vmlinux += --gc-sections
90ad4052
MY
839endif
840
e8e69931 841# arch Makefile may override CC so keep this after arch Makefile is included
e08d6de4 842NOSTDINC_FLAGS += -nostdinc -isystem $(shell $(CC) -print-file-name=include)
e8e69931 843
1da177e4 844# warn about C99 declaration after statement
a33e7ae2 845KBUILD_CFLAGS += -Wdeclaration-after-statement
1da177e4 846
0bb95f80
KC
847# Variable Length Arrays (VLAs) should not be used anywhere in the kernel
848KBUILD_CFLAGS += $(call cc-option,-Wvla)
849
070b98bf 850# disable pointer signed / unsigned warnings in gcc 4.0
fb073a4b 851KBUILD_CFLAGS += -Wno-pointer-sign
1da177e4 852
217c3e01
SR
853# disable stringop warnings in gcc 8+
854KBUILD_CFLAGS += $(call cc-disable-warning, stringop-truncation)
855
fe8d0a41 856# disable invalid "can't wrap" optimizations for signed / pointers
a137802e 857KBUILD_CFLAGS += $(call cc-option,-fno-strict-overflow)
d0115552 858
87e0d4f0
DB
859# clang sets -fmerge-all-constants by default as optimization, but this
860# is non-conforming behavior for C and in fact breaks the kernel, so we
861# need to disable it here generally.
862KBUILD_CFLAGS += $(call cc-option,-fno-merge-all-constants)
863
864# for gcc -fno-merge-all-constants disables everything, but it is fine
865# to have actual conforming behavior enabled.
866KBUILD_CFLAGS += $(call cc-option,-fmerge-constants)
867
3ce120b1
LT
868# Make sure -fstack-check isn't enabled (like gentoo apparently did)
869KBUILD_CFLAGS += $(call cc-option,-fno-stack-check,)
870
8f7f5c9f
AK
871# conserve stack if available
872KBUILD_CFLAGS += $(call cc-option,-fconserve-stack)
873
fe7c36c7
JT
874# Prohibit date/time macros, which would make the build non-deterministic
875KBUILD_CFLAGS += $(call cc-option,-Werror=date-time)
876
ea8daa7b
DW
877# enforce correct pointer usage
878KBUILD_CFLAGS += $(call cc-option,-Werror=incompatible-pointer-types)
879
c834f0e8
KC
880# Require designated initializers for all marked structures
881KBUILD_CFLAGS += $(call cc-option,-Werror=designated-init)
882
a73619a8
MY
883# change __FILE__ to the relative path from the srctree
884KBUILD_CFLAGS += $(call cc-option,-fmacro-prefix-map=$(srctree)/=)
885
40df759e
MM
886# use the deterministic mode of AR if available
887KBUILD_ARFLAGS := $(call ar-option,D)
888
a436bb7b
MY
889include scripts/Makefile.kasan
890include scripts/Makefile.extrawarn
c6d30853 891include scripts/Makefile.ubsan
a86fe353 892
61754c18
MM
893# Add any arch overrides and user supplied CPPFLAGS, AFLAGS and CFLAGS as the
894# last assignments
895KBUILD_CPPFLAGS += $(ARCH_CPPFLAGS) $(KCPPFLAGS)
896KBUILD_AFLAGS += $(ARCH_AFLAGS) $(KAFLAGS)
897KBUILD_CFLAGS += $(ARCH_CFLAGS) $(KCFLAGS)
52bcc330 898
18991197 899# Use --build-id when available.
0da4fabd 900LDFLAGS_BUILD_ID := $(call ld-option, --build-id)
6588169d 901KBUILD_LDFLAGS_MODULE += $(LDFLAGS_BUILD_ID)
18991197
RM
902LDFLAGS_vmlinux += $(LDFLAGS_BUILD_ID)
903
5d7d18f5 904ifeq ($(CONFIG_STRIP_ASM_SYMS),y)
d79a2719 905LDFLAGS_vmlinux += $(call ld-option, -X,)
5d7d18f5
DH
906endif
907
14516765
LVO
908# insure the checker run with the right endianness
909CHECKFLAGS += $(if $(CONFIG_CPU_BIG_ENDIAN),-mbig-endian,-mlittle-endian)
910
1f2f01b1
LVO
911# the checker needs the correct machine size
912CHECKFLAGS += $(if $(CONFIG_64BIT),-m64,-m32)
913
1da177e4 914# Default kernel image to build when no specific target is given.
070b98bf 915# KBUILD_IMAGE may be overruled on the command line or
1da177e4
LT
916# set in the environment
917# Also any assignments in arch/$(ARCH)/Makefile take precedence over
918# this default value
919export KBUILD_IMAGE ?= vmlinux
920
921#
922# INSTALL_PATH specifies where to place the updated kernel and system map
923# images. Default is /boot, but you can set it to other values
924export INSTALL_PATH ?= /boot
925
f4d4ffc0
JC
926#
927# INSTALL_DTBS_PATH specifies a prefix for relocations required by build roots.
928# Like INSTALL_MOD_PATH, it isn't defined in the Makefile, but can be passed as
929# an argument if needed. Otherwise it defaults to the kernel install path
930#
931export INSTALL_DTBS_PATH ?= $(INSTALL_PATH)/dtbs/$(KERNELRELEASE)
932
1da177e4
LT
933#
934# INSTALL_MOD_PATH specifies a prefix to MODLIB for module directory
935# relocations required by build roots. This is not defined in the
070b98bf 936# makefile but the argument can be passed to make if needed.
1da177e4
LT
937#
938
df9df036 939MODLIB = $(INSTALL_MOD_PATH)/lib/modules/$(KERNELRELEASE)
1da177e4
LT
940export MODLIB
941
ac031f26 942#
3fbb43df
MY
943# INSTALL_MOD_STRIP, if defined, will cause modules to be
944# stripped after they are installed. If INSTALL_MOD_STRIP is '1', then
945# the default option --strip-debug will be used. Otherwise,
946# INSTALL_MOD_STRIP value will be used as the options to the strip command.
2ea03891 947
ac031f26
TT
948ifdef INSTALL_MOD_STRIP
949ifeq ($(INSTALL_MOD_STRIP),1)
2ea03891 950mod_strip_cmd = $(STRIP) --strip-debug
ac031f26 951else
2ea03891 952mod_strip_cmd = $(STRIP) $(INSTALL_MOD_STRIP)
ac031f26
TT
953endif # INSTALL_MOD_STRIP=1
954else
2ea03891 955mod_strip_cmd = true
ac031f26
TT
956endif # INSTALL_MOD_STRIP
957export mod_strip_cmd
958
beb50df3
BJ
959# CONFIG_MODULE_COMPRESS, if defined, will cause module to be compressed
960# after they are installed in agreement with CONFIG_MODULE_COMPRESS_GZIP
961# or CONFIG_MODULE_COMPRESS_XZ.
962
963mod_compress_cmd = true
964ifdef CONFIG_MODULE_COMPRESS
965 ifdef CONFIG_MODULE_COMPRESS_GZIP
3d1450d5 966 mod_compress_cmd = gzip -n -f
beb50df3
BJ
967 endif # CONFIG_MODULE_COMPRESS_GZIP
968 ifdef CONFIG_MODULE_COMPRESS_XZ
3d1450d5 969 mod_compress_cmd = xz -f
beb50df3
BJ
970 endif # CONFIG_MODULE_COMPRESS_XZ
971endif # CONFIG_MODULE_COMPRESS
972export mod_compress_cmd
973
1bf49dd4 974# Select initial ramdisk compression format, default is gzip(1).
975# This shall be used by the dracut(8) tool while creating an initramfs image.
976#
7ac18156
JB
977INITRD_COMPRESS-y := gzip
978INITRD_COMPRESS-$(CONFIG_RD_BZIP2) := bzip2
979INITRD_COMPRESS-$(CONFIG_RD_LZMA) := lzma
980INITRD_COMPRESS-$(CONFIG_RD_XZ) := xz
981INITRD_COMPRESS-$(CONFIG_RD_LZO) := lzo
982INITRD_COMPRESS-$(CONFIG_RD_LZ4) := lz4
b7000ade
LT
983# do not export INITRD_COMPRESS, since we didn't actually
984# choose a sane default compression above.
985# export INITRD_COMPRESS := $(INITRD_COMPRESS-y)
1da177e4 986
d9d8d7ed 987ifdef CONFIG_MODULE_SIG_ALL
3ee550f1
DW
988$(eval $(call config_filename,MODULE_SIG_KEY))
989
990mod_sign_cmd = scripts/sign-file $(CONFIG_MODULE_SIG_HASH) $(MODULE_SIG_KEY_SRCPREFIX)$(CONFIG_MODULE_SIG_KEY) certs/signing_key.x509
e2a666d5
RR
991else
992mod_sign_cmd = true
993endif
994export mod_sign_cmd
995
3db4b85d
REB
996HOST_LIBELF_LIBS = $(shell pkg-config libelf --libs 2>/dev/null || echo -lelf)
997
9f0c18ae
JP
998ifdef CONFIG_STACK_VALIDATION
999 has_libelf := $(call try-run,\
3db4b85d 1000 echo "int main() {}" | $(HOSTCC) -xc -o /dev/null $(HOST_LIBELF_LIBS) -,1,0)
9f0c18ae
JP
1001 ifeq ($(has_libelf),1)
1002 objtool_target := tools/objtool FORCE
1003 else
9f0c18ae
JP
1004 SKIP_STACK_VALIDATION := 1
1005 export SKIP_STACK_VALIDATION
1006 endif
1007endif
1008
e00d8880 1009PHONY += prepare0
e2a666d5 1010
1da177e4 1011ifeq ($(KBUILD_EXTMOD),)
cfc411e7 1012core-y += kernel/ certs/ mm/ fs/ ipc/ security/ crypto/ block/
1da177e4
LT
1013
1014vmlinux-dirs := $(patsubst %/,%,$(filter %/, $(init-y) $(init-m) \
1015 $(core-y) $(core-m) $(drivers-y) $(drivers-m) \
37d9fe47 1016 $(net-y) $(net-m) $(libs-y) $(libs-m) $(virt-y)))
1da177e4
LT
1017
1018vmlinux-alldirs := $(sort $(vmlinux-dirs) $(patsubst %/,%,$(filter %/, \
37d9fe47 1019 $(init-) $(core-) $(drivers-) $(net-) $(libs-) $(virt-))))
1da177e4 1020
f49821ee
NP
1021init-y := $(patsubst %/, %/built-in.a, $(init-y))
1022core-y := $(patsubst %/, %/built-in.a, $(core-y))
1023drivers-y := $(patsubst %/, %/built-in.a, $(drivers-y))
1024net-y := $(patsubst %/, %/built-in.a, $(net-y))
1da177e4 1025libs-y1 := $(patsubst %/, %/lib.a, $(libs-y))
f49821ee
NP
1026libs-y2 := $(patsubst %/, %/built-in.a, $(filter-out %.a, $(libs-y)))
1027virt-y := $(patsubst %/, %/built-in.a, $(virt-y))
1da177e4 1028
1f2bfbd0 1029# Externally visible symbols (used by link-vmlinux.sh)
95698570 1030export KBUILD_VMLINUX_INIT := $(head-y) $(init-y)
3a166fc2
NP
1031export KBUILD_VMLINUX_MAIN := $(core-y) $(libs-y2) $(drivers-y) $(net-y) $(virt-y)
1032export KBUILD_VMLINUX_LIBS := $(libs-y1)
95698570 1033export KBUILD_LDS := arch/$(SRCARCH)/kernel/vmlinux.lds
1f2bfbd0 1034export LDFLAGS_vmlinux
312a3d09 1035# used by scripts/package/Makefile
37d9fe47 1036export KBUILD_ALLDIRS := $(sort $(filter-out arch/%,$(vmlinux-alldirs)) arch Documentation include samples scripts tools)
9bb48247 1037
3a166fc2 1038vmlinux-deps := $(KBUILD_LDS) $(KBUILD_VMLINUX_INIT) $(KBUILD_VMLINUX_MAIN) $(KBUILD_VMLINUX_LIBS)
1da177e4 1039
3fdc7d3f
MY
1040# Recurse until adjust_autoksyms.sh is satisfied
1041PHONY += autoksyms_recursive
1042autoksyms_recursive: $(vmlinux-deps)
2441e78b 1043ifdef CONFIG_TRIM_UNUSED_KSYMS
ba79d401 1044 $(Q)$(CONFIG_SHELL) $(srctree)/scripts/adjust_autoksyms.sh \
86556392 1045 "$(MAKE) -f $(srctree)/Makefile vmlinux"
2441e78b 1046endif
23121ca2 1047
1f50b80a
MY
1048# For the kernel to actually contain only the needed exported symbols,
1049# we have to build modules as well to determine what those symbols are.
1050# (this can be evaluated only once include/config/auto.conf has been included)
1051ifdef CONFIG_TRIM_UNUSED_KSYMS
1052 KBUILD_MODULES := 1
1053endif
1054
07a422bb
MY
1055autoksyms_h := $(if $(CONFIG_TRIM_UNUSED_KSYMS), include/generated/autoksyms.h)
1056
1057$(autoksyms_h):
1058 $(Q)mkdir -p $(dir $@)
1059 $(Q)touch $@
23121ca2 1060
fbe6e37d
NP
1061ARCH_POSTLINK := $(wildcard $(srctree)/arch/$(SRCARCH)/Makefile.postlink)
1062
1063# Final link of vmlinux with optional arch pass after final link
312a3d09 1064cmd_link-vmlinux = \
d503ac53 1065 $(CONFIG_SHELL) $< $(LD) $(KBUILD_LDFLAGS) $(LDFLAGS_vmlinux) ; \
fbe6e37d 1066 $(if $(ARCH_POSTLINK), $(MAKE) -f $(ARCH_POSTLINK) $@, true)
2441e78b 1067
3fdc7d3f 1068vmlinux: scripts/link-vmlinux.sh autoksyms_recursive $(vmlinux-deps) FORCE
3fdc7d3f
MY
1069ifdef CONFIG_GDB_SCRIPTS
1070 $(Q)ln -fsn $(abspath $(srctree)/scripts/gdb/vmlinux-gdb.py)
1071endif
1f2bfbd0 1072 +$(call if_changed,link-vmlinux)
741f98fe 1073
392885ee
MY
1074targets := vmlinux
1075
3fca1700 1076# Build samples along the rest of the kernel. This needs headers_install.
dd92478a
NP
1077ifdef CONFIG_SAMPLES
1078vmlinux-dirs += samples
3fca1700 1079samples: headers_install
dd92478a
NP
1080endif
1081
38385f8f 1082# The actual objects are generated when descending,
1da177e4 1083# make sure no implicit rule kicks in
1f2bfbd0 1084$(sort $(vmlinux-deps)): $(vmlinux-dirs) ;
1da177e4
LT
1085
1086# Handle descending into subdirectories listed in $(vmlinux-dirs)
1087# Preset locale variables to speed up the build process. Limit locale
1088# tweaks to this spot to avoid wrong language settings when running
1089# make menuconfig etc.
1090# Error messages still appears in the original language
1091
4f193362 1092PHONY += $(vmlinux-dirs)
059bc9fc 1093$(vmlinux-dirs): prepare
f7adc312 1094 $(Q)$(MAKE) $(build)=$@ need-builtin=1
1da177e4 1095
ba97df45 1096filechk_kernel.release = \
0d0e7718 1097 echo "$(KERNELVERSION)$$($(CONFIG_SHELL) $(srctree)/scripts/setlocalversion $(srctree))"
0d0e7718 1098
83a35e36 1099# Store (new) KERNELRELEASE string in include/config/kernel.release
2063945f 1100include/config/kernel.release: $(srctree)/Makefile FORCE
0d0e7718 1101 $(call filechk,kernel.release)
cb58455c 1102
d8821622
MY
1103# Additional helpers built in scripts/
1104# Carefully list dependencies so we do not try to build scripts twice
1105# in parallel
1106PHONY += scripts
60df1aee 1107scripts: scripts_basic scripts_dtc
d8821622 1108 $(Q)$(MAKE) $(build)=$(@)
cb58455c 1109
1da177e4 1110# Things we need to do before we recursively start building the kernel
5bb78269
SR
1111# or the modules are listed in "prepare".
1112# A multi level approach is used. prepareN is processed before prepareN-1.
1113# archprepare is used in arch Makefiles and when processed asm symlink,
1114# version.h and scripts_basic is processed / created.
1da177e4 1115
e00d8880 1116PHONY += prepare archprepare prepare1 prepare2 prepare3
5bb78269 1117
86feeaa8 1118# prepare3 is used to check if we are building in a separate output directory,
1da177e4
LT
1119# and if so do:
1120# 1) Check that make has not been executed in the kernel src $(srctree)
f1d28fb0 1121prepare3: include/config/kernel.release
1da177e4 1122ifneq ($(KBUILD_SRC),)
fd54f502 1123 @$(kecho) ' Using $(srctree) as source for kernel'
c955ccaf 1124 $(Q)if [ -f $(srctree)/.config -o -d $(srctree)/include/config ]; then \
5369f550
MM
1125 echo >&2 " $(srctree) is not clean, please run 'make mrproper'"; \
1126 echo >&2 " in the '$(srctree)' directory.";\
1da177e4
LT
1127 /bin/false; \
1128 fi;
1da177e4
LT
1129endif
1130
c965b105
KC
1131# prepare2 creates a makefile if using a separate output directory.
1132# From this point forward, .config has been reprocessed, so any rules
1133# that need to depend on updated CONFIG_* values can be checked here.
2a61f474 1134prepare2: prepare3 outputmakefile asm-generic
1da177e4 1135
2063945f 1136prepare1: prepare2 $(version_h) $(autoksyms_h) include/generated/utsrelease.h
7bb9d092 1137 $(cmd_crmodverdir)
1da177e4 1138
668c35f6 1139archprepare: archheaders archscripts prepare1 scripts
5bb78269 1140
65bba042 1141prepare0: archprepare
60df1aee 1142 $(Q)$(MAKE) $(build)=scripts/mod
8d36a623 1143 $(Q)$(MAKE) $(build)=.
86feeaa8 1144
1da177e4 1145# All the preparing..
b9ab5ebb
JP
1146prepare: prepare0 prepare-objtool
1147
2c1f4f12 1148# Support for using generic headers in asm-generic
7d0e5c20
MY
1149asm-generic := -f $(srctree)/scripts/Makefile.asm-generic obj
1150
2c1f4f12
MY
1151PHONY += asm-generic uapi-asm-generic
1152asm-generic: uapi-asm-generic
7d0e5c20 1153 $(Q)$(MAKE) $(asm-generic)=arch/$(SRCARCH)/include/generated/asm
2c1f4f12 1154uapi-asm-generic:
7d0e5c20 1155 $(Q)$(MAKE) $(asm-generic)=arch/$(SRCARCH)/include/generated/uapi/asm
2c1f4f12 1156
b9ab5ebb 1157PHONY += prepare-objtool
3b27a0c8 1158prepare-objtool: $(objtool_target)
ef7cfd00
MY
1159ifeq ($(SKIP_STACK_VALIDATION),1)
1160ifdef CONFIG_UNWINDER_ORC
1161 @echo "error: Cannot generate ORC metadata for CONFIG_UNWINDER_ORC=y, please install libelf-dev, libelf-devel or elfutils-libelf-devel" >&2
1162 @false
1163else
1164 @echo "warning: Cannot use CONFIG_STACK_VALIDATION=y, please install libelf-dev, libelf-devel or elfutils-libelf-devel" >&2
1165endif
1166endif
1da177e4 1167
1da177e4
LT
1168# Generate some files
1169# ---------------------------------------------------------------------------
1170
1171# KERNELRELEASE can change from a few different places, meaning version.h
1172# needs to be updated, so this check is forced on all builds
1173
1174uts_len := 64
63104eec
SR
1175define filechk_utsrelease.h
1176 if [ `echo -n "$(KERNELRELEASE)" | wc -c ` -gt $(uts_len) ]; then \
1177 echo '"$(KERNELRELEASE)" exceeds $(uts_len) characters' >&2; \
1178 exit 1; \
1179 fi; \
ad774086 1180 echo \#define UTS_RELEASE \"$(KERNELRELEASE)\"
63104eec 1181endef
1da177e4
LT
1182
1183define filechk_version.h
ad774086 1184 echo \#define LINUX_VERSION_CODE $(shell \
450c6076 1185 expr $(VERSION) \* 65536 + 0$(PATCHLEVEL) \* 256 + 0$(SUBLEVEL)); \
ad774086 1186 echo '#define KERNEL_VERSION(a,b,c) (((a) << 16) + ((b) << 8) + (c))'
1da177e4
LT
1187endef
1188
43fee2b2 1189$(version_h): FORCE
1da177e4 1190 $(call filechk,version.h)
223c24a7 1191 $(Q)rm -f $(old_version_h)
1da177e4 1192
273b281f 1193include/generated/utsrelease.h: include/config/kernel.release FORCE
63104eec
SR
1194 $(call filechk,utsrelease.h)
1195
179efcb4
VN
1196PHONY += headerdep
1197headerdep:
9663d989
PF
1198 $(Q)find $(srctree)/include/ -name '*.h' | xargs --max-args 1 \
1199 $(srctree)/scripts/headerdep.pl -I$(srctree)/include
179efcb4 1200
8d730cfb
DW
1201# ---------------------------------------------------------------------------
1202# Kernel headers
8d730cfb 1203
e6883b18
SR
1204#Default location for installed headers
1205export INSTALL_HDR_PATH = $(objtree)/usr
6d716275 1206
9d022c54
MY
1207# If we do an all arch process set dst to include/arch-$(SRCARCH)
1208hdr-dst = $(if $(KBUILD_HEADERS), dst=include/arch-$(SRCARCH), dst=include)
e6883b18 1209
f7de64b7 1210PHONY += archheaders archscripts
6520fe55 1211
e6883b18 1212PHONY += __headers
a9d9a400 1213__headers: $(version_h) scripts_basic uapi-asm-generic archheaders archscripts
e1b702cf 1214 $(Q)$(MAKE) $(build)=scripts build_unifdef
e6883b18
SR
1215
1216PHONY += headers_install_all
2fb9b1bd
SR
1217headers_install_all:
1218 $(Q)$(CONFIG_SHELL) $(srctree)/scripts/headers.sh install
6d716275 1219
8d730cfb 1220PHONY += headers_install
e6883b18 1221headers_install: __headers
9d022c54 1222 $(if $(wildcard $(srctree)/arch/$(SRCARCH)/include/uapi/asm/Kbuild),, \
10b63956 1223 $(error Headers not exportable for the $(SRCARCH) architecture))
a8ff49a1 1224 $(Q)$(MAKE) $(hdr-inst)=include/uapi dst=include
9d022c54 1225 $(Q)$(MAKE) $(hdr-inst)=arch/$(SRCARCH)/include/uapi $(hdr-dst)
8e2f6573 1226 $(Q)$(MAKE) $(hdr-inst)=ubuntu/include dst=include oldheaders=
8d730cfb 1227
1f85712e
MF
1228PHONY += headers_check_all
1229headers_check_all: headers_install_all
2fb9b1bd 1230 $(Q)$(CONFIG_SHELL) $(srctree)/scripts/headers.sh check
1f85712e 1231
68475359
DW
1232PHONY += headers_check
1233headers_check: headers_install
a8ff49a1 1234 $(Q)$(MAKE) $(hdr-inst)=include/uapi dst=include HDRCHECK=1
9d022c54 1235 $(Q)$(MAKE) $(hdr-inst)=arch/$(SRCARCH)/include/uapi $(hdr-dst) HDRCHECK=1
8e2f6573 1236 $(Q)$(MAKE) $(hdr-inst)=ubuntu/include dst=include oldheaders= HDRCHECK=1
68475359 1237
257edce6
MY
1238ifdef CONFIG_HEADERS_CHECK
1239all: headers_check
1240endif
1241
5a5da78b
SK
1242# ---------------------------------------------------------------------------
1243# Kernel selftest
1244
1245PHONY += kselftest
1246kselftest:
2bc84526 1247 $(Q)$(MAKE) -C $(srctree)/tools/testing/selftests run_tests
5a5da78b 1248
801d2e9f 1249PHONY += kselftest-clean
dcb825a9 1250kselftest-clean:
2bc84526 1251 $(Q)$(MAKE) -C $(srctree)/tools/testing/selftests clean
dcb825a9 1252
3d6dee7a
BJZ
1253PHONY += kselftest-merge
1254kselftest-merge:
1255 $(if $(wildcard $(objtree)/.config),, $(error No .config exists, config your kernel first!))
1256 $(Q)$(CONFIG_SHELL) $(srctree)/scripts/kconfig/merge_config.sh \
1257 -m $(objtree)/.config \
1258 $(srctree)/tools/testing/selftests/*/config
1259 +$(Q)$(MAKE) -f $(srctree)/Makefile olddefconfig
1260
37c8a5fa
RH
1261# ---------------------------------------------------------------------------
1262# Devicetree files
1263
1264ifneq ($(wildcard $(srctree)/arch/$(SRCARCH)/boot/dts/),)
1265dtstree := arch/$(SRCARCH)/boot/dts
1266endif
1267
1268ifneq ($(dtstree),)
1269
1270%.dtb: prepare3 scripts_dtc
1271 $(Q)$(MAKE) $(build)=$(dtstree) $(dtstree)/$@
1272
4f0e3a57
RH
1273PHONY += dtbs dtbs_install dt_binding_check
1274dtbs dtbs_check: prepare3 scripts_dtc
37c8a5fa
RH
1275 $(Q)$(MAKE) $(build)=$(dtstree)
1276
4f0e3a57
RH
1277dtbs_check: export CHECK_DTBS=1
1278dtbs_check: dt_binding_check
1279
37c8a5fa
RH
1280dtbs_install:
1281 $(Q)$(MAKE) $(dtbinst)=$(dtstree)
1282
1283ifdef CONFIG_OF_EARLY_FLATTREE
1284all: dtbs
1285endif
1286
1287endif
1288
1289PHONY += scripts_dtc
1290scripts_dtc: scripts_basic
1291 $(Q)$(MAKE) $(build)=scripts/dtc
1292
4f0e3a57
RH
1293dt_binding_check: scripts_dtc
1294 $(Q)$(MAKE) $(build)=Documentation/devicetree/bindings
1295
1da177e4
LT
1296# ---------------------------------------------------------------------------
1297# Modules
1298
1299ifdef CONFIG_MODULES
1300
070b98bf 1301# By default, build modules as well
1da177e4 1302
73d1393e 1303all: modules
1da177e4 1304
3fbb43df 1305# Build modules
551559e1 1306#
3fbb43df
MY
1307# A module can be listed more than once in obj-m resulting in
1308# duplicate lines in modules.order files. Those are removed
1309# using awk while concatenating to the final file.
1da177e4 1310
4f193362 1311PHONY += modules
2da30e70 1312modules: $(vmlinux-dirs) $(if $(KBUILD_BUILTIN),vmlinux) modules.builtin
551559e1 1313 $(Q)$(AWK) '!x[$$0]++' $(vmlinux-dirs:%=$(objtree)/%/modules.order) > $(objtree)/modules.order
fd54f502 1314 @$(kecho) ' Building modules, stage 2.';
b805aa0e 1315 $(Q)$(MAKE) -f $(srctree)/scripts/Makefile.modpost
1da177e4 1316
a6c36632
MM
1317modules.builtin: $(vmlinux-dirs:%=%/modules.builtin)
1318 $(Q)$(AWK) '!x[$$0]++' $^ > $(objtree)/modules.builtin
1319
2063945f 1320%/modules.builtin: include/config/auto.conf include/config/tristate.conf
a6c36632
MM
1321 $(Q)$(MAKE) $(modbuiltin)=$*
1322
1da177e4
LT
1323
1324# Target to prepare building external modules
4f193362 1325PHONY += modules_prepare
059bc9fc 1326modules_prepare: prepare
1da177e4
LT
1327
1328# Target to install modules
4f193362 1329PHONY += modules_install
1da177e4
LT
1330modules_install: _modinst_ _modinst_post
1331
4f193362 1332PHONY += _modinst_
2da30e70 1333_modinst_:
1da177e4
LT
1334 @rm -rf $(MODLIB)/kernel
1335 @rm -f $(MODLIB)/source
1336 @mkdir -p $(MODLIB)/kernel
8e9b4667 1337 @ln -s $(abspath $(srctree)) $(MODLIB)/source
1da177e4
LT
1338 @if [ ! $(objtree) -ef $(MODLIB)/build ]; then \
1339 rm -f $(MODLIB)/build ; \
7e1c0477 1340 ln -s $(CURDIR) $(MODLIB)/build ; \
1da177e4 1341 fi
551559e1 1342 @cp -f $(objtree)/modules.order $(MODLIB)/
bc081dd6 1343 @cp -f $(objtree)/modules.builtin $(MODLIB)/
b805aa0e 1344 $(Q)$(MAKE) -f $(srctree)/scripts/Makefile.modinst
1da177e4 1345
50a8ec31 1346# This depmod is only for convenience to give the initial
1da177e4
LT
1347# boot a modules.dep even before / is mounted read-write. However the
1348# boot script depmod is the master version.
4f193362 1349PHONY += _modinst_post
6d128e1e 1350_modinst_post: _modinst_
50a8ec31 1351 $(call cmd,depmod)
1da177e4 1352
d890f510
JB
1353ifeq ($(CONFIG_MODULE_SIG), y)
1354PHONY += modules_sign
1355modules_sign:
1356 $(Q)$(MAKE) -f $(srctree)/scripts/Makefile.modsign
1357endif
1358
1da177e4
LT
1359else # CONFIG_MODULES
1360
1361# Modules not configured
1362# ---------------------------------------------------------------------------
1363
612e47ce
MY
1364PHONY += modules modules_install
1365modules modules_install:
5369f550
MM
1366 @echo >&2
1367 @echo >&2 "The present kernel configuration has modules disabled."
1368 @echo >&2 "Type 'make config' and enable loadable module support."
1369 @echo >&2 "Then build a kernel with module support enabled."
1370 @echo >&2
1da177e4
LT
1371 @exit 1
1372
1373endif # CONFIG_MODULES
1374
1da177e4
LT
1375###
1376# Cleaning is done on three levels.
1377# make clean Delete most generated files
1378# Leave enough to build external modules
1379# make mrproper Delete the current configuration, and all generated files
1380# make distclean Remove editor backup files, patch leftover files and the like
1381
1382# Directories & files removed with 'make clean'
fbfa9be9 1383CLEAN_DIRS += $(MODVERDIR) include/ksym
1da177e4
LT
1384
1385# Directories & files removed with 'make mrproper'
d8ecc5cd 1386MRPROPER_DIRS += include/config usr/include include/generated \
3fbb43df 1387 arch/*/include/generated .tmp_objdiff
278ae604 1388MRPROPER_FILES += .config .config.old .version \
d5b71936 1389 Module.symvers tags TAGS cscope* GPATH GTAGS GRTAGS GSYMS \
fb117949
DW
1390 signing_key.pem signing_key.priv signing_key.x509 \
1391 x509.genkey extra_certificates signing_key.x509.keyid \
3ee7b3fa 1392 signing_key.x509.signer vmlinux-gdb.py
1da177e4
LT
1393
1394# clean - Delete most, but leave enough to build external modules
1395#
1396clean: rm-dirs := $(CLEAN_DIRS)
1397clean: rm-files := $(CLEAN_FILES)
fb68d4be 1398clean-dirs := $(addprefix _clean_, . $(vmlinux-alldirs) Documentation samples)
1da177e4 1399
bd1ee804 1400PHONY += $(clean-dirs) clean archclean vmlinuxclean
1da177e4
LT
1401$(clean-dirs):
1402 $(Q)$(MAKE) $(clean)=$(patsubst _clean_%,%,$@)
1403
bd1ee804
PM
1404vmlinuxclean:
1405 $(Q)$(CONFIG_SHELL) $(srctree)/scripts/link-vmlinux.sh clean
fbe6e37d 1406 $(Q)$(if $(ARCH_POSTLINK), $(MAKE) -f $(ARCH_POSTLINK) clean)
bd1ee804
PM
1407
1408clean: archclean vmlinuxclean
1da177e4
LT
1409
1410# mrproper - Delete all generated files, including .config
1411#
1412mrproper: rm-dirs := $(wildcard $(MRPROPER_DIRS))
1413mrproper: rm-files := $(wildcard $(MRPROPER_FILES))
cb43fb57 1414mrproper-dirs := $(addprefix _mrproper_,scripts)
1da177e4 1415
b421b8a6 1416PHONY += $(mrproper-dirs) mrproper
1da177e4
LT
1417$(mrproper-dirs):
1418 $(Q)$(MAKE) $(clean)=$(patsubst _mrproper_%,%,$@)
1419
b421b8a6 1420mrproper: clean $(mrproper-dirs)
1da177e4
LT
1421 $(call cmd,rmdirs)
1422 $(call cmd,rmfiles)
1423
1424# distclean
1425#
4f193362 1426PHONY += distclean
1da177e4
LT
1427
1428distclean: mrproper
1429 @find $(srctree) $(RCS_FIND_IGNORE) \
070b98bf 1430 \( -name '*.orig' -o -name '*.rej' -o -name '*~' \
f78271df
MY
1431 -o -name '*.bak' -o -name '#*#' -o -name '*%' \
1432 -o -name 'core' \) \
1da177e4
LT
1433 -type f -print | xargs rm -f
1434
1435
1436# Packaging of the kernel to various formats
1437# ---------------------------------------------------------------------------
c79624c1 1438package-dir := scripts/package
1da177e4 1439
bafb6747
ACM
1440%src-pkg: FORCE
1441 $(Q)$(MAKE) $(build)=$(package-dir) $@
031ecc6d 1442%pkg: include/config/kernel.release FORCE
6c2133e1 1443 $(Q)$(MAKE) $(build)=$(package-dir) $@
1da177e4
LT
1444
1445
1446# Brief documentation of the typical targets used
1447# ---------------------------------------------------------------------------
1448
5dffbe81 1449boards := $(wildcard $(srctree)/arch/$(SRCARCH)/configs/*_defconfig)
a1e7b7bb 1450boards := $(sort $(notdir $(boards)))
5dffbe81
SB
1451board-dirs := $(dir $(wildcard $(srctree)/arch/$(SRCARCH)/configs/*/*_defconfig))
1452board-dirs := $(sort $(notdir $(board-dirs:/=)))
1da177e4 1453
fe69b420 1454PHONY += help
1da177e4
LT
1455help:
1456 @echo 'Cleaning targets:'
5ea084ef 1457 @echo ' clean - Remove most generated files but keep the config and'
5cc8d246 1458 @echo ' enough build support to build external modules'
5ea084ef 1459 @echo ' mrproper - Remove all generated files + config + various backup files'
5cc8d246 1460 @echo ' distclean - mrproper + remove editor backup and patch files'
1da177e4
LT
1461 @echo ''
1462 @echo 'Configuration targets:'
1463 @$(MAKE) -f $(srctree)/scripts/kconfig/Makefile help
1464 @echo ''
1465 @echo 'Other generic targets:'
1466 @echo ' all - Build all targets marked with [*]'
1467 @echo '* vmlinux - Build the bare kernel'
1468 @echo '* modules - Build all modules'
9cc5d74c 1469 @echo ' modules_install - Install all modules to INSTALL_MOD_PATH (default: /)'
1da177e4 1470 @echo ' dir/ - Build all files in dir and below'
40ab87a4 1471 @echo ' dir/file.[ois] - Build specified target only'
433db3e2
VT
1472 @echo ' dir/file.ll - Build the LLVM assembly file'
1473 @echo ' (requires compiler support for LLVM assembly generation)'
62718979
JP
1474 @echo ' dir/file.lst - Build specified mixed source/assembly target only'
1475 @echo ' (requires a recent binutils and recent build (System.map))'
155ad605 1476 @echo ' dir/file.ko - Build module including final link'
c4d5ee67 1477 @echo ' modules_prepare - Set up for building external modules'
1da177e4
LT
1478 @echo ' tags/TAGS - Generate tags file for editors'
1479 @echo ' cscope - Generate cscope index'
f4ed1009 1480 @echo ' gtags - Generate GNU GLOBAL index'
3f1d9a6c
MM
1481 @echo ' kernelrelease - Output the release version string (use with make -s)'
1482 @echo ' kernelversion - Output the version stored in Makefile (use with make -s)'
1483 @echo ' image_name - Output the image name (use with make -s)'
2fb9b1bd 1484 @echo ' headers_install - Install sanitised kernel headers to INSTALL_HDR_PATH'; \
59df3230 1485 echo ' (default: $(INSTALL_HDR_PATH))'; \
2fb9b1bd 1486 echo ''
31b8cc80 1487 @echo 'Static analysers:'
1da177e4
LT
1488 @echo ' checkstack - Generate a list of stack hogs'
1489 @echo ' namespacecheck - Name space analysis on compiled kernel'
aa025e7d 1490 @echo ' versioncheck - Sanity check on version.h usage'
ec2d987f 1491 @echo ' includecheck - Check for duplicate included header files'
295ac051 1492 @echo ' export_report - List the usages of all exported symbols'
179efcb4 1493 @echo ' headers_check - Sanity check on exported headers'
74425eee 1494 @echo ' headerdep - Detect inclusion cycles in headers'
7f855fc8 1495 @echo ' coccicheck - Check with Coccinelle'
74425eee 1496 @echo ''
31b8cc80 1497 @echo 'Kernel selftest:'
5a5da78b
SK
1498 @echo ' kselftest - Build and run kernel selftest (run as root)'
1499 @echo ' Build, install, and boot kernel before'
1500 @echo ' running kselftest on it'
dcb825a9 1501 @echo ' kselftest-clean - Remove all generated kselftest files'
bbfe63b6 1502 @echo ' kselftest-merge - Merge all the config dependencies of kselftest to existing'
3d6dee7a 1503 @echo ' .config.'
5a5da78b 1504 @echo ''
37c8a5fa
RH
1505 @$(if $(dtstree), \
1506 echo 'Devicetree:'; \
1507 echo '* dtbs - Build device tree blobs for enabled boards'; \
1508 echo ' dtbs_install - Install dtbs to $(INSTALL_DTBS_PATH)'; \
1509 echo '')
1510
31b8cc80
RD
1511 @echo 'Userspace tools targets:'
1512 @echo ' use "make tools/help"'
1513 @echo ' or "cd tools; make help"'
1514 @echo ''
1da177e4 1515 @echo 'Kernel packaging:'
6c2133e1 1516 @$(MAKE) $(build)=$(package-dir) help
1da177e4
LT
1517 @echo ''
1518 @echo 'Documentation targets:'
cb43fb57 1519 @$(MAKE) -f $(srctree)/Documentation/Makefile dochelp
1da177e4 1520 @echo ''
01dee188 1521 @echo 'Architecture specific targets ($(SRCARCH)):'
1da177e4 1522 @$(if $(archhelp),$(archhelp),\
01dee188 1523 echo ' No architecture specific help defined for $(SRCARCH)')
1da177e4
LT
1524 @echo ''
1525 @$(if $(boards), \
1526 $(foreach b, $(boards), \
1527 printf " %-24s - Build for %s\\n" $(b) $(subst _defconfig,,$(b));) \
1528 echo '')
5dffbe81
SB
1529 @$(if $(board-dirs), \
1530 $(foreach b, $(board-dirs), \
1531 printf " %-16s - Show %s-specific targets\\n" help-$(b) $(b);) \
1532 printf " %-16s - Show all of the above\\n" help-boards; \
1533 echo '')
1da177e4
LT
1534
1535 @echo ' make V=0|1 [targets] 0 => quiet build (default), 1 => verbose build'
45d506bd 1536 @echo ' make V=2 [targets] 2 => give reason for rebuild of target'
1da177e4 1537 @echo ' make O=dir [targets] Locate all output files in "dir", including .config'
9ba26a72 1538 @echo ' make C=1 [targets] Check re-compiled c source with $$CHECK (sparse by default)'
701842e3 1539 @echo ' make C=2 [targets] Force check of all c source with $$CHECK'
af07ce3e 1540 @echo ' make RECORDMCOUNT_WARN=1 [targets] Warn about ignored mcount sections'
28bc20dc
SR
1541 @echo ' make W=n [targets] Enable extra gcc checks, n=1,2,3 where'
1542 @echo ' 1: warnings which may be relevant and do not occur too often'
1543 @echo ' 2: warnings which occur quite often but may still be relevant'
1544 @echo ' 3: more obscure warnings, can most likely be ignored'
a6de553d 1545 @echo ' Multiple levels can be combined with W=12 or W=123'
1da177e4
LT
1546 @echo ''
1547 @echo 'Execute "make" or "make all" to build all targets marked with [*] '
1548 @echo 'For further info see the ./README file'
1549
1550
5dffbe81
SB
1551help-board-dirs := $(addprefix help-,$(board-dirs))
1552
1553help-boards: $(help-board-dirs)
1554
fbae4d58 1555boards-per-dir = $(sort $(notdir $(wildcard $(srctree)/arch/$(SRCARCH)/configs/$*/*_defconfig)))
5dffbe81
SB
1556
1557$(help-board-dirs): help-%:
1558 @echo 'Architecture specific targets ($(SRCARCH) $*):'
1559 @$(if $(boards-per-dir), \
1560 $(foreach b, $(boards-per-dir), \
1561 printf " %-24s - Build for %s\\n" $*/$(b) $(subst _defconfig,,$(b));) \
1562 echo '')
1563
1564
1da177e4
LT
1565# Documentation targets
1566# ---------------------------------------------------------------------------
e8939222
JN
1567DOC_TARGETS := xmldocs latexdocs pdfdocs htmldocs epubdocs cleandocs \
1568 linkcheckdocs dochelp refcheckdocs
22cba31b
JN
1569PHONY += $(DOC_TARGETS)
1570$(DOC_TARGETS): scripts_basic FORCE
cb43fb57 1571 $(Q)$(MAKE) $(build)=Documentation $@
1da177e4
LT
1572
1573else # KBUILD_EXTMOD
1574
1575###
1576# External module support.
1577# When building external modules the kernel used as basis is considered
1578# read-only, and no consistency checks are made and the make
1579# system is not used on the basis kernel. If updates are required
1580# in the basis kernel ordinary make commands (without M=...) must
1581# be used.
1582#
1583# The following are the only valid targets when building external
1584# modules.
1585# make M=dir clean Delete all automatically generated files
1586# make M=dir modules Make all modules in specified dir
1587# make M=dir Same as 'make M=dir modules'
1588# make M=dir modules_install
070b98bf 1589# Install the modules built in the module directory
1da177e4
LT
1590# Assumes install directory is already created
1591
1592# We are always building modules
1593KBUILD_MODULES := 1
1da177e4 1594
4f193362 1595PHONY += $(objtree)/Module.symvers
1da177e4
LT
1596$(objtree)/Module.symvers:
1597 @test -e $(objtree)/Module.symvers || ( \
1598 echo; \
1599 echo " WARNING: Symbol version dump $(objtree)/Module.symvers"; \
1600 echo " is missing; modules will have no dependencies and modversions."; \
1601 echo )
1602
1603module-dirs := $(addprefix _module_,$(KBUILD_EXTMOD))
4f193362 1604PHONY += $(module-dirs) modules
e07db28e 1605$(module-dirs): prepare $(objtree)/Module.symvers
1da177e4
LT
1606 $(Q)$(MAKE) $(build)=$(patsubst _module_%,%,$@)
1607
1608modules: $(module-dirs)
fd54f502 1609 @$(kecho) ' Building modules, stage 2.';
b805aa0e 1610 $(Q)$(MAKE) -f $(srctree)/scripts/Makefile.modpost
1da177e4 1611
4f193362 1612PHONY += modules_install
a67dc21a 1613modules_install: _emodinst_ _emodinst_post
e6304663 1614
4f193362
PS
1615install-dir := $(if $(INSTALL_MOD_DIR),$(INSTALL_MOD_DIR),extra)
1616PHONY += _emodinst_
a67dc21a 1617_emodinst_:
a67dc21a 1618 $(Q)mkdir -p $(MODLIB)/$(install-dir)
b805aa0e 1619 $(Q)$(MAKE) -f $(srctree)/scripts/Makefile.modinst
1da177e4 1620
4f193362 1621PHONY += _emodinst_post
a67dc21a
SR
1622_emodinst_post: _emodinst_
1623 $(call cmd,depmod)
1624
1da177e4
LT
1625clean-dirs := $(addprefix _clean_,$(KBUILD_EXTMOD))
1626
4f193362 1627PHONY += $(clean-dirs) clean
1da177e4
LT
1628$(clean-dirs):
1629 $(Q)$(MAKE) $(clean)=$(patsubst _clean_%,%,$@)
1630
1631clean: rm-dirs := $(MODVERDIR)
88d7be03 1632clean: rm-files := $(KBUILD_EXTMOD)/Module.symvers
1da177e4 1633
fe69b420 1634PHONY += help
1da177e4
LT
1635help:
1636 @echo ' Building external modules.'
1637 @echo ' Syntax: make -C path/to/kernel/src M=$$PWD target'
1638 @echo ''
1639 @echo ' modules - default target, build the module(s)'
1640 @echo ' modules_install - install the module'
1641 @echo ' clean - remove generated files in module directory only'
1642 @echo ''
06300b21 1643
059bc9fc 1644PHONY += prepare
e07db28e
MY
1645prepare:
1646 $(cmd_crmodverdir)
1da177e4
LT
1647endif # KBUILD_EXTMOD
1648
88d7be03
MM
1649clean: $(clean-dirs)
1650 $(call cmd,rmdirs)
1651 $(call cmd,rmfiles)
43f67c98 1652 @find $(if $(KBUILD_EXTMOD), $(KBUILD_EXTMOD), .) $(RCS_FIND_IGNORE) \
ef46d9b3 1653 \( -name '*.[aios]' -o -name '*.ko' -o -name '.*.cmd' \
4f0e3a57
RH
1654 -o -name '*.ko.*' \
1655 -o -name '*.dtb' -o -name '*.dtb.S' -o -name '*.dt.yaml' \
ef46d9b3 1656 -o -name '*.dwo' -o -name '*.lst' \
d523b255 1657 -o -name '*.su' \
88d7be03 1658 -o -name '.*.d' -o -name '.*.tmp' -o -name '*.mod.c' \
9a8dfb39 1659 -o -name '*.lex.c' -o -name '*.tab.[ch]' \
4fa8bc94 1660 -o -name '*.asn1.[ch]' \
88d7be03
MM
1661 -o -name '*.symtypes' -o -name 'modules.order' \
1662 -o -name modules.builtin -o -name '.tmp_*.o.*' \
6b90bd4b 1663 -o -name '*.c.[012]*.*' \
433db3e2 1664 -o -name '*.ll' \
88d7be03
MM
1665 -o -name '*.gcno' \) -type f -print | xargs rm -f
1666
1da177e4
LT
1667# Generate tags for editors
1668# ---------------------------------------------------------------------------
a680eedc
SR
1669quiet_cmd_tags = GEN $@
1670 cmd_tags = $(CONFIG_SHELL) $(srctree)/scripts/tags.sh $@
1da177e4 1671
f4ed1009 1672tags TAGS cscope gtags: FORCE
1da177e4
LT
1673 $(call cmd,tags)
1674
1da177e4
LT
1675# Scripts to check various things for consistency
1676# ---------------------------------------------------------------------------
1677
279f3dd3
PF
1678PHONY += includecheck versioncheck coccicheck namespacecheck export_report
1679
1da177e4 1680includecheck:
436f876c 1681 find $(srctree)/* $(RCS_FIND_IGNORE) \
1da177e4 1682 -name '*.[hcS]' -type f -print | sort \
80007434 1683 | xargs $(PERL) -w $(srctree)/scripts/checkincludes.pl
1da177e4
LT
1684
1685versioncheck:
2ee2d292 1686 find $(srctree)/* $(RCS_FIND_IGNORE) \
1da177e4 1687 -name '*.[hcS]' -type f -print | sort \
80007434 1688 | xargs $(PERL) -w $(srctree)/scripts/checkversion.pl
1da177e4 1689
74425eee
NP
1690coccicheck:
1691 $(Q)$(CONFIG_SHELL) $(srctree)/scripts/$@
1692
1da177e4
LT
1693namespacecheck:
1694 $(PERL) $(srctree)/scripts/namespace.pl
1695
295ac051
AB
1696export_report:
1697 $(PERL) $(srctree)/scripts/export_report.pl
1698
c398ff00 1699PHONY += checkstack kernelrelease kernelversion image_name
e3ccf6e3 1700
011e3a9a
JD
1701# UML needs a little special treatment here. It wants to use the host
1702# toolchain, so needs $(SUBARCH) passed to checkstack.pl. Everyone
1703# else wants $(ARCH), including people doing cross-builds, which means
1704# that $(SUBARCH) doesn't work here.
1705ifeq ($(ARCH), um)
1706CHECKSTACK_ARCH := $(SUBARCH)
1707else
1708CHECKSTACK_ARCH := $(ARCH)
1709endif
1da177e4
LT
1710checkstack:
1711 $(OBJDUMP) -d vmlinux $$(find . -name '*.ko') | \
011e3a9a 1712 $(PERL) $(src)/scripts/checkstack.pl $(CHECKSTACK_ARCH)
1da177e4 1713
7b8ea53d
AW
1714kernelrelease:
1715 @echo "$(KERNELVERSION)$$($(CONFIG_SHELL) $(srctree)/scripts/setlocalversion $(srctree))"
01ab1788 1716
cb58455c 1717kernelversion:
2244cbd8 1718 @echo $(KERNELVERSION)
1da177e4 1719
c398ff00
MM
1720image_name:
1721 @echo $(KBUILD_IMAGE)
1722
ea01fa9f
BP
1723# Clear a bunch of variables before executing the submake
1724tools/: FORCE
bf35182f 1725 $(Q)mkdir -p $(objtree)/tools
8e9b4667 1726 $(Q)$(MAKE) LDFLAGS= MAKEFLAGS="$(tools_silent) $(filter --j% -j,$(MAKEFLAGS))" O=$(abspath $(objtree)) subdir=tools -C $(src)/tools/
ea01fa9f
BP
1727
1728tools/%: FORCE
bf35182f 1729 $(Q)mkdir -p $(objtree)/tools
8e9b4667 1730 $(Q)$(MAKE) LDFLAGS= MAKEFLAGS="$(tools_silent) $(filter --j% -j,$(MAKEFLAGS))" O=$(abspath $(objtree)) subdir=tools -C $(src)/tools/ $*
ea01fa9f 1731
06300b21
SR
1732# Single targets
1733# ---------------------------------------------------------------------------
bc2546a6 1734# Single targets are compatible with:
e1b8513d 1735# - build with mixed source and output
bc2546a6
SR
1736# - build with separate output dir 'make O=...'
1737# - external modules
1738#
1739# target-dir => where to store outputfile
1740# build-dir => directory in kernel source tree to use
1741
1742ifeq ($(KBUILD_EXTMOD),)
aa360879 1743 build-dir = $(patsubst %/,%,$(dir $@))
bc2546a6
SR
1744 target-dir = $(dir $@)
1745else
1746 zap-slash=$(filter-out .,$(patsubst %/,%,$(dir $@)))
1747 build-dir = $(KBUILD_EXTMOD)$(if $(zap-slash),/$(zap-slash))
1748 target-dir = $(if $(KBUILD_EXTMOD),$(dir $<),$(dir $@))
1749endif
1750
059bc9fc 1751%.s: %.c prepare FORCE
bc2546a6 1752 $(Q)$(MAKE) $(build)=$(build-dir) $(target-dir)$(notdir $@)
059bc9fc 1753%.i: %.c prepare FORCE
bc2546a6 1754 $(Q)$(MAKE) $(build)=$(build-dir) $(target-dir)$(notdir $@)
059bc9fc 1755%.o: %.c prepare FORCE
bc2546a6 1756 $(Q)$(MAKE) $(build)=$(build-dir) $(target-dir)$(notdir $@)
059bc9fc 1757%.lst: %.c prepare FORCE
bc2546a6 1758 $(Q)$(MAKE) $(build)=$(build-dir) $(target-dir)$(notdir $@)
059bc9fc 1759%.s: %.S prepare FORCE
bc2546a6 1760 $(Q)$(MAKE) $(build)=$(build-dir) $(target-dir)$(notdir $@)
059bc9fc 1761%.o: %.S prepare FORCE
bc2546a6 1762 $(Q)$(MAKE) $(build)=$(build-dir) $(target-dir)$(notdir $@)
059bc9fc 1763%.symtypes: %.c prepare FORCE
15fde675 1764 $(Q)$(MAKE) $(build)=$(build-dir) $(target-dir)$(notdir $@)
059bc9fc 1765%.ll: %.c prepare FORCE
433db3e2 1766 $(Q)$(MAKE) $(build)=$(build-dir) $(target-dir)$(notdir $@)
06300b21 1767
bc2546a6 1768# Modules
059bc9fc 1769/: prepare FORCE
31110ebb
SR
1770 $(Q)$(MAKE) KBUILD_MODULES=$(if $(CONFIG_MODULES),1) \
1771 $(build)=$(build-dir)
8e2faea8 1772# Make sure the latest headers are built for Documentation
ddea05fa 1773Documentation/ samples/: headers_install
059bc9fc 1774%/: prepare FORCE
06300b21 1775 $(Q)$(MAKE) KBUILD_MODULES=$(if $(CONFIG_MODULES),1) \
bc2546a6 1776 $(build)=$(build-dir)
059bc9fc 1777%.ko: prepare FORCE
06300b21 1778 $(Q)$(MAKE) KBUILD_MODULES=$(if $(CONFIG_MODULES),1) \
bc2546a6 1779 $(build)=$(build-dir) $(@:.ko=.o)
b805aa0e 1780 $(Q)$(MAKE) -f $(srctree)/scripts/Makefile.modpost
06300b21 1781
38385f8f 1782# FIXME Should go into a make.lib or something
1da177e4
LT
1783# ===========================================================================
1784
1785quiet_cmd_rmdirs = $(if $(wildcard $(rm-dirs)),CLEAN $(wildcard $(rm-dirs)))
1786 cmd_rmdirs = rm -rf $(rm-dirs)
1787
1788quiet_cmd_rmfiles = $(if $(wildcard $(rm-files)),CLEAN $(wildcard $(rm-files)))
1789 cmd_rmfiles = rm -f $(rm-files)
1790
bc3c26fe 1791# Run depmod only if we have System.map and depmod is executable
50a8ec31 1792quiet_cmd_depmod = DEPMOD $(KERNELRELEASE)
569658dd 1793 cmd_depmod = $(CONFIG_SHELL) $(srctree)/scripts/depmod.sh $(DEPMOD) \
5a144a1a 1794 $(KERNELRELEASE)
50a8ec31 1795
7bb9d092 1796# Create temporary dir for module support files
ab19f879
SR
1797# clean it up only when building all modules
1798cmd_crmodverdir = $(Q)mkdir -p $(MODVERDIR) \
1799 $(if $(KBUILD_MODULES),; rm -f $(MODVERDIR)/*)
1da177e4 1800
392885ee
MY
1801# read saved command lines for existing targets
1802existing-targets := $(wildcard $(sort $(targets)))
1da177e4 1803
392885ee
MY
1804cmd_files := $(foreach f,$(existing-targets),$(dir $(f)).$(notdir $(f)).cmd)
1805$(cmd_files): ; # Do not try to update included dependency files
1806-include $(cmd_files)
1da177e4 1807
25815cf5
MY
1808endif # ifeq ($(config-targets),1)
1809endif # ifeq ($(mixed-targets),1)
5a53e7d3 1810endif # need-sub-make
1da177e4 1811
4f193362 1812PHONY += FORCE
1da177e4 1813FORCE:
4f193362 1814
bd412d81 1815# Declare the contents of the PHONY variable as phony. We keep that
fe8d0a41 1816# information in a variable so we can use it in if_changed and friends.
4f193362 1817.PHONY: $(PHONY)