xref: /openbmc/linux/Makefile (revision d5028ba8ee5a18c9d0bb926d883c28b370f89009)
1b2441318SGreg Kroah-Hartman# SPDX-License-Identifier: GPL-2.0
2c517d838SLinus TorvaldsVERSION = 4
37928b2cbSLinus TorvaldsPATCHLEVEL = 16
455922c9dSLinus TorvaldsSUBLEVEL = 0
57928b2cbSLinus TorvaldsEXTRAVERSION = -rc1
6566cf877SLinus TorvaldsNAME = Fearless Coyote
71da177e4SLinus Torvalds
81da177e4SLinus Torvalds# *DOCUMENTATION*
91da177e4SLinus Torvalds# To see a list of typical targets execute "make help"
101da177e4SLinus Torvalds# More info can be located in ./README
111da177e4SLinus Torvalds# Comments in this file are targeted only to the developer, do not
121da177e4SLinus Torvalds# expect to learn how to build the kernel reading this file.
131da177e4SLinus Torvalds
14ba634eceSMasahiro Yamada# That's our default target when none is given on the command line
15ba634eceSMasahiro YamadaPHONY := _all
16ba634eceSMasahiro Yamada_all:
17ba634eceSMasahiro Yamada
18a436bb7bSMasahiro Yamada# o Do not use make's built-in rules and variables
19d384e35aSLinus Nilsson#   (this increases performance and avoids hard-to-debug behaviour);
20a436bb7bSMasahiro Yamada# o Look for make include files relative to root of kernel src
21a436bb7bSMasahiro YamadaMAKEFLAGS += -rR --include-dir=$(CURDIR)
221da177e4SLinus Torvalds
23c051346bSH. Peter Anvin# Avoid funny character set dependencies
2406b5dc64SH. Peter Anvinunexport LC_ALL
25c051346bSH. Peter AnvinLC_COLLATE=C
26c051346bSH. Peter AnvinLC_NUMERIC=C
2707105202SMichal Marekexport LC_COLLATE LC_NUMERIC
28c051346bSH. Peter Anvin
29ab7474eaSBorislav Petkov# Avoid interference with shell env settings
30ab7474eaSBorislav Petkovunexport GREP_OPTIONS
31ab7474eaSBorislav Petkov
321da177e4SLinus Torvalds# We are using a recursive build, so we need to do a little thinking
331da177e4SLinus Torvalds# to get the ordering right.
341da177e4SLinus Torvalds#
351da177e4SLinus Torvalds# Most importantly: sub-Makefiles should only ever modify files in
361da177e4SLinus Torvalds# their own directory. If in some directory we have a dependency on
371da177e4SLinus Torvalds# a file in another dir (which doesn't happen often, but it's often
381da177e4SLinus Torvalds# unavoidable when linking the built-in.o targets which finally
391da177e4SLinus Torvalds# turn into vmlinux), we will call a sub make in that other dir, and
401da177e4SLinus Torvalds# after that we are sure that everything which is in that other dir
411da177e4SLinus Torvalds# is now up to date.
421da177e4SLinus Torvalds#
431da177e4SLinus Torvalds# The only cases where we need to modify files which have global
441da177e4SLinus Torvalds# effects are thus separated out and done before the recursive
451da177e4SLinus Torvalds# descending is started. They are now explicitly listed as the
461da177e4SLinus Torvalds# prepare rule.
471da177e4SLinus Torvalds
48066b7ed9SMichal Marek# Beautify output
49066b7ed9SMichal Marek# ---------------------------------------------------------------------------
50066b7ed9SMichal Marek#
51066b7ed9SMichal Marek# Normally, we echo the whole command before executing it. By making
52066b7ed9SMichal Marek# that echo $($(quiet)$(cmd)), we now have the possibility to set
53066b7ed9SMichal Marek# $(quiet) to choose other forms of output instead, e.g.
54066b7ed9SMichal Marek#
55066b7ed9SMichal Marek#         quiet_cmd_cc_o_c = Compiling $(RELDIR)/$@
56066b7ed9SMichal Marek#         cmd_cc_o_c       = $(CC) $(c_flags) -c -o $@ $<
57066b7ed9SMichal Marek#
58066b7ed9SMichal Marek# If $(quiet) is empty, the whole command will be printed.
59066b7ed9SMichal Marek# If it is set to "quiet_", only the short version will be printed.
60066b7ed9SMichal Marek# If it is set to "silent_", nothing will be printed at all, since
61066b7ed9SMichal Marek# the variable $(silent_cmd_cc_o_c) doesn't exist.
62066b7ed9SMichal Marek#
63066b7ed9SMichal Marek# A simple variant is to prefix commands with $(Q) - that's useful
64066b7ed9SMichal Marek# for commands that shall be hidden in non-verbose mode.
65066b7ed9SMichal Marek#
66066b7ed9SMichal Marek#	$(Q)ln $@ :<
67066b7ed9SMichal Marek#
68066b7ed9SMichal Marek# If KBUILD_VERBOSE equals 0 then the above command will be hidden.
69066b7ed9SMichal Marek# If KBUILD_VERBOSE equals 1 then the above command is displayed.
70066b7ed9SMichal Marek#
711da177e4SLinus Torvalds# To put more focus on warnings, be less verbose as default
721da177e4SLinus Torvalds# Use 'make V=1' to see the full commands
731da177e4SLinus Torvalds
741da177e4SLinus Torvaldsifeq ("$(origin V)", "command line")
751da177e4SLinus Torvalds  KBUILD_VERBOSE = $(V)
761da177e4SLinus Torvaldsendif
771da177e4SLinus Torvaldsifndef KBUILD_VERBOSE
781da177e4SLinus Torvalds  KBUILD_VERBOSE = 0
791da177e4SLinus Torvaldsendif
801da177e4SLinus Torvalds
81066b7ed9SMichal Marekifeq ($(KBUILD_VERBOSE),1)
82066b7ed9SMichal Marek  quiet =
83066b7ed9SMichal Marek  Q =
84066b7ed9SMichal Marekelse
85066b7ed9SMichal Marek  quiet=quiet_
86066b7ed9SMichal Marek  Q = @
87066b7ed9SMichal Marekendif
88066b7ed9SMichal Marek
89066b7ed9SMichal Marek# If the user is running make -s (silent mode), suppress echoing of
90066b7ed9SMichal Marek# commands
91066b7ed9SMichal Marek
926f0fa58eSMasahiro Yamadaifneq ($(findstring s,$(filter-out --%,$(MAKEFLAGS))),)
93066b7ed9SMichal Marek  quiet=silent_
94e572d088SJosh Poimboeuf  tools_silent=s
95066b7ed9SMichal Marekendif
96066b7ed9SMichal Marek
97066b7ed9SMichal Marekexport quiet Q KBUILD_VERBOSE
98066b7ed9SMichal Marek
991da177e4SLinus Torvalds# kbuild supports saving output files in a separate directory.
1001da177e4SLinus Torvalds# To locate output files in a separate directory two syntaxes are supported.
1011da177e4SLinus Torvalds# In both cases the working directory must be the root of the kernel src.
1021da177e4SLinus Torvalds# 1) O=
1031da177e4SLinus Torvalds# Use "make O=dir/to/store/output/files/"
1041da177e4SLinus Torvalds#
1051da177e4SLinus Torvalds# 2) Set KBUILD_OUTPUT
1061da177e4SLinus Torvalds# Set the environment variable KBUILD_OUTPUT to point to the directory
1071da177e4SLinus Torvalds# where the output files shall be placed.
1081da177e4SLinus Torvalds# export KBUILD_OUTPUT=dir/to/store/output/files/
1091da177e4SLinus Torvalds# make
1101da177e4SLinus Torvalds#
1111da177e4SLinus Torvalds# The O= assignment takes precedence over the KBUILD_OUTPUT environment
1121da177e4SLinus Torvalds# variable.
1131da177e4SLinus Torvalds
114c4e6fff1SCao jin# KBUILD_SRC is not intended to be used by the regular user (for now),
115c4e6fff1SCao jin# it is set on invocation of make with KBUILD_OUTPUT or O= specified.
1161da177e4SLinus Torvaldsifeq ($(KBUILD_SRC),)
1171da177e4SLinus Torvalds
1181da177e4SLinus Torvalds# OK, Make called in directory where kernel src resides
1191da177e4SLinus Torvalds# Do we want to locate output files in a separate directory?
1201da177e4SLinus Torvaldsifeq ("$(origin O)", "command line")
1211da177e4SLinus Torvalds  KBUILD_OUTPUT := $(O)
1221da177e4SLinus Torvaldsendif
1231da177e4SLinus Torvalds
1241cacc9abSSam Ravnborg# Cancel implicit rules on top Makefile
1251cacc9abSSam Ravnborg$(CURDIR)/Makefile Makefile: ;
1261cacc9abSSam Ravnborg
12751193b76SRobert Jarzmikifneq ($(words $(subst :, ,$(CURDIR))), 1)
12851193b76SRobert Jarzmik  $(error main directory cannot contain spaces nor colons)
12951193b76SRobert Jarzmikendif
13051193b76SRobert Jarzmik
1311da177e4SLinus Torvaldsifneq ($(KBUILD_OUTPUT),)
1321da177e4SLinus Torvalds# check that the output directory actually exists
1331da177e4SLinus Torvaldssaved-output := $(KBUILD_OUTPUT)
134028568d8SMasahiro YamadaKBUILD_OUTPUT := $(shell mkdir -p $(KBUILD_OUTPUT) && cd $(KBUILD_OUTPUT) \
13516f8259cSBjørn Forsman								&& pwd)
1361da177e4SLinus Torvalds$(if $(KBUILD_OUTPUT),, \
1371c9e70a5SMasahiro Yamada     $(error failed to create output directory "$(saved-output)"))
1381da177e4SLinus Torvalds
1390b35786dSMilton MillerPHONY += $(MAKECMDGOALS) sub-make
1400b35786dSMilton Miller
1411cacc9abSSam Ravnborg$(filter-out _all sub-make $(CURDIR)/Makefile, $(MAKECMDGOALS)) _all: sub-make
14216f89098SCharles Keepax	@:
1430b35786dSMilton Miller
144c4e6fff1SCao jin# Invoke a second make in the output directory, passing relevant variables
1452e8d696bSMasahiro Yamadasub-make:
146745a2543SMasahiro Yamada	$(Q)$(MAKE) -C $(KBUILD_OUTPUT) KBUILD_SRC=$(CURDIR) \
147aa55c8e2SMasahiro Yamada	-f $(CURDIR)/Makefile $(filter-out _all sub-make,$(MAKECMDGOALS))
1481da177e4SLinus Torvalds
1491da177e4SLinus Torvalds# Leave processing to above invocation of make
1501da177e4SLinus Torvaldsskip-makefile := 1
1511da177e4SLinus Torvaldsendif # ifneq ($(KBUILD_OUTPUT),)
1521da177e4SLinus Torvaldsendif # ifeq ($(KBUILD_SRC),)
1531da177e4SLinus Torvalds
1541da177e4SLinus Torvalds# We process the rest of the Makefile if this is the final invocation of make
1551da177e4SLinus Torvaldsifeq ($(skip-makefile),)
1561da177e4SLinus Torvalds
1577ff52571SMasahiro Yamada# Do not print "Entering directory ...",
1587ff52571SMasahiro Yamada# but we want to display it when entering to the output directory
1597ff52571SMasahiro Yamada# so that IDEs/editors are able to understand relative filenames.
1607ff52571SMasahiro YamadaMAKEFLAGS += --no-print-directory
1617ff52571SMasahiro Yamada
162aa55c8e2SMasahiro Yamada# Call a source code checker (by default, "sparse") as part of the
163aa55c8e2SMasahiro Yamada# C compilation.
164aa55c8e2SMasahiro Yamada#
165aa55c8e2SMasahiro Yamada# Use 'make C=1' to enable checking of only re-compiled files.
166aa55c8e2SMasahiro Yamada# Use 'make C=2' to enable checking of *all* source files, regardless
167aa55c8e2SMasahiro Yamada# of whether they are re-compiled or not.
168aa55c8e2SMasahiro Yamada#
169036db11cSCao jin# See the file "Documentation/dev-tools/sparse.rst" for more details,
170036db11cSCao jin# including where to get the "sparse" utility.
171aa55c8e2SMasahiro Yamada
172aa55c8e2SMasahiro Yamadaifeq ("$(origin C)", "command line")
173aa55c8e2SMasahiro Yamada  KBUILD_CHECKSRC = $(C)
174aa55c8e2SMasahiro Yamadaendif
175aa55c8e2SMasahiro Yamadaifndef KBUILD_CHECKSRC
176aa55c8e2SMasahiro Yamada  KBUILD_CHECKSRC = 0
177aa55c8e2SMasahiro Yamadaendif
178aa55c8e2SMasahiro Yamada
179aa55c8e2SMasahiro Yamada# Use make M=dir to specify directory of external module to build
180aa55c8e2SMasahiro Yamada# Old syntax make ... SUBDIRS=$PWD is still supported
181aa55c8e2SMasahiro Yamada# Setting the environment variable KBUILD_EXTMOD take precedence
182aa55c8e2SMasahiro Yamadaifdef SUBDIRS
183aa55c8e2SMasahiro Yamada  KBUILD_EXTMOD ?= $(SUBDIRS)
184aa55c8e2SMasahiro Yamadaendif
185aa55c8e2SMasahiro Yamada
186aa55c8e2SMasahiro Yamadaifeq ("$(origin M)", "command line")
187aa55c8e2SMasahiro Yamada  KBUILD_EXTMOD := $(M)
188aa55c8e2SMasahiro Yamadaendif
189aa55c8e2SMasahiro Yamada
1909da0763bSMichal Marekifeq ($(KBUILD_SRC),)
1919da0763bSMichal Marek        # building in the source tree
1929da0763bSMichal Marek        srctree := .
1939da0763bSMichal Marekelse
1949da0763bSMichal Marek        ifeq ($(KBUILD_SRC)/,$(dir $(CURDIR)))
1959da0763bSMichal Marek                # building in a subdirectory of the source tree
1969da0763bSMichal Marek                srctree := ..
1979da0763bSMichal Marek        else
1989da0763bSMichal Marek                srctree := $(KBUILD_SRC)
1999da0763bSMichal Marek        endif
2009da0763bSMichal Marekendif
2012c1f4f12SMasahiro Yamada
2022c1f4f12SMasahiro Yamadaexport KBUILD_CHECKSRC KBUILD_EXTMOD KBUILD_SRC
2032c1f4f12SMasahiro Yamada
2047e1c0477SMichal Marekobjtree		:= .
2051da177e4SLinus Torvaldssrc		:= $(srctree)
2061da177e4SLinus Torvaldsobj		:= $(objtree)
2071da177e4SLinus Torvalds
2080f558c33SMattia DongiliVPATH		:= $(srctree)$(if $(KBUILD_EXTMOD),:$(KBUILD_EXTMOD))
2091da177e4SLinus Torvalds
21011294235SAmerigo Wangexport srctree objtree VPATH
2111da177e4SLinus Torvalds
2122c1f4f12SMasahiro Yamada# To make sure we do not include .config for any of the *config targets
2132c1f4f12SMasahiro Yamada# catch them early, and hand them over to scripts/kconfig/Makefile
2142c1f4f12SMasahiro Yamada# It is allowed to specify more targets when calling make, including
2152c1f4f12SMasahiro Yamada# mixing *config targets and build targets.
2162c1f4f12SMasahiro Yamada# For example 'make oldconfig all'.
2172c1f4f12SMasahiro Yamada# Detect when mixed targets is specified, and make a second invocation
2182c1f4f12SMasahiro Yamada# of make so .config is not included in this case either (for *config).
2192c1f4f12SMasahiro Yamada
2202c1f4f12SMasahiro Yamadaversion_h := include/generated/uapi/linux/version.h
2212c1f4f12SMasahiro Yamadaold_version_h := include/linux/version.h
2222c1f4f12SMasahiro Yamada
2232c1f4f12SMasahiro Yamadano-dot-config-targets := clean mrproper distclean \
2242c1f4f12SMasahiro Yamada			 cscope gtags TAGS tags help% %docs check% coccicheck \
2252c1f4f12SMasahiro Yamada			 $(version_h) headers_% archheaders archscripts \
2262c1f4f12SMasahiro Yamada			 kernelversion %src-pkg
2272c1f4f12SMasahiro Yamada
2282c1f4f12SMasahiro Yamadaconfig-targets := 0
2292c1f4f12SMasahiro Yamadamixed-targets  := 0
2302c1f4f12SMasahiro Yamadadot-config     := 1
2312c1f4f12SMasahiro Yamada
2322c1f4f12SMasahiro Yamadaifneq ($(filter $(no-dot-config-targets), $(MAKECMDGOALS)),)
2332c1f4f12SMasahiro Yamada	ifeq ($(filter-out $(no-dot-config-targets), $(MAKECMDGOALS)),)
2342c1f4f12SMasahiro Yamada		dot-config := 0
2352c1f4f12SMasahiro Yamada	endif
2362c1f4f12SMasahiro Yamadaendif
2372c1f4f12SMasahiro Yamada
2382c1f4f12SMasahiro Yamadaifeq ($(KBUILD_EXTMOD),)
2392c1f4f12SMasahiro Yamada        ifneq ($(filter config %config,$(MAKECMDGOALS)),)
2402c1f4f12SMasahiro Yamada                config-targets := 1
2412c1f4f12SMasahiro Yamada                ifneq ($(words $(MAKECMDGOALS)),1)
2422c1f4f12SMasahiro Yamada                        mixed-targets := 1
2432c1f4f12SMasahiro Yamada                endif
2442c1f4f12SMasahiro Yamada        endif
2452c1f4f12SMasahiro Yamadaendif
2462c1f4f12SMasahiro Yamada# install and modules_install need also be processed one by one
2472c1f4f12SMasahiro Yamadaifneq ($(filter install,$(MAKECMDGOALS)),)
2482c1f4f12SMasahiro Yamada        ifneq ($(filter modules_install,$(MAKECMDGOALS)),)
2492c1f4f12SMasahiro Yamada	        mixed-targets := 1
2502c1f4f12SMasahiro Yamada        endif
2512c1f4f12SMasahiro Yamadaendif
2522c1f4f12SMasahiro Yamada
2532c1f4f12SMasahiro Yamadaifeq ($(mixed-targets),1)
2542c1f4f12SMasahiro Yamada# ===========================================================================
2552c1f4f12SMasahiro Yamada# We're called with mixed targets (*config and build targets).
2562c1f4f12SMasahiro Yamada# Handle them one by one.
2572c1f4f12SMasahiro Yamada
2582c1f4f12SMasahiro YamadaPHONY += $(MAKECMDGOALS) __build_one_by_one
2592c1f4f12SMasahiro Yamada
2602c1f4f12SMasahiro Yamada$(filter-out __build_one_by_one, $(MAKECMDGOALS)): __build_one_by_one
2612c1f4f12SMasahiro Yamada	@:
2622c1f4f12SMasahiro Yamada
2632c1f4f12SMasahiro Yamada__build_one_by_one:
2642c1f4f12SMasahiro Yamada	$(Q)set -e; \
2652c1f4f12SMasahiro Yamada	for i in $(MAKECMDGOALS); do \
2662c1f4f12SMasahiro Yamada		$(MAKE) -f $(srctree)/Makefile $$i; \
2672c1f4f12SMasahiro Yamada	done
2682c1f4f12SMasahiro Yamada
2692c1f4f12SMasahiro Yamadaelse
2702c1f4f12SMasahiro Yamada
2712c1f4f12SMasahiro Yamada# We need some generic definitions (do not try to remake the file).
2722c1f4f12SMasahiro Yamadascripts/Kbuild.include: ;
2732c1f4f12SMasahiro Yamadainclude scripts/Kbuild.include
2742c1f4f12SMasahiro Yamada
2752c1f4f12SMasahiro Yamada# Read KERNELRELEASE from include/config/kernel.release (if it exists)
2762c1f4f12SMasahiro YamadaKERNELRELEASE = $(shell cat include/config/kernel.release 2> /dev/null)
2772c1f4f12SMasahiro YamadaKERNELVERSION = $(VERSION)$(if $(PATCHLEVEL),.$(PATCHLEVEL)$(if $(SUBLEVEL),.$(SUBLEVEL)))$(EXTRAVERSION)
2782c1f4f12SMasahiro Yamadaexport VERSION PATCHLEVEL SUBLEVEL KERNELRELEASE KERNELVERSION
2792c1f4f12SMasahiro Yamada
2801da177e4SLinus Torvalds# SUBARCH tells the usermode build what the underlying arch is.  That is set
2811da177e4SLinus Torvalds# first, and if a usermode build is happening, the "ARCH=um" on the command
2821da177e4SLinus Torvalds# line overrides the setting of ARCH below.  If a native build is happening,
2831da177e4SLinus Torvalds# then ARCH is assigned, getting whatever value it gets normally, and
2841da177e4SLinus Torvalds# SUBARCH is subsequently ignored.
2851da177e4SLinus Torvalds
286ffee0de4SDavid WoodhouseSUBARCH := $(shell uname -m | sed -e s/i.86/x86/ -e s/x86_64/x86/ \
287ffee0de4SDavid Woodhouse				  -e s/sun4u/sparc64/ \
2881da177e4SLinus Torvalds				  -e s/arm.*/arm/ -e s/sa110/arm/ \
28939990b5eSLinus Torvalds				  -e s/s390x/s390/ -e s/parisc64/parisc/ \
290236b1957SPaul Mundt				  -e s/ppc.*/powerpc/ -e s/mips.*/mips/ \
291fbe934d6SPalmer Dabbelt				  -e s/sh[234].*/sh/ -e s/aarch64.*/arm64/ \
292fbe934d6SPalmer Dabbelt				  -e s/riscv.*/riscv/)
2931da177e4SLinus Torvalds
2941da177e4SLinus Torvalds# Cross compiling and selecting different set of gcc/bin-utils
2951da177e4SLinus Torvalds# ---------------------------------------------------------------------------
2961da177e4SLinus Torvalds#
2971da177e4SLinus Torvalds# When performing cross compilation for other architectures ARCH shall be set
2981da177e4SLinus Torvalds# to the target architecture. (See arch/* for the possibilities).
2991da177e4SLinus Torvalds# ARCH can be set during invocation of make:
3001da177e4SLinus Torvalds# make ARCH=ia64
3011da177e4SLinus Torvalds# Another way is to have ARCH set in the environment.
3021da177e4SLinus Torvalds# The default ARCH is the host where make is executed.
3031da177e4SLinus Torvalds
3041da177e4SLinus Torvalds# CROSS_COMPILE specify the prefix used for all executables used
3051da177e4SLinus Torvalds# during compilation. Only gcc and related bin-utils executables
3061da177e4SLinus Torvalds# are prefixed with $(CROSS_COMPILE).
3071da177e4SLinus Torvalds# CROSS_COMPILE can be set on the command line
3081da177e4SLinus Torvalds# make CROSS_COMPILE=ia64-linux-
3091da177e4SLinus Torvalds# Alternatively CROSS_COMPILE can be set in the environment.
31084336466SRoland McGrath# A third alternative is to store a setting in .config so that plain
31184336466SRoland McGrath# "make" in the configured kernel build directory always uses that.
3121da177e4SLinus Torvalds# Default value for CROSS_COMPILE is not to prefix executables
3131da177e4SLinus Torvalds# Note: Some architectures assign CROSS_COMPILE in their arch/*/Makefile
3142331d1a6SSam RavnborgARCH		?= $(SUBARCH)
31584336466SRoland McGrathCROSS_COMPILE	?= $(CONFIG_CROSS_COMPILE:"%"=%)
3161da177e4SLinus Torvalds
3171da177e4SLinus Torvalds# Architecture as present in compile.h
3181da177e4SLinus TorvaldsUTS_MACHINE 	:= $(ARCH)
3196752ed90SThomas GleixnerSRCARCH 	:= $(ARCH)
3201da177e4SLinus Torvalds
321d746d647SSam Ravnborg# Additional ARCH settings for x86
322d746d647SSam Ravnborgifeq ($(ARCH),i386)
323d746d647SSam Ravnborg        SRCARCH := x86
324d746d647SSam Ravnborgendif
325d746d647SSam Ravnborgifeq ($(ARCH),x86_64)
326d746d647SSam Ravnborg        SRCARCH := x86
327d746d647SSam Ravnborgendif
32874b469f2SSam Ravnborg
3295e538790SSam Ravnborg# Additional ARCH settings for sparc
330e69f58c0SNamhyung Kimifeq ($(ARCH),sparc32)
331e69f58c0SNamhyung Kim       SRCARCH := sparc
332e69f58c0SNamhyung Kimendif
333a439fe51SSam Ravnborgifeq ($(ARCH),sparc64)
3345e538790SSam Ravnborg       SRCARCH := sparc
335a439fe51SSam Ravnborgendif
3362fb9b1bdSSam Ravnborg
3373cc000b5SPaul Mundt# Additional ARCH settings for sh
3383cc000b5SPaul Mundtifeq ($(ARCH),sh64)
3393cc000b5SPaul Mundt       SRCARCH := sh
3403cc000b5SPaul Mundtendif
3413cc000b5SPaul Mundt
34218aecc2bSChris Metcalf# Additional ARCH settings for tile
3436738d321SChris Metcalfifeq ($(ARCH),tilepro)
3446738d321SChris Metcalf       SRCARCH := tile
3456738d321SChris Metcalfendif
34618aecc2bSChris Metcalfifeq ($(ARCH),tilegx)
34718aecc2bSChris Metcalf       SRCARCH := tile
34818aecc2bSChris Metcalfendif
34918aecc2bSChris Metcalf
35014cdd3c4SRoman ZippelKCONFIG_CONFIG	?= .config
35141263fc6SBen Gardinerexport KCONFIG_CONFIG
35214cdd3c4SRoman Zippel
3531da177e4SLinus Torvalds# SHELL used by kbuild
3541da177e4SLinus TorvaldsCONFIG_SHELL := $(shell if [ -x "$$BASH" ]; then echo $$BASH; \
3551da177e4SLinus Torvalds	  else if [ -x /bin/bash ]; then echo /bin/bash; \
3561da177e4SLinus Torvalds	  else echo sh; fi ; fi)
3571da177e4SLinus Torvalds
358d7f14c66SUwe Kleine-KönigHOST_LFS_CFLAGS := $(shell getconf LFS_CFLAGS)
359d7f14c66SUwe Kleine-KönigHOST_LFS_LDFLAGS := $(shell getconf LFS_LDFLAGS)
360d7f14c66SUwe Kleine-KönigHOST_LFS_LIBS := $(shell getconf LFS_LIBS)
361d7f14c66SUwe Kleine-König
3621da177e4SLinus TorvaldsHOSTCC       = gcc
3631da177e4SLinus TorvaldsHOSTCXX      = g++
364d7f14c66SUwe Kleine-KönigHOSTCFLAGS   := -Wall -Wmissing-prototypes -Wstrict-prototypes -O2 \
365d7f14c66SUwe Kleine-König		-fomit-frame-pointer -std=gnu89 $(HOST_LFS_CFLAGS)
366d7f14c66SUwe Kleine-KönigHOSTCXXFLAGS := -O2 $(HOST_LFS_CFLAGS)
367d7f14c66SUwe Kleine-KönigHOSTLDFLAGS  := $(HOST_LFS_LDFLAGS)
368d7f14c66SUwe Kleine-KönigHOST_LOADLIBES := $(HOST_LFS_LIBS)
3691da177e4SLinus Torvalds
3701da177e4SLinus Torvalds# Make variables (CC, etc...)
3711da177e4SLinus TorvaldsAS		= $(CROSS_COMPILE)as
3721da177e4SLinus TorvaldsLD		= $(CROSS_COMPILE)ld
3731da177e4SLinus TorvaldsCC		= $(CROSS_COMPILE)gcc
3741da177e4SLinus TorvaldsCPP		= $(CC) -E
3751da177e4SLinus TorvaldsAR		= $(CROSS_COMPILE)ar
3761da177e4SLinus TorvaldsNM		= $(CROSS_COMPILE)nm
3771da177e4SLinus TorvaldsSTRIP		= $(CROSS_COMPILE)strip
3781da177e4SLinus TorvaldsOBJCOPY		= $(CROSS_COMPILE)objcopy
3791da177e4SLinus TorvaldsOBJDUMP		= $(CROSS_COMPILE)objdump
38073a4f6dbSMasahiro YamadaLEX		= flex
38173a4f6dbSMasahiro YamadaYACC		= bison
3821da177e4SLinus TorvaldsAWK		= awk
3831da177e4SLinus TorvaldsGENKSYMS	= scripts/genksyms/genksyms
384caa27b66SSam RavnborgINSTALLKERNEL  := installkernel
3851da177e4SLinus TorvaldsDEPMOD		= /sbin/depmod
3861da177e4SLinus TorvaldsPERL		= perl
387011bf125SMasahiro YamadaPYTHON		= python
3881da177e4SLinus TorvaldsCHECK		= sparse
3891da177e4SLinus Torvalds
39080a7d1d9SHannes EderCHECKFLAGS     := -D__linux__ -Dlinux -D__STDC__ -Dunix -D__unix__ \
39180a7d1d9SHannes Eder		  -Wbitwise -Wno-return-void $(CF)
392b36fad65SMichal MarekNOSTDINC_FLAGS  =
3936588169dSSam RavnborgCFLAGS_MODULE   =
3946588169dSSam RavnborgAFLAGS_MODULE   =
3956588169dSSam RavnborgLDFLAGS_MODULE  =
3961da177e4SLinus TorvaldsCFLAGS_KERNEL	=
3971da177e4SLinus TorvaldsAFLAGS_KERNEL	=
398b36fad65SMichal MarekLDFLAGS_vmlinux =
3991da177e4SLinus Torvalds
400abbf1590SDavid Howells# Use USERINCLUDE when you must reference the UAPI directories only.
401abbf1590SDavid HowellsUSERINCLUDE    := \
4029d022c54SMasahiro Yamada		-I$(srctree)/arch/$(SRCARCH)/include/uapi \
4039d022c54SMasahiro Yamada		-I$(objtree)/arch/$(SRCARCH)/include/generated/uapi \
404abbf1590SDavid Howells		-I$(srctree)/include/uapi \
4053308b285SArnd Bergmann		-I$(objtree)/include/generated/uapi \
406abbf1590SDavid Howells                -include $(srctree)/include/linux/kconfig.h
407abbf1590SDavid Howells
4081da177e4SLinus Torvalds# Use LINUXINCLUDE when you must reference the include/ directory.
4091da177e4SLinus Torvalds# Needed to be compatible with the O= option
410abbf1590SDavid HowellsLINUXINCLUDE    := \
4119d022c54SMasahiro Yamada		-I$(srctree)/arch/$(SRCARCH)/include \
4129d022c54SMasahiro Yamada		-I$(objtree)/arch/$(SRCARCH)/include/generated \
41396f13045SSam Ravnborg		$(if $(KBUILD_SRC), -I$(srctree)/include) \
414f8224f7fSMasahiro Yamada		-I$(objtree)/include \
415f8224f7fSMasahiro Yamada		$(USERINCLUDE)
4161da177e4SLinus Torvalds
417433dc2ebSMasahiro YamadaKBUILD_AFLAGS   := -D__ASSEMBLY__
418a0f97e06SSam RavnborgKBUILD_CFLAGS   := -Wall -Wundef -Wstrict-prototypes -Wno-trigraphs \
4198c97023cSArnd Bergmann		   -fno-strict-aliasing -fno-common -fshort-wchar \
420a8735821SFloris Kraak		   -Werror-implicit-function-declaration \
42151b97e35SKirill A. Shutemov		   -Wno-format-security \
422433dc2ebSMasahiro Yamada		   -std=gnu89
423433dc2ebSMasahiro YamadaKBUILD_CPPFLAGS := -D__KERNEL__
42480c00ba9SSam RavnborgKBUILD_AFLAGS_KERNEL :=
42580c00ba9SSam RavnborgKBUILD_CFLAGS_KERNEL :=
4266588169dSSam RavnborgKBUILD_AFLAGS_MODULE  := -DMODULE
4276588169dSSam RavnborgKBUILD_CFLAGS_MODULE  := -DMODULE
4286588169dSSam RavnborgKBUILD_LDFLAGS_MODULE := -T $(srctree)/scripts/module-common.lds
429433dc2ebSMasahiro YamadaGCC_PLUGINS_CFLAGS :=
4301da177e4SLinus Torvalds
43180ef88d6SSam Ravnborgexport ARCH SRCARCH CONFIG_SHELL HOSTCC HOSTCFLAGS CROSS_COMPILE AS LD CC
432d7f14c66SUwe Kleine-Königexport CPP AR NM STRIP OBJCOPY OBJDUMP HOSTLDFLAGS HOST_LOADLIBES
43373a4f6dbSMasahiro Yamadaexport MAKE LEX YACC AWK GENKSYMS INSTALLKERNEL PERL PYTHON UTS_MACHINE
434070b98bfSSam Ravnborgexport HOSTCXX HOSTCXXFLAGS LDFLAGS_MODULE CHECK CHECKFLAGS
4351da177e4SLinus Torvalds
43606c5040cSSam Ravnborgexport KBUILD_CPPFLAGS NOSTDINC_FLAGS LINUXINCLUDE OBJCOPYFLAGS LDFLAGS
4370e410e15SAndrey Konovalovexport KBUILD_CFLAGS CFLAGS_KERNEL CFLAGS_MODULE
4380e410e15SAndrey Konovalovexport CFLAGS_KASAN CFLAGS_KASAN_NOSANITIZE CFLAGS_UBSAN
439222d394dSSam Ravnborgexport KBUILD_AFLAGS AFLAGS_KERNEL AFLAGS_MODULE
4406588169dSSam Ravnborgexport KBUILD_AFLAGS_MODULE KBUILD_CFLAGS_MODULE KBUILD_LDFLAGS_MODULE
44180c00ba9SSam Ravnborgexport KBUILD_AFLAGS_KERNEL KBUILD_CFLAGS_KERNEL
44240df759eSMichal Marekexport KBUILD_ARFLAGS
4431da177e4SLinus Torvalds
4441da177e4SLinus Torvalds# When compiling out-of-tree modules, put MODVERDIR in the module
4451da177e4SLinus Torvalds# tree rather than in the kernel tree. The kernel tree might
4461da177e4SLinus Torvalds# even be read-only.
4471da177e4SLinus Torvaldsexport MODVERDIR := $(if $(KBUILD_EXTMOD),$(firstword $(KBUILD_EXTMOD))/).tmp_versions
4481da177e4SLinus Torvalds
4491da177e4SLinus Torvalds# Files to ignore in find ... statements
4501da177e4SLinus Torvalds
451ae63b2d7SPrarit Bhargavaexport RCS_FIND_IGNORE := \( -name SCCS -o -name BitKeeper -o -name .svn -o    \
452ae63b2d7SPrarit Bhargava			  -name CVS -o -name .pc -o -name .hg -o -name .git \) \
453ae63b2d7SPrarit Bhargava			  -prune -o
454450c6076SJesper Juhlexport RCS_TAR_IGNORE := --exclude SCCS --exclude BitKeeper --exclude .svn \
455450c6076SJesper Juhl			 --exclude CVS --exclude .pc --exclude .hg --exclude .git
4561da177e4SLinus Torvalds
4571da177e4SLinus Torvalds# ===========================================================================
4581da177e4SLinus Torvalds# Rules shared between *config targets and build targets
4591da177e4SLinus Torvalds
460312a3d09SCao jin# Basic helpers built in scripts/basic/
4614f193362SPaul SmithPHONY += scripts_basic
4621da177e4SLinus Torvaldsscripts_basic:
4631da177e4SLinus Torvalds	$(Q)$(MAKE) $(build)=scripts/basic
464638adb05SSteven Rostedt	$(Q)rm -f .tmp_quiet_recordmcount
4651da177e4SLinus Torvalds
466cd05e6bdSJan Beulich# To avoid any implicit rule to kick in, define an empty command.
467cd05e6bdSJan Beulichscripts/basic/%: scripts_basic ;
468cd05e6bdSJan Beulich
4694f193362SPaul SmithPHONY += outputmakefile
470fd5f0cd6SJan Beulich# outputmakefile generates a Makefile in the output directory, if using a
471fd5f0cd6SJan Beulich# separate output directory. This allows convenient use of make in the
472fd5f0cd6SJan Beulich# output directory.
4731da177e4SLinus Torvaldsoutputmakefile:
474fd5f0cd6SJan Beulichifneq ($(KBUILD_SRC),)
47592979997SAndi Kleen	$(Q)ln -fsn $(srctree) source
476fd5f0cd6SJan Beulich	$(Q)$(CONFIG_SHELL) $(srctree)/scripts/mkmakefile \
477fd5f0cd6SJan Beulich	    $(srctree) $(objtree) $(VERSION) $(PATCHLEVEL)
478fd5f0cd6SJan Beulichendif
4791da177e4SLinus Torvalds
480ae6b289aSChris Friesifeq ($(cc-name),clang)
481ae6b289aSChris Friesifneq ($(CROSS_COMPILE),)
482ae6b289aSChris FriesCLANG_TARGET	:= --target=$(notdir $(CROSS_COMPILE:%-=%))
483ae6b289aSChris FriesGCC_TOOLCHAIN	:= $(realpath $(dir $(shell which $(LD)))/..)
484ae6b289aSChris Friesendif
485ae6b289aSChris Friesifneq ($(GCC_TOOLCHAIN),)
486ae6b289aSChris FriesCLANG_GCC_TC	:= --gcc-toolchain=$(GCC_TOOLCHAIN)
487ae6b289aSChris Friesendif
488ae6b289aSChris FriesKBUILD_CFLAGS += $(CLANG_TARGET) $(CLANG_GCC_TC)
489ae6b289aSChris FriesKBUILD_AFLAGS += $(CLANG_TARGET) $(CLANG_GCC_TC)
490ae6b289aSChris Friesendif
491ae6b289aSChris Fries
492*d5028ba8SPeter ZijlstraRETPOLINE_CFLAGS_GCC := -mindirect-branch=thunk-extern -mindirect-branch-register
493*d5028ba8SPeter ZijlstraRETPOLINE_CFLAGS_CLANG := -mretpoline-external-thunk
494*d5028ba8SPeter ZijlstraRETPOLINE_CFLAGS := $(call cc-option,$(RETPOLINE_CFLAGS_GCC),$(call cc-option,$(RETPOLINE_CFLAGS_CLANG)))
495*d5028ba8SPeter Zijlstraexport RETPOLINE_CFLAGS
496*d5028ba8SPeter Zijlstra
4971da177e4SLinus Torvaldsifeq ($(config-targets),1)
4981da177e4SLinus Torvalds# ===========================================================================
4991da177e4SLinus Torvalds# *config targets only - make sure prerequisites are updated, and descend
5001da177e4SLinus Torvalds# in scripts/kconfig to make the *config target
5011da177e4SLinus Torvalds
5021da177e4SLinus Torvalds# Read arch specific Makefile to set KBUILD_DEFCONFIG as needed.
5031da177e4SLinus Torvalds# KBUILD_DEFCONFIG may point out an alternative default configuration
5041da177e4SLinus Torvalds# used for 'make defconfig'
505a436bb7bSMasahiro Yamadainclude arch/$(SRCARCH)/Makefile
50661bee204SAl Viroexport KBUILD_DEFCONFIG KBUILD_KCONFIG
5071da177e4SLinus Torvalds
50831110ebbSSam Ravnborgconfig: scripts_basic outputmakefile FORCE
50931110ebbSSam Ravnborg	$(Q)$(MAKE) $(build)=scripts/kconfig $@
51031110ebbSSam Ravnborg
51131110ebbSSam Ravnborg%config: scripts_basic outputmakefile FORCE
5121da177e4SLinus Torvalds	$(Q)$(MAKE) $(build)=scripts/kconfig $@
5131da177e4SLinus Torvalds
5141da177e4SLinus Torvaldselse
5151da177e4SLinus Torvalds# ===========================================================================
5161da177e4SLinus Torvalds# Build targets only - this includes vmlinux, arch specific targets, clean
5171da177e4SLinus Torvalds# targets and others. In general all targets except *config targets.
5181da177e4SLinus Torvalds
5192c1f4f12SMasahiro Yamada# If building an external module we do not care about the all: rule
5202c1f4f12SMasahiro Yamada# but instead _all depend on modules
5212c1f4f12SMasahiro YamadaPHONY += all
5222c1f4f12SMasahiro Yamadaifeq ($(KBUILD_EXTMOD),)
5232c1f4f12SMasahiro Yamada_all: all
5242c1f4f12SMasahiro Yamadaelse
5252c1f4f12SMasahiro Yamada_all: modules
5262c1f4f12SMasahiro Yamadaendif
5272c1f4f12SMasahiro Yamada
5282c1f4f12SMasahiro Yamada# Decide whether to build built-in, modular, or both.
5292c1f4f12SMasahiro Yamada# Normally, just do built-in.
5302c1f4f12SMasahiro Yamada
5312c1f4f12SMasahiro YamadaKBUILD_MODULES :=
5322c1f4f12SMasahiro YamadaKBUILD_BUILTIN := 1
5332c1f4f12SMasahiro Yamada
5342c1f4f12SMasahiro Yamada# If we have only "make modules", don't compile built-in objects.
5352c1f4f12SMasahiro Yamada# When we're building modules with modversions, we need to consider
5362c1f4f12SMasahiro Yamada# the built-in objects during the descend as well, in order to
5372c1f4f12SMasahiro Yamada# make sure the checksums are up to date before we record them.
5382c1f4f12SMasahiro Yamada
5392c1f4f12SMasahiro Yamadaifeq ($(MAKECMDGOALS),modules)
5402c1f4f12SMasahiro Yamada  KBUILD_BUILTIN := $(if $(CONFIG_MODVERSIONS),1)
5412c1f4f12SMasahiro Yamadaendif
5422c1f4f12SMasahiro Yamada
5432c1f4f12SMasahiro Yamada# If we have "make <whatever> modules", compile modules
5442c1f4f12SMasahiro Yamada# in addition to whatever we do anyway.
5452c1f4f12SMasahiro Yamada# Just "make" or "make all" shall build modules as well
5462c1f4f12SMasahiro Yamada
5472c1f4f12SMasahiro Yamadaifneq ($(filter all _all modules,$(MAKECMDGOALS)),)
5482c1f4f12SMasahiro Yamada  KBUILD_MODULES := 1
5492c1f4f12SMasahiro Yamadaendif
5502c1f4f12SMasahiro Yamada
5512c1f4f12SMasahiro Yamadaifeq ($(MAKECMDGOALS),)
5522c1f4f12SMasahiro Yamada  KBUILD_MODULES := 1
5532c1f4f12SMasahiro Yamadaendif
5542c1f4f12SMasahiro Yamada
5552c1f4f12SMasahiro Yamadaexport KBUILD_MODULES KBUILD_BUILTIN
5562c1f4f12SMasahiro Yamada
5571da177e4SLinus Torvaldsifeq ($(KBUILD_EXTMOD),)
5581da177e4SLinus Torvalds# Additional helpers built in scripts/
5591da177e4SLinus Torvalds# Carefully list dependencies so we do not try to build scripts twice
560070b98bfSSam Ravnborg# in parallel
5614f193362SPaul SmithPHONY += scripts
562a54292f5SAndreas Schwabscripts: scripts_basic include/config/auto.conf include/config/tristate.conf \
5636b90bd4bSEmese Revfy	 asm-generic gcc-plugins
5641da177e4SLinus Torvalds	$(Q)$(MAKE) $(build)=$(@)
5651da177e4SLinus Torvalds
5661da177e4SLinus Torvalds# Objects we will link into vmlinux / subdirs we need to visit
5671da177e4SLinus Torvaldsinit-y		:= init/
568df85b2d7SMarkus Trippelsdorfdrivers-y	:= drivers/ sound/ firmware/
5691da177e4SLinus Torvaldsnet-y		:= net/
5701da177e4SLinus Torvaldslibs-y		:= lib/
5711da177e4SLinus Torvaldscore-y		:= usr/
57237d9fe47SFeng Wuvirt-y		:= virt/
5731da177e4SLinus Torvaldsendif # KBUILD_EXTMOD
5741da177e4SLinus Torvalds
5751da177e4SLinus Torvaldsifeq ($(dot-config),1)
5769ee4e336SSam Ravnborg# Read in config
5779ee4e336SSam Ravnborg-include include/config/auto.conf
5781da177e4SLinus Torvalds
5799ee4e336SSam Ravnborgifeq ($(KBUILD_EXTMOD),)
5801da177e4SLinus Torvalds# Read in dependencies to all Kconfig* files, make sure to run
5811da177e4SLinus Torvalds# oldconfig if changes are detected.
582c955ccafSRoman Zippel-include include/config/auto.conf.cmd
5831da177e4SLinus Torvalds
5841da177e4SLinus Torvalds# To avoid any implicit rule to kick in, define an empty command
58514cdd3c4SRoman Zippel$(KCONFIG_CONFIG) include/config/auto.conf.cmd: ;
5861da177e4SLinus Torvalds
587c955ccafSRoman Zippel# If .config is newer than include/config/auto.conf, someone tinkered
588752625cfSSam Ravnborg# with it and forgot to run make oldconfig.
589070b98bfSSam Ravnborg# if auto.conf.cmd is missing then we are probably in a cleaned tree so
590752625cfSSam Ravnborg# we execute the config step to be sure to catch updated Kconfig files
591bc081dd6SMichal Marekinclude/config/%.conf: $(KCONFIG_CONFIG) include/config/auto.conf.cmd
5921da177e4SLinus Torvalds	$(Q)$(MAKE) -f $(srctree)/Makefile silentoldconfig
5931da177e4SLinus Torvaldselse
594264a2683SSam Ravnborg# external modules needs include/generated/autoconf.h and include/config/auto.conf
5959ee4e336SSam Ravnborg# but do not care if they are up-to-date. Use auto.conf to trigger the test
5969ee4e336SSam RavnborgPHONY += include/config/auto.conf
5979ee4e336SSam Ravnborg
5989ee4e336SSam Ravnborginclude/config/auto.conf:
599264a2683SSam Ravnborg	$(Q)test -e include/generated/autoconf.h -a -e $@ || (		\
6005369f550SMichal Marek	echo >&2;							\
6015369f550SMichal Marek	echo >&2 "  ERROR: Kernel configuration is invalid.";		\
6025369f550SMichal Marek	echo >&2 "         include/generated/autoconf.h or $@ are missing.";\
6035369f550SMichal Marek	echo >&2 "         Run 'make oldconfig && make prepare' on kernel src to fix it.";	\
6045369f550SMichal Marek	echo >&2 ;							\
6059ee4e336SSam Ravnborg	/bin/false)
6069ee4e336SSam Ravnborg
6079ee4e336SSam Ravnborgendif # KBUILD_EXTMOD
608c955ccafSRoman Zippel
6091da177e4SLinus Torvaldselse
6101da177e4SLinus Torvalds# Dummy target needed, because used as prerequisite
611c955ccafSRoman Zippelinclude/config/auto.conf: ;
6129ee4e336SSam Ravnborgendif # $(dot-config)
6131da177e4SLinus Torvalds
61486556392SNicolas Pitre# For the kernel to actually contain only the needed exported symbols,
61586556392SNicolas Pitre# we have to build modules as well to determine what those symbols are.
61686556392SNicolas Pitre# (this can be evaluated only once include/config/auto.conf has been included)
61786556392SNicolas Pitreifdef CONFIG_TRIM_UNUSED_KSYMS
61886556392SNicolas Pitre  KBUILD_MODULES := 1
61986556392SNicolas Pitreendif
62086556392SNicolas Pitre
6211da177e4SLinus Torvalds# The all: target is the default when no target is given on the
6221da177e4SLinus Torvalds# command line.
6231da177e4SLinus Torvalds# This allow a user to issue only 'make' to build a kernel including modules
624c8447161SMichal Marek# Defaults to vmlinux, but the arch makefile usually adds further targets
6251da177e4SLinus Torvaldsall: vmlinux
6261da177e4SLinus Torvalds
627433dc2ebSMasahiro YamadaKBUILD_CFLAGS	+= $(call cc-option,-fno-PIE)
628433dc2ebSMasahiro YamadaKBUILD_AFLAGS	+= $(call cc-option,-fno-PIE)
629433dc2ebSMasahiro YamadaCFLAGS_GCOV	:= -fprofile-arcs -ftest-coverage -fno-tree-loop-im $(call cc-disable-warning,maybe-uninitialized,)
630433dc2ebSMasahiro Yamadaexport CFLAGS_GCOV CFLAGS_KCOV
631433dc2ebSMasahiro Yamada
6326dd3f13eSMichal Marek# The arch Makefile can set ARCH_{CPP,A,C}FLAGS to override the default
6336dd3f13eSMichal Marek# values of the respective KBUILD_* variables
6346dd3f13eSMichal MarekARCH_CPPFLAGS :=
6356dd3f13eSMichal MarekARCH_AFLAGS :=
6366dd3f13eSMichal MarekARCH_CFLAGS :=
637a436bb7bSMasahiro Yamadainclude arch/$(SRCARCH)/Makefile
638a1c48bb1SGeert Uytterhoeven
639a1c48bb1SGeert UytterhoevenKBUILD_CFLAGS	+= $(call cc-option,-fno-delete-null-pointer-checks,)
640ef6000b4SLinus TorvaldsKBUILD_CFLAGS	+= $(call cc-disable-warning,frame-address,)
641bd664f6bSLinus TorvaldsKBUILD_CFLAGS	+= $(call cc-disable-warning, format-truncation)
642bd664f6bSLinus TorvaldsKBUILD_CFLAGS	+= $(call cc-disable-warning, format-overflow)
643bd664f6bSLinus TorvaldsKBUILD_CFLAGS	+= $(call cc-disable-warning, int-in-bool-context)
644a1c48bb1SGeert Uytterhoeven
6451da177e4SLinus Torvaldsifdef CONFIG_CC_OPTIMIZE_FOR_SIZE
6466748cb3cSBehan WebsterKBUILD_CFLAGS	+= $(call cc-option,-Oz,-Os)
6476748cb3cSBehan WebsterKBUILD_CFLAGS	+= $(call cc-disable-warning,maybe-uninitialized,)
6481da177e4SLinus Torvaldselse
649815eb71eSArnd Bergmannifdef CONFIG_PROFILE_ALL_BRANCHES
650a76bcf55SArnd BergmannKBUILD_CFLAGS	+= -O2 $(call cc-disable-warning,maybe-uninitialized,)
651815eb71eSArnd Bergmannelse
652a0f97e06SSam RavnborgKBUILD_CFLAGS   += -O2
6531da177e4SLinus Torvaldsendif
654815eb71eSArnd Bergmannendif
6551da177e4SLinus Torvalds
656a76bcf55SArnd BergmannKBUILD_CFLAGS += $(call cc-ifversion, -lt, 0409, \
657a76bcf55SArnd Bergmann			$(call cc-disable-warning,maybe-uninitialized,))
658a76bcf55SArnd Bergmann
65969102311SJiri Kosina# Tell gcc to never replace conditional load with a non-conditional one
66069102311SJiri KosinaKBUILD_CFLAGS	+= $(call cc-option,--param=allow-store-data-races=0)
66169102311SJiri Kosina
6627292ae3dSGleb Fotengauer-Malinovskiy# check for 'asm goto'
6634e562071SDouglas Andersonifeq ($(call shell-cached,$(CONFIG_SHELL) $(srctree)/scripts/gcc-goto.sh $(CC) $(KBUILD_CFLAGS)), y)
6647292ae3dSGleb Fotengauer-Malinovskiy	KBUILD_CFLAGS += -DCC_HAVE_ASM_GOTO
6657292ae3dSGleb Fotengauer-Malinovskiy	KBUILD_AFLAGS += -DCC_HAVE_ASM_GOTO
6667292ae3dSGleb Fotengauer-Malinovskiyendif
6677292ae3dSGleb Fotengauer-Malinovskiy
668d677a4d6SVictor Chibotaruinclude scripts/Makefile.kcov
6696b90bd4bSEmese Revfyinclude scripts/Makefile.gcc-plugins
6706b90bd4bSEmese Revfy
6711873e870SAndi Kleenifdef CONFIG_READABLE_ASM
6721873e870SAndi Kleen# Disable optimizations that make assembler listings hard to read.
6731873e870SAndi Kleen# reorder blocks reorders the control in the function
6741873e870SAndi Kleen# ipa clone creates specialized cloned functions
6751873e870SAndi Kleen# partial inlining inlines only parts of functions
6761873e870SAndi KleenKBUILD_CFLAGS += $(call cc-option,-fno-reorder-blocks,) \
6771873e870SAndi Kleen                 $(call cc-option,-fno-ipa-cp-clone,) \
6781873e870SAndi Kleen                 $(call cc-option,-fno-partial-inlining)
6791873e870SAndi Kleenendif
6801873e870SAndi Kleen
68108f67461SMike Frysingerifneq ($(CONFIG_FRAME_WARN),0)
68235bb5b1eSAndi KleenKBUILD_CFLAGS += $(call cc-option,-Wframe-larger-than=${CONFIG_FRAME_WARN})
68335bb5b1eSAndi Kleenendif
68435bb5b1eSAndi Kleen
685c965b105SKees Cook# This selects the stack protector compiler flag. Testing it is delayed
686c965b105SKees Cook# until after .config has been reprocessed, in the prepare-compiler-check
687c965b105SKees Cook# target.
68844c6dc94SKees Cookifdef CONFIG_CC_STACKPROTECTOR_AUTO
68944c6dc94SKees Cook  stackp-flag := $(call cc-option,-fstack-protector-strong,$(call cc-option,-fstack-protector))
69044c6dc94SKees Cook  stackp-name := AUTO
69144c6dc94SKees Cookelse
6928779657dSKees Cookifdef CONFIG_CC_STACKPROTECTOR_REGULAR
69319952a92SKees Cook  stackp-flag := -fstack-protector
694c965b105SKees Cook  stackp-name := REGULAR
6956c15b327SJan Beulichelse
6966c15b327SJan Beulichifdef CONFIG_CC_STACKPROTECTOR_STRONG
6978779657dSKees Cook  stackp-flag := -fstack-protector-strong
698c965b105SKees Cook  stackp-name := STRONG
69919952a92SKees Cookelse
70044c6dc94SKees Cook  # If either there is no stack protector for this architecture or
70144c6dc94SKees Cook  # CONFIG_CC_STACKPROTECTOR_NONE is selected, we're done, and $(stackp-name)
70244c6dc94SKees Cook  # is empty, skipping all remaining stack protector tests.
70344c6dc94SKees Cook  #
70419952a92SKees Cook  # Force off for distro compilers that enable stack protector by default.
70544c6dc94SKees Cook  KBUILD_CFLAGS += $(call cc-option, -fno-stack-protector)
70644c6dc94SKees Cookendif
70719952a92SKees Cookendif
7086c15b327SJan Beulichendif
709c965b105SKees Cook# Find arch-specific stack protector compiler sanity-checking script.
7102bc2f688SKees Cookifdef stackp-name
71144c6dc94SKees Cookifneq ($(stackp-flag),)
712228d96c6SKees Cook  stackp-path := $(srctree)/scripts/gcc-$(SRCARCH)_$(BITS)-has-stack-protector.sh
713228d96c6SKees Cook  stackp-check := $(wildcard $(stackp-path))
7142b838392SKees Cook  # If the wildcard test matches a test script, run it to check functionality.
7152b838392SKees Cook  ifdef stackp-check
7162b838392SKees Cook    ifneq ($(shell $(CONFIG_SHELL) $(stackp-check) $(CC) $(KBUILD_CPPFLAGS) $(biarch)),y)
7172b838392SKees Cook      stackp-broken := y
7182b838392SKees Cook    endif
7192b838392SKees Cook  endif
7202bc2f688SKees Cook  ifndef stackp-broken
7212bc2f688SKees Cook    # If the stack protector is functional, enable code that depends on it.
7222bc2f688SKees Cook    KBUILD_CPPFLAGS += -DCONFIG_CC_STACKPROTECTOR
72344c6dc94SKees Cook    # Either we've already detected the flag (for AUTO) or we'll fail the
72444c6dc94SKees Cook    # build in the prepare-compiler-check rule (for specific flag).
72519952a92SKees Cook    KBUILD_CFLAGS += $(stackp-flag)
72644c6dc94SKees Cook  else
72744c6dc94SKees Cook    # We have to make sure stack protector is unconditionally disabled if
72844c6dc94SKees Cook    # the compiler is broken (in case we're going to continue the build in
72944c6dc94SKees Cook    # AUTO mode).
73044c6dc94SKees Cook    KBUILD_CFLAGS += $(call cc-option, -fno-stack-protector)
73144c6dc94SKees Cook  endif
73244c6dc94SKees Cookendif
73344c6dc94SKees Cookendif
734e06b8b98SSam Ravnborg
735cfe17c9bSMasahiro Yamadaifeq ($(cc-name),clang)
736cfe17c9bSMasahiro YamadaKBUILD_CPPFLAGS += $(call cc-option,-Qunused-arguments,)
737cfe17c9bSMasahiro YamadaKBUILD_CFLAGS += $(call cc-disable-warning, format-invalid-specifier)
738cfe17c9bSMasahiro YamadaKBUILD_CFLAGS += $(call cc-disable-warning, gnu)
739cfe17c9bSMasahiro YamadaKBUILD_CFLAGS += $(call cc-disable-warning, address-of-packed-member)
740cfe17c9bSMasahiro Yamada# Quiet clang warning: comparison of unsigned expression < 0 is always false
741cfe17c9bSMasahiro YamadaKBUILD_CFLAGS += $(call cc-disable-warning, tautological-compare)
742cfe17c9bSMasahiro Yamada# CLANG uses a _MergedGlobals as optimization, but this breaks modpost, as the
743cfe17c9bSMasahiro Yamada# source of a reference will be _MergedGlobals and not on of the whitelisted names.
744cfe17c9bSMasahiro Yamada# See modpost pattern 2
745cfe17c9bSMasahiro YamadaKBUILD_CFLAGS += $(call cc-option, -mno-global-merge,)
746cfe17c9bSMasahiro YamadaKBUILD_CFLAGS += $(call cc-option, -fcatch-undefined-behavior)
747cfe17c9bSMasahiro YamadaKBUILD_CFLAGS += $(call cc-option, -no-integrated-as)
748cfe17c9bSMasahiro YamadaKBUILD_AFLAGS += $(call cc-option, -no-integrated-as)
749cfe17c9bSMasahiro Yamadaelse
750cfe17c9bSMasahiro Yamada
751cfe17c9bSMasahiro Yamada# These warnings generated too much noise in a regular build.
752cfe17c9bSMasahiro Yamada# Use make W=1 to enable them (see scripts/Makefile.extrawarn)
753cfe17c9bSMasahiro YamadaKBUILD_CFLAGS += $(call cc-disable-warning, unused-but-set-variable)
754cfe17c9bSMasahiro Yamadaendif
755cfe17c9bSMasahiro Yamada
7560a5f4176SSodagudi PrasadKBUILD_CFLAGS += $(call cc-disable-warning, unused-const-variable)
7571da177e4SLinus Torvaldsifdef CONFIG_FRAME_POINTER
758a0f97e06SSam RavnborgKBUILD_CFLAGS	+= -fno-omit-frame-pointer -fno-optimize-sibling-calls
7591da177e4SLinus Torvaldselse
7607e9501fdSRabin Vincent# Some targets (ARM with Thumb2, for example), can't be built with frame
7617e9501fdSRabin Vincent# pointers.  For those, we don't have FUNCTION_TRACER automatically
7627e9501fdSRabin Vincent# select FRAME_POINTER.  However, FUNCTION_TRACER adds -pg, and this is
7637e9501fdSRabin Vincent# incompatible with -fomit-frame-pointer with current GCC, so we don't use
7647e9501fdSRabin Vincent# -fomit-frame-pointer with FUNCTION_TRACER.
7657e9501fdSRabin Vincentifndef CONFIG_FUNCTION_TRACER
766a0f97e06SSam RavnborgKBUILD_CFLAGS	+= -fomit-frame-pointer
7671da177e4SLinus Torvaldsendif
7687e9501fdSRabin Vincentendif
7691da177e4SLinus Torvalds
7702062afb4SLinus TorvaldsKBUILD_CFLAGS   += $(call cc-option, -fno-var-tracking-assignments)
7712062afb4SLinus Torvalds
7721da177e4SLinus Torvaldsifdef CONFIG_DEBUG_INFO
773866ced95SAndi Kleenifdef CONFIG_DEBUG_INFO_SPLIT
774866ced95SAndi KleenKBUILD_CFLAGS   += $(call cc-option, -gsplit-dwarf, -g)
775866ced95SAndi Kleenelse
776a0f97e06SSam RavnborgKBUILD_CFLAGS	+= -g
777866ced95SAndi Kleenendif
7782288328cSBehan WebsterKBUILD_AFLAGS	+= -Wa,-gdwarf-2
7791da177e4SLinus Torvaldsendif
780bfaf2dd3SAndi Kleenifdef CONFIG_DEBUG_INFO_DWARF4
781bfaf2dd3SAndi KleenKBUILD_CFLAGS	+= $(call cc-option, -gdwarf-4,)
782bfaf2dd3SAndi Kleenendif
7831da177e4SLinus Torvalds
784d6f4ceb7SAndi Kleenifdef CONFIG_DEBUG_INFO_REDUCED
785e82c4bb8SAndi KleenKBUILD_CFLAGS 	+= $(call cc-option, -femit-struct-debug-baseonly) \
786e82c4bb8SAndi Kleen		   $(call cc-option,-fno-var-tracking)
787d6f4ceb7SAndi Kleenendif
788d6f4ceb7SAndi Kleen
789606576ceSSteven Rostedtifdef CONFIG_FUNCTION_TRACER
790c0a80c0cSHeiko Carstensifndef CC_FLAGS_FTRACE
791c0a80c0cSHeiko CarstensCC_FLAGS_FTRACE := -pg
792c0a80c0cSHeiko Carstensendif
793c0a80c0cSHeiko Carstensexport CC_FLAGS_FTRACE
794a2546faeSSteven Rostedtifdef CONFIG_HAVE_FENTRY
795a2546faeSSteven RostedtCC_USING_FENTRY	:= $(call cc-option, -mfentry -DCC_USING_FENTRY)
796a2546faeSSteven Rostedtendif
797c0a80c0cSHeiko CarstensKBUILD_CFLAGS	+= $(CC_FLAGS_FTRACE) $(CC_USING_FENTRY)
798a2546faeSSteven RostedtKBUILD_AFLAGS	+= $(CC_USING_FENTRY)
79972441cb1SSteven Rostedtifdef CONFIG_DYNAMIC_FTRACE
800cf4db259SSteven Rostedt	ifdef CONFIG_HAVE_C_RECORDMCOUNT
80172441cb1SSteven Rostedt		BUILD_C_RECORDMCOUNT := y
80272441cb1SSteven Rostedt		export BUILD_C_RECORDMCOUNT
80372441cb1SSteven Rostedt	endif
80472441cb1SSteven Rostedtendif
80516444a8aSArnaldo Carvalho de Meloendif
80616444a8aSArnaldo Carvalho de Melo
80791341d4bSSam Ravnborg# We trigger additional mismatches with less inlining
80891341d4bSSam Ravnborgifdef CONFIG_DEBUG_SECTION_MISMATCH
80991341d4bSSam RavnborgKBUILD_CFLAGS += $(call cc-option, -fno-inline-functions-called-once)
81091341d4bSSam Ravnborgendif
81191341d4bSSam Ravnborg
81290ad4052SMasahiro Yamadaifdef CONFIG_LD_DEAD_CODE_DATA_ELIMINATION
81390ad4052SMasahiro YamadaKBUILD_CFLAGS	+= $(call cc-option,-ffunction-sections,)
81490ad4052SMasahiro YamadaKBUILD_CFLAGS	+= $(call cc-option,-fdata-sections,)
81590ad4052SMasahiro Yamadaendif
81690ad4052SMasahiro Yamada
817e8e69931SSam Ravnborg# arch Makefile may override CC so keep this after arch Makefile is included
8184e562071SDouglas AndersonNOSTDINC_FLAGS += -nostdinc -isystem $(call shell-cached,$(CC) -print-file-name=include)
819e8e69931SSam RavnborgCHECKFLAGS     += $(NOSTDINC_FLAGS)
820e8e69931SSam Ravnborg
8211da177e4SLinus Torvalds# warn about C99 declaration after statement
822a0f97e06SSam RavnborgKBUILD_CFLAGS += $(call cc-option,-Wdeclaration-after-statement,)
8231da177e4SLinus Torvalds
824070b98bfSSam Ravnborg# disable pointer signed / unsigned warnings in gcc 4.0
8258417da6fSMichal MarekKBUILD_CFLAGS += $(call cc-disable-warning, pointer-sign)
8261da177e4SLinus Torvalds
827fe8d0a41SKirill Smelkov# disable invalid "can't wrap" optimizations for signed / pointers
828a137802eSLinus TorvaldsKBUILD_CFLAGS	+= $(call cc-option,-fno-strict-overflow)
829d0115552SLinus Torvalds
8303ce120b1SLinus Torvalds# Make sure -fstack-check isn't enabled (like gentoo apparently did)
8313ce120b1SLinus TorvaldsKBUILD_CFLAGS  += $(call cc-option,-fno-stack-check,)
8323ce120b1SLinus Torvalds
8338f7f5c9fSAndi Kleen# conserve stack if available
8348f7f5c9fSAndi KleenKBUILD_CFLAGS   += $(call cc-option,-fconserve-stack)
8358f7f5c9fSAndi Kleen
83680970472SSergei Trofimovich# disallow errors like 'EXPORT_GPL(foo);' with missing header
83780970472SSergei TrofimovichKBUILD_CFLAGS   += $(call cc-option,-Werror=implicit-int)
83880970472SSergei Trofimovich
83980970472SSergei Trofimovich# require functions to have arguments in prototypes, not empty 'int foo()'
84080970472SSergei TrofimovichKBUILD_CFLAGS   += $(call cc-option,-Werror=strict-prototypes)
84180970472SSergei Trofimovich
842fe7c36c7SJosh Triplett# Prohibit date/time macros, which would make the build non-deterministic
843fe7c36c7SJosh TriplettKBUILD_CFLAGS   += $(call cc-option,-Werror=date-time)
844fe7c36c7SJosh Triplett
845ea8daa7bSDaniel Wagner# enforce correct pointer usage
846ea8daa7bSDaniel WagnerKBUILD_CFLAGS   += $(call cc-option,-Werror=incompatible-pointer-types)
847ea8daa7bSDaniel Wagner
848c834f0e8SKees Cook# Require designated initializers for all marked structures
849c834f0e8SKees CookKBUILD_CFLAGS   += $(call cc-option,-Werror=designated-init)
850c834f0e8SKees Cook
85140df759eSMichal Marek# use the deterministic mode of AR if available
85240df759eSMichal MarekKBUILD_ARFLAGS := $(call ar-option,D)
85340df759eSMichal Marek
854a436bb7bSMasahiro Yamadainclude scripts/Makefile.kasan
855a436bb7bSMasahiro Yamadainclude scripts/Makefile.extrawarn
856c6d30853SAndrey Ryabinininclude scripts/Makefile.ubsan
857a86fe353SMasahiro Yamada
85861754c18SMichal Marek# Add any arch overrides and user supplied CPPFLAGS, AFLAGS and CFLAGS as the
85961754c18SMichal Marek# last assignments
86061754c18SMichal MarekKBUILD_CPPFLAGS += $(ARCH_CPPFLAGS) $(KCPPFLAGS)
86161754c18SMichal MarekKBUILD_AFLAGS   += $(ARCH_AFLAGS)   $(KAFLAGS)
86261754c18SMichal MarekKBUILD_CFLAGS   += $(ARCH_CFLAGS)   $(KCFLAGS)
86352bcc330SSam Ravnborg
86418991197SRoland McGrath# Use --build-id when available.
865bd74370bSRabin VincentLDFLAGS_BUILD_ID := $(patsubst -Wl$(comma)%,%,\
866f86fd306SSam Ravnborg			      $(call cc-ldoption, -Wl$(comma)--build-id,))
8676588169dSSam RavnborgKBUILD_LDFLAGS_MODULE += $(LDFLAGS_BUILD_ID)
86818991197SRoland McGrathLDFLAGS_vmlinux += $(LDFLAGS_BUILD_ID)
86918991197SRoland McGrath
870b67067f1SNicholas Pigginifdef CONFIG_LD_DEAD_CODE_DATA_ELIMINATION
871b67067f1SNicholas PigginLDFLAGS_vmlinux	+= $(call ld-option, --gc-sections,)
872b67067f1SNicholas Pigginendif
873b67067f1SNicholas Piggin
8745d7d18f5SDavid Howellsifeq ($(CONFIG_STRIP_ASM_SYMS),y)
875d79a2719SAndi KleenLDFLAGS_vmlinux	+= $(call ld-option, -X,)
8765d7d18f5SDavid Howellsendif
8775d7d18f5SDavid Howells
8781da177e4SLinus Torvalds# Default kernel image to build when no specific target is given.
8791da177e4SLinus Torvalds# KBUILD_IMAGE may be overruled on the command line or
8801da177e4SLinus Torvalds# set in the environment
8811da177e4SLinus Torvalds# Also any assignments in arch/$(ARCH)/Makefile take precedence over
8821da177e4SLinus Torvalds# this default value
8831da177e4SLinus Torvaldsexport KBUILD_IMAGE ?= vmlinux
8841da177e4SLinus Torvalds
8851da177e4SLinus Torvalds#
8861da177e4SLinus Torvalds# INSTALL_PATH specifies where to place the updated kernel and system map
8871da177e4SLinus Torvalds# images. Default is /boot, but you can set it to other values
8881da177e4SLinus Torvaldsexport	INSTALL_PATH ?= /boot
8891da177e4SLinus Torvalds
8901da177e4SLinus Torvalds#
891f4d4ffc0SJason Cooper# INSTALL_DTBS_PATH specifies a prefix for relocations required by build roots.
892f4d4ffc0SJason Cooper# Like INSTALL_MOD_PATH, it isn't defined in the Makefile, but can be passed as
893f4d4ffc0SJason Cooper# an argument if needed. Otherwise it defaults to the kernel install path
894f4d4ffc0SJason Cooper#
895f4d4ffc0SJason Cooperexport INSTALL_DTBS_PATH ?= $(INSTALL_PATH)/dtbs/$(KERNELRELEASE)
896f4d4ffc0SJason Cooper
897f4d4ffc0SJason Cooper#
8981da177e4SLinus Torvalds# INSTALL_MOD_PATH specifies a prefix to MODLIB for module directory
8991da177e4SLinus Torvalds# relocations required by build roots.  This is not defined in the
900070b98bfSSam Ravnborg# makefile but the argument can be passed to make if needed.
9011da177e4SLinus Torvalds#
9021da177e4SLinus Torvalds
903df9df036SSam RavnborgMODLIB	= $(INSTALL_MOD_PATH)/lib/modules/$(KERNELRELEASE)
9041da177e4SLinus Torvaldsexport MODLIB
9051da177e4SLinus Torvalds
906ac031f26STheodore Ts'o#
9072ea03891SSam Ravnborg# INSTALL_MOD_STRIP, if defined, will cause modules to be
9082ea03891SSam Ravnborg# stripped after they are installed.  If INSTALL_MOD_STRIP is '1', then
9092ea03891SSam Ravnborg# the default option --strip-debug will be used.  Otherwise,
910177b241dSGilles Espinasse# INSTALL_MOD_STRIP value will be used as the options to the strip command.
9112ea03891SSam Ravnborg
912ac031f26STheodore Ts'oifdef INSTALL_MOD_STRIP
913ac031f26STheodore Ts'oifeq ($(INSTALL_MOD_STRIP),1)
9142ea03891SSam Ravnborgmod_strip_cmd = $(STRIP) --strip-debug
915ac031f26STheodore Ts'oelse
9162ea03891SSam Ravnborgmod_strip_cmd = $(STRIP) $(INSTALL_MOD_STRIP)
917ac031f26STheodore Ts'oendif # INSTALL_MOD_STRIP=1
918ac031f26STheodore Ts'oelse
9192ea03891SSam Ravnborgmod_strip_cmd = true
920ac031f26STheodore Ts'oendif # INSTALL_MOD_STRIP
921ac031f26STheodore Ts'oexport mod_strip_cmd
922ac031f26STheodore Ts'o
923beb50df3SBertrand Jacquin# CONFIG_MODULE_COMPRESS, if defined, will cause module to be compressed
924beb50df3SBertrand Jacquin# after they are installed in agreement with CONFIG_MODULE_COMPRESS_GZIP
925beb50df3SBertrand Jacquin# or CONFIG_MODULE_COMPRESS_XZ.
926beb50df3SBertrand Jacquin
927beb50df3SBertrand Jacquinmod_compress_cmd = true
928beb50df3SBertrand Jacquinifdef CONFIG_MODULE_COMPRESS
929beb50df3SBertrand Jacquin  ifdef CONFIG_MODULE_COMPRESS_GZIP
9303d1450d5SJason A. Donenfeld    mod_compress_cmd = gzip -n -f
931beb50df3SBertrand Jacquin  endif # CONFIG_MODULE_COMPRESS_GZIP
932beb50df3SBertrand Jacquin  ifdef CONFIG_MODULE_COMPRESS_XZ
9333d1450d5SJason A. Donenfeld    mod_compress_cmd = xz -f
934beb50df3SBertrand Jacquin  endif # CONFIG_MODULE_COMPRESS_XZ
935beb50df3SBertrand Jacquinendif # CONFIG_MODULE_COMPRESS
936beb50df3SBertrand Jacquinexport mod_compress_cmd
937beb50df3SBertrand Jacquin
9381bf49dd4SP J P# Select initial ramdisk compression format, default is gzip(1).
9391bf49dd4SP J P# This shall be used by the dracut(8) tool while creating an initramfs image.
9401bf49dd4SP J P#
9417ac18156SJan BeulichINITRD_COMPRESS-y                  := gzip
9427ac18156SJan BeulichINITRD_COMPRESS-$(CONFIG_RD_BZIP2) := bzip2
9437ac18156SJan BeulichINITRD_COMPRESS-$(CONFIG_RD_LZMA)  := lzma
9447ac18156SJan BeulichINITRD_COMPRESS-$(CONFIG_RD_XZ)    := xz
9457ac18156SJan BeulichINITRD_COMPRESS-$(CONFIG_RD_LZO)   := lzo
9467ac18156SJan BeulichINITRD_COMPRESS-$(CONFIG_RD_LZ4)   := lz4
947b7000adeSLinus Torvalds# do not export INITRD_COMPRESS, since we didn't actually
948b7000adeSLinus Torvalds# choose a sane default compression above.
949b7000adeSLinus Torvalds# export INITRD_COMPRESS := $(INITRD_COMPRESS-y)
9501da177e4SLinus Torvalds
951d9d8d7edSMichal Marekifdef CONFIG_MODULE_SIG_ALL
9523ee550f1SDavid Woodhouse$(eval $(call config_filename,MODULE_SIG_KEY))
9533ee550f1SDavid Woodhouse
9543ee550f1SDavid Woodhousemod_sign_cmd = scripts/sign-file $(CONFIG_MODULE_SIG_HASH) $(MODULE_SIG_KEY_SRCPREFIX)$(CONFIG_MODULE_SIG_KEY) certs/signing_key.x509
955e2a666d5SRusty Russellelse
956e2a666d5SRusty Russellmod_sign_cmd = true
957e2a666d5SRusty Russellendif
958e2a666d5SRusty Russellexport mod_sign_cmd
959e2a666d5SRusty Russell
9609f0c18aeSJosh Poimboeufifdef CONFIG_STACK_VALIDATION
9619f0c18aeSJosh Poimboeuf  has_libelf := $(call try-run,\
9629f0c18aeSJosh Poimboeuf		echo "int main() {}" | $(HOSTCC) -xc -o /dev/null -lelf -,1,0)
9639f0c18aeSJosh Poimboeuf  ifeq ($(has_libelf),1)
9649f0c18aeSJosh Poimboeuf    objtool_target := tools/objtool FORCE
9659f0c18aeSJosh Poimboeuf  else
96611af8474SJosh Poimboeuf    ifdef CONFIG_UNWINDER_ORC
96711af8474SJosh Poimboeuf      $(error "Cannot generate ORC metadata for CONFIG_UNWINDER_ORC=y, please install libelf-dev, libelf-devel or elfutils-libelf-devel")
9683dd40cb3SJosh Poimboeuf    else
9693dd40cb3SJosh Poimboeuf      $(warning "Cannot use CONFIG_STACK_VALIDATION=y, please install libelf-dev, libelf-devel or elfutils-libelf-devel")
9703dd40cb3SJosh Poimboeuf    endif
9719f0c18aeSJosh Poimboeuf    SKIP_STACK_VALIDATION := 1
9729f0c18aeSJosh Poimboeuf    export SKIP_STACK_VALIDATION
9739f0c18aeSJosh Poimboeuf  endif
9749f0c18aeSJosh Poimboeufendif
9759f0c18aeSJosh Poimboeuf
976e2a666d5SRusty Russell
9771da177e4SLinus Torvaldsifeq ($(KBUILD_EXTMOD),)
978cfc411e7SDavid Howellscore-y		+= kernel/ certs/ mm/ fs/ ipc/ security/ crypto/ block/
9791da177e4SLinus Torvalds
9801da177e4SLinus Torvaldsvmlinux-dirs	:= $(patsubst %/,%,$(filter %/, $(init-y) $(init-m) \
9811da177e4SLinus Torvalds		     $(core-y) $(core-m) $(drivers-y) $(drivers-m) \
98237d9fe47SFeng Wu		     $(net-y) $(net-m) $(libs-y) $(libs-m) $(virt-y)))
9831da177e4SLinus Torvalds
9841da177e4SLinus Torvaldsvmlinux-alldirs	:= $(sort $(vmlinux-dirs) $(patsubst %/,%,$(filter %/, \
98537d9fe47SFeng Wu		     $(init-) $(core-) $(drivers-) $(net-) $(libs-) $(virt-))))
9861da177e4SLinus Torvalds
9871da177e4SLinus Torvaldsinit-y		:= $(patsubst %/, %/built-in.o, $(init-y))
9881da177e4SLinus Torvaldscore-y		:= $(patsubst %/, %/built-in.o, $(core-y))
9891da177e4SLinus Torvaldsdrivers-y	:= $(patsubst %/, %/built-in.o, $(drivers-y))
9901da177e4SLinus Torvaldsnet-y		:= $(patsubst %/, %/built-in.o, $(net-y))
9911da177e4SLinus Torvaldslibs-y1		:= $(patsubst %/, %/lib.a, $(libs-y))
9923a166fc2SNicholas Pigginlibs-y2		:= $(filter-out %.a, $(patsubst %/, %/built-in.o, $(libs-y)))
99337d9fe47SFeng Wuvirt-y		:= $(patsubst %/, %/built-in.o, $(virt-y))
9941da177e4SLinus Torvalds
9951f2bfbd0SSam Ravnborg# Externally visible symbols (used by link-vmlinux.sh)
99695698570SSam Ravnborgexport KBUILD_VMLINUX_INIT := $(head-y) $(init-y)
9973a166fc2SNicholas Pigginexport KBUILD_VMLINUX_MAIN := $(core-y) $(libs-y2) $(drivers-y) $(net-y) $(virt-y)
9983a166fc2SNicholas Pigginexport KBUILD_VMLINUX_LIBS := $(libs-y1)
99995698570SSam Ravnborgexport KBUILD_LDS          := arch/$(SRCARCH)/kernel/vmlinux.lds
10001f2bfbd0SSam Ravnborgexport LDFLAGS_vmlinux
1001312a3d09SCao jin# used by scripts/package/Makefile
100237d9fe47SFeng Wuexport KBUILD_ALLDIRS := $(sort $(filter-out arch/%,$(vmlinux-alldirs)) arch Documentation include samples scripts tools)
10031da177e4SLinus Torvalds
10043a166fc2SNicholas Pigginvmlinux-deps := $(KBUILD_LDS) $(KBUILD_VMLINUX_INIT) $(KBUILD_VMLINUX_MAIN) $(KBUILD_VMLINUX_LIBS)
10051da177e4SLinus Torvalds
10062441e78bSNicolas Pitre# Include targets which we want to execute sequentially if the rest of the
10072441e78bSNicolas Pitre# kernel build went well. If CONFIG_TRIM_UNUSED_KSYMS is set, this might be
10082441e78bSNicolas Pitre# evaluated more than once.
10092441e78bSNicolas PitrePHONY += vmlinux_prereq
10102441e78bSNicolas Pitrevmlinux_prereq: $(vmlinux-deps) FORCE
10110f836e5fSDavid Woodhouseifdef CONFIG_HEADERS_CHECK
10120e7af8d0SDavid Woodhouse	$(Q)$(MAKE) -f $(srctree)/Makefile headers_check
10130f836e5fSDavid Woodhouseendif
10143ee7b3faSJan Kiszkaifdef CONFIG_GDB_SCRIPTS
10158e9b4667SMasahiro Yamada	$(Q)ln -fsn $(abspath $(srctree)/scripts/gdb/vmlinux-gdb.py)
10163ee7b3faSJan Kiszkaendif
10172441e78bSNicolas Pitreifdef CONFIG_TRIM_UNUSED_KSYMS
1018ba79d401SNicolas Ferre	$(Q)$(CONFIG_SHELL) $(srctree)/scripts/adjust_autoksyms.sh \
101986556392SNicolas Pitre	  "$(MAKE) -f $(srctree)/Makefile vmlinux"
10202441e78bSNicolas Pitreendif
102123121ca2SNicolas Pitre
102223121ca2SNicolas Pitre# standalone target for easier testing
102323121ca2SNicolas Pitreinclude/generated/autoksyms.h: FORCE
1024ba79d401SNicolas Ferre	$(Q)$(CONFIG_SHELL) $(srctree)/scripts/adjust_autoksyms.sh true
102523121ca2SNicolas Pitre
1026fbe6e37dSNicholas PigginARCH_POSTLINK := $(wildcard $(srctree)/arch/$(SRCARCH)/Makefile.postlink)
1027fbe6e37dSNicholas Piggin
1028fbe6e37dSNicholas Piggin# Final link of vmlinux with optional arch pass after final link
1029fbe6e37dSNicholas Piggincmd_link-vmlinux =                                                 \
1030fbe6e37dSNicholas Piggin	$(CONFIG_SHELL) $< $(LD) $(LDFLAGS) $(LDFLAGS_vmlinux) ;    \
1031fbe6e37dSNicholas Piggin	$(if $(ARCH_POSTLINK), $(MAKE) -f $(ARCH_POSTLINK) $@, true)
10322441e78bSNicolas Pitre
1033edf69470SNicolas Pitrevmlinux: scripts/link-vmlinux.sh vmlinux_prereq $(vmlinux-deps) FORCE
10341f2bfbd0SSam Ravnborg	+$(call if_changed,link-vmlinux)
1035741f98feSSam Ravnborg
1036dd92478aSNicolas Pitre# Build samples along the rest of the kernel
1037dd92478aSNicolas Pitreifdef CONFIG_SAMPLES
1038dd92478aSNicolas Pitrevmlinux-dirs += samples
1039dd92478aSNicolas Pitreendif
1040dd92478aSNicolas Pitre
10411da177e4SLinus Torvalds# The actual objects are generated when descending,
10421da177e4SLinus Torvalds# make sure no implicit rule kicks in
10431f2bfbd0SSam Ravnborg$(sort $(vmlinux-deps)): $(vmlinux-dirs) ;
10441da177e4SLinus Torvalds
10451da177e4SLinus Torvalds# Handle descending into subdirectories listed in $(vmlinux-dirs)
10461da177e4SLinus Torvalds# Preset locale variables to speed up the build process. Limit locale
10471da177e4SLinus Torvalds# tweaks to this spot to avoid wrong language settings when running
10481da177e4SLinus Torvalds# make menuconfig etc.
10491da177e4SLinus Torvalds# Error messages still appears in the original language
10501da177e4SLinus Torvalds
10514f193362SPaul SmithPHONY += $(vmlinux-dirs)
10525bb78269SSam Ravnborg$(vmlinux-dirs): prepare scripts
1053f7adc312SMasahiro Yamada	$(Q)$(MAKE) $(build)=$@ need-builtin=1
10541da177e4SLinus Torvalds
10550d0e7718SMichal Marekdefine filechk_kernel.release
10560d0e7718SMichal Marek	echo "$(KERNELVERSION)$$($(CONFIG_SHELL) $(srctree)/scripts/setlocalversion $(srctree))"
10570d0e7718SMichal Marekendef
10580d0e7718SMichal Marek
105983a35e36SGeert Uytterhoeven# Store (new) KERNELRELEASE string in include/config/kernel.release
1060f1d28fb0SRoman Zippelinclude/config/kernel.release: include/config/auto.conf FORCE
10610d0e7718SMichal Marek	$(call filechk,kernel.release)
1062cb58455cSSam Ravnborg
1063cb58455cSSam Ravnborg
10641da177e4SLinus Torvalds# Things we need to do before we recursively start building the kernel
10655bb78269SSam Ravnborg# or the modules are listed in "prepare".
10665bb78269SSam Ravnborg# A multi level approach is used. prepareN is processed before prepareN-1.
10675bb78269SSam Ravnborg# archprepare is used in arch Makefiles and when processed asm symlink,
10685bb78269SSam Ravnborg# version.h and scripts_basic is processed / created.
10691da177e4SLinus Torvalds
10705bb78269SSam Ravnborg# Listed in dependency order
10714f193362SPaul SmithPHONY += prepare archprepare prepare0 prepare1 prepare2 prepare3
10725bb78269SSam Ravnborg
107386feeaa8SSam Ravnborg# prepare3 is used to check if we are building in a separate output directory,
10741da177e4SLinus Torvalds# and if so do:
10751da177e4SLinus Torvalds# 1) Check that make has not been executed in the kernel src $(srctree)
1076f1d28fb0SRoman Zippelprepare3: include/config/kernel.release
10771da177e4SLinus Torvaldsifneq ($(KBUILD_SRC),)
1078fd54f502SMike Frysinger	@$(kecho) '  Using $(srctree) as source for kernel'
1079c955ccafSRoman Zippel	$(Q)if [ -f $(srctree)/.config -o -d $(srctree)/include/config ]; then \
10805369f550SMichal Marek		echo >&2 "  $(srctree) is not clean, please run 'make mrproper'"; \
10815369f550SMichal Marek		echo >&2 "  in the '$(srctree)' directory.";\
10821da177e4SLinus Torvalds		/bin/false; \
10831da177e4SLinus Torvalds	fi;
10841da177e4SLinus Torvaldsendif
10851da177e4SLinus Torvalds
1086c965b105SKees Cook# prepare2 creates a makefile if using a separate output directory.
1087c965b105SKees Cook# From this point forward, .config has been reprocessed, so any rules
1088c965b105SKees Cook# that need to depend on updated CONFIG_* values can be checked here.
1089c965b105SKees Cookprepare2: prepare3 prepare-compiler-check outputmakefile asm-generic
10901da177e4SLinus Torvalds
1091d183e6f5SDavid Howellsprepare1: prepare2 $(version_h) include/generated/utsrelease.h \
1092f7f16b77SSam Ravnborg                   include/config/auto.conf
10937bb9d092SSam Ravnborg	$(cmd_crmodverdir)
10941da177e4SLinus Torvalds
10956520fe55SH. Peter Anvinarchprepare: archheaders archscripts prepare1 scripts_basic
10965bb78269SSam Ravnborg
10976b90bd4bSEmese Revfyprepare0: archprepare gcc-plugins
10988d36a623SSam Ravnborg	$(Q)$(MAKE) $(build)=.
109986feeaa8SSam Ravnborg
11001da177e4SLinus Torvalds# All the preparing..
1101b9ab5ebbSJosh Poimboeufprepare: prepare0 prepare-objtool
1102b9ab5ebbSJosh Poimboeuf
11032c1f4f12SMasahiro Yamada# Support for using generic headers in asm-generic
11042c1f4f12SMasahiro YamadaPHONY += asm-generic uapi-asm-generic
11052c1f4f12SMasahiro Yamadaasm-generic: uapi-asm-generic
11062c1f4f12SMasahiro Yamada	$(Q)$(MAKE) -f $(srctree)/scripts/Makefile.asm-generic \
11072c1f4f12SMasahiro Yamada	            src=asm obj=arch/$(SRCARCH)/include/generated/asm
11082c1f4f12SMasahiro Yamadauapi-asm-generic:
11092c1f4f12SMasahiro Yamada	$(Q)$(MAKE) -f $(srctree)/scripts/Makefile.asm-generic \
11102c1f4f12SMasahiro Yamada	            src=uapi/asm obj=arch/$(SRCARCH)/include/generated/uapi/asm
11112c1f4f12SMasahiro Yamada
1112b9ab5ebbSJosh PoimboeufPHONY += prepare-objtool
11133b27a0c8SJosh Poimboeufprepare-objtool: $(objtool_target)
11141da177e4SLinus Torvalds
1115c965b105SKees Cook# Check for CONFIG flags that require compiler support. Abort the build
1116c965b105SKees Cook# after .config has been processed, but before the kernel build starts.
1117c965b105SKees Cook#
1118c965b105SKees Cook# For security-sensitive CONFIG options, we don't want to fallback and/or
1119c965b105SKees Cook# silently change which compiler flags will be used, since that leads to
1120c965b105SKees Cook# producing kernels with different security feature characteristics
1121c965b105SKees Cook# depending on the compiler used. (For example, "But I selected
1122c965b105SKees Cook# CC_STACKPROTECTOR_STRONG! Why did it build with _REGULAR?!")
1123c965b105SKees CookPHONY += prepare-compiler-check
1124c965b105SKees Cookprepare-compiler-check: FORCE
1125c965b105SKees Cook# Make sure compiler supports requested stack protector flag.
1126c965b105SKees Cookifdef stackp-name
112744c6dc94SKees Cook  # Warn about CONFIG_CC_STACKPROTECTOR_AUTO having found no option.
112844c6dc94SKees Cook  ifeq ($(stackp-flag),)
112944c6dc94SKees Cook	@echo CONFIG_CC_STACKPROTECTOR_$(stackp-name): \
113044c6dc94SKees Cook		  Compiler does not support any known stack-protector >&2
113144c6dc94SKees Cook  else
113244c6dc94SKees Cook  # Fail if specifically requested stack protector is missing.
1133c965b105SKees Cook  ifeq ($(call cc-option, $(stackp-flag)),)
1134c965b105SKees Cook	@echo Cannot use CONFIG_CC_STACKPROTECTOR_$(stackp-name): \
1135c965b105SKees Cook		  $(stackp-flag) not supported by compiler >&2 && exit 1
1136c965b105SKees Cook  endif
1137c965b105SKees Cook  endif
113844c6dc94SKees Cookendif
113944c6dc94SKees Cook# Make sure compiler does not have buggy stack-protector support. If a
114044c6dc94SKees Cook# specific stack-protector was requested, fail the build, otherwise warn.
11412b838392SKees Cookifdef stackp-broken
114244c6dc94SKees Cook  ifeq ($(stackp-name),AUTO)
114344c6dc94SKees Cook	@echo CONFIG_CC_STACKPROTECTOR_$(stackp-name): \
114444c6dc94SKees Cook                  $(stackp-flag) available but compiler is broken: disabling >&2
114544c6dc94SKees Cook  else
1146c965b105SKees Cook	@echo Cannot use CONFIG_CC_STACKPROTECTOR_$(stackp-name): \
1147c965b105SKees Cook                  $(stackp-flag) available but compiler is broken >&2 && exit 1
1148c965b105SKees Cook  endif
114944c6dc94SKees Cookendif
1150c965b105SKees Cook	@:
1151c965b105SKees Cook
11521da177e4SLinus Torvalds# Generate some files
11531da177e4SLinus Torvalds# ---------------------------------------------------------------------------
11541da177e4SLinus Torvalds
11551da177e4SLinus Torvalds# KERNELRELEASE can change from a few different places, meaning version.h
11561da177e4SLinus Torvalds# needs to be updated, so this check is forced on all builds
11571da177e4SLinus Torvalds
11581da177e4SLinus Torvaldsuts_len := 64
115963104eecSSam Ravnborgdefine filechk_utsrelease.h
11601da177e4SLinus Torvalds	if [ `echo -n "$(KERNELRELEASE)" | wc -c ` -gt $(uts_len) ]; then \
11611da177e4SLinus Torvalds	  echo '"$(KERNELRELEASE)" exceeds $(uts_len) characters' >&2;    \
11621da177e4SLinus Torvalds	  exit 1;                                                         \
11631da177e4SLinus Torvalds	fi;                                                               \
116463104eecSSam Ravnborg	(echo \#define UTS_RELEASE \"$(KERNELRELEASE)\";)
11651da177e4SLinus Torvaldsendef
11661da177e4SLinus Torvalds
116763104eecSSam Ravnborgdefine filechk_version.h
116863104eecSSam Ravnborg	(echo \#define LINUX_VERSION_CODE $(shell                         \
116978d3bb44SMichal Marek	expr $(VERSION) \* 65536 + 0$(PATCHLEVEL) \* 256 + 0$(SUBLEVEL)); \
117063104eecSSam Ravnborg	echo '#define KERNEL_VERSION(a,b,c) (((a) << 16) + ((b) << 8) + (c))';)
117163104eecSSam Ravnborgendef
117263104eecSSam Ravnborg
1173d183e6f5SDavid Howells$(version_h): $(srctree)/Makefile FORCE
11741da177e4SLinus Torvalds	$(call filechk,version.h)
1175223c24a7SMichal Marek	$(Q)rm -f $(old_version_h)
11761da177e4SLinus Torvalds
1177273b281fSSam Ravnborginclude/generated/utsrelease.h: include/config/kernel.release FORCE
117863104eecSSam Ravnborg	$(call filechk,utsrelease.h)
117963104eecSSam Ravnborg
1180179efcb4SVegard NossumPHONY += headerdep
1181179efcb4SVegard Nossumheaderdep:
11829663d989SPeter Foley	$(Q)find $(srctree)/include/ -name '*.h' | xargs --max-args 1 \
11839663d989SPeter Foley	$(srctree)/scripts/headerdep.pl -I$(srctree)/include
1184179efcb4SVegard Nossum
11851da177e4SLinus Torvalds# ---------------------------------------------------------------------------
11868d730cfbSDavid Woodhouse# Kernel headers
11878d730cfbSDavid Woodhouse
1188e6883b18SSam Ravnborg#Default location for installed headers
1189e6883b18SSam Ravnborgexport INSTALL_HDR_PATH = $(objtree)/usr
1190e6883b18SSam Ravnborg
11919d022c54SMasahiro Yamada# If we do an all arch process set dst to include/arch-$(SRCARCH)
11929d022c54SMasahiro Yamadahdr-dst = $(if $(KBUILD_HEADERS), dst=include/arch-$(SRCARCH), dst=include)
1193e6883b18SSam Ravnborg
1194052ad274SH. Peter AnvinPHONY += archheaders
1195052ad274SH. Peter Anvinarchheaders:
1196052ad274SH. Peter Anvin
11976520fe55SH. Peter AnvinPHONY += archscripts
11986520fe55SH. Peter Anvinarchscripts:
11996520fe55SH. Peter Anvin
1200e6883b18SSam RavnborgPHONY += __headers
1201a9d9a400SMasahiro Yamada__headers: $(version_h) scripts_basic uapi-asm-generic archheaders archscripts
1202e1b702cfSMike Waychison	$(Q)$(MAKE) $(build)=scripts build_unifdef
12036d716275SDavid Woodhouse
12046d716275SDavid WoodhousePHONY += headers_install_all
12052fb9b1bdSSam Ravnborgheaders_install_all:
12062fb9b1bdSSam Ravnborg	$(Q)$(CONFIG_SHELL) $(srctree)/scripts/headers.sh install
12076d716275SDavid Woodhouse
12088d730cfbSDavid WoodhousePHONY += headers_install
1209e6883b18SSam Ravnborgheaders_install: __headers
12109d022c54SMasahiro Yamada	$(if $(wildcard $(srctree)/arch/$(SRCARCH)/include/uapi/asm/Kbuild),, \
12112fb9b1bdSSam Ravnborg	  $(error Headers not exportable for the $(SRCARCH) architecture))
1212a8ff49a1SMasahiro Yamada	$(Q)$(MAKE) $(hdr-inst)=include/uapi dst=include
12139d022c54SMasahiro Yamada	$(Q)$(MAKE) $(hdr-inst)=arch/$(SRCARCH)/include/uapi $(hdr-dst)
12148d730cfbSDavid Woodhouse
12151f85712eSMike FrysingerPHONY += headers_check_all
12161f85712eSMike Frysingerheaders_check_all: headers_install_all
12172fb9b1bdSSam Ravnborg	$(Q)$(CONFIG_SHELL) $(srctree)/scripts/headers.sh check
12181f85712eSMike Frysinger
121968475359SDavid WoodhousePHONY += headers_check
122068475359SDavid Woodhouseheaders_check: headers_install
1221a8ff49a1SMasahiro Yamada	$(Q)$(MAKE) $(hdr-inst)=include/uapi dst=include HDRCHECK=1
12229d022c54SMasahiro Yamada	$(Q)$(MAKE) $(hdr-inst)=arch/$(SRCARCH)/include/uapi $(hdr-dst) HDRCHECK=1
122368475359SDavid Woodhouse
12248d730cfbSDavid Woodhouse# ---------------------------------------------------------------------------
12255a5da78bSShuah Khan# Kernel selftest
12265a5da78bSShuah Khan
12275a5da78bSShuah KhanPHONY += kselftest
12285a5da78bSShuah Khankselftest:
12292bc84526SShuah Khan	$(Q)$(MAKE) -C $(srctree)/tools/testing/selftests run_tests
12305a5da78bSShuah Khan
1231801d2e9fSShuah KhanPHONY += kselftest-clean
1232dcb825a9SWang Longkselftest-clean:
12332bc84526SShuah Khan	$(Q)$(MAKE) -C $(srctree)/tools/testing/selftests clean
1234dcb825a9SWang Long
12353d6dee7aSBamvor Jian ZhangPHONY += kselftest-merge
12363d6dee7aSBamvor Jian Zhangkselftest-merge:
12373d6dee7aSBamvor Jian Zhang	$(if $(wildcard $(objtree)/.config),, $(error No .config exists, config your kernel first!))
12383d6dee7aSBamvor Jian Zhang	$(Q)$(CONFIG_SHELL) $(srctree)/scripts/kconfig/merge_config.sh \
12393d6dee7aSBamvor Jian Zhang		-m $(objtree)/.config \
12403d6dee7aSBamvor Jian Zhang		$(srctree)/tools/testing/selftests/*/config
12413d6dee7aSBamvor Jian Zhang	+$(Q)$(MAKE) -f $(srctree)/Makefile olddefconfig
12423d6dee7aSBamvor Jian Zhang
12435a5da78bSShuah Khan# ---------------------------------------------------------------------------
12441da177e4SLinus Torvalds# Modules
12451da177e4SLinus Torvalds
12461da177e4SLinus Torvaldsifdef CONFIG_MODULES
12471da177e4SLinus Torvalds
12481da177e4SLinus Torvalds# By default, build modules as well
12491da177e4SLinus Torvalds
125073d1393eSMichal Marekall: modules
12511da177e4SLinus Torvalds
12521da177e4SLinus Torvalds# Build modules
1253551559e1STejun Heo#
1254551559e1STejun Heo# A module can be listed more than once in obj-m resulting in
1255551559e1STejun Heo# duplicate lines in modules.order files.  Those are removed
1256551559e1STejun Heo# using awk while concatenating to the final file.
12571da177e4SLinus Torvalds
12584f193362SPaul SmithPHONY += modules
12592da30e70SMichal Marekmodules: $(vmlinux-dirs) $(if $(KBUILD_BUILTIN),vmlinux) modules.builtin
1260551559e1STejun Heo	$(Q)$(AWK) '!x[$$0]++' $(vmlinux-dirs:%=$(objtree)/%/modules.order) > $(objtree)/modules.order
1261fd54f502SMike Frysinger	@$(kecho) '  Building modules, stage 2.';
1262b805aa0eSSam Ravnborg	$(Q)$(MAKE) -f $(srctree)/scripts/Makefile.modpost
12631da177e4SLinus Torvalds
1264a6c36632SMichal Marekmodules.builtin: $(vmlinux-dirs:%=%/modules.builtin)
1265a6c36632SMichal Marek	$(Q)$(AWK) '!x[$$0]++' $^ > $(objtree)/modules.builtin
1266a6c36632SMichal Marek
126773d1393eSMichal Marek%/modules.builtin: include/config/auto.conf
1268a6c36632SMichal Marek	$(Q)$(MAKE) $(modbuiltin)=$*
1269a6c36632SMichal Marek
12701da177e4SLinus Torvalds
12711da177e4SLinus Torvalds# Target to prepare building external modules
12724f193362SPaul SmithPHONY += modules_prepare
12735bb78269SSam Ravnborgmodules_prepare: prepare scripts
12741da177e4SLinus Torvalds
12751da177e4SLinus Torvalds# Target to install modules
12764f193362SPaul SmithPHONY += modules_install
12771da177e4SLinus Torvaldsmodules_install: _modinst_ _modinst_post
12781da177e4SLinus Torvalds
12794f193362SPaul SmithPHONY += _modinst_
12802da30e70SMichal Marek_modinst_:
12811da177e4SLinus Torvalds	@rm -rf $(MODLIB)/kernel
12821da177e4SLinus Torvalds	@rm -f $(MODLIB)/source
12831da177e4SLinus Torvalds	@mkdir -p $(MODLIB)/kernel
12848e9b4667SMasahiro Yamada	@ln -s $(abspath $(srctree)) $(MODLIB)/source
12851da177e4SLinus Torvalds	@if [ ! $(objtree) -ef  $(MODLIB)/build ]; then \
12861da177e4SLinus Torvalds		rm -f $(MODLIB)/build ; \
12877e1c0477SMichal Marek		ln -s $(CURDIR) $(MODLIB)/build ; \
12881da177e4SLinus Torvalds	fi
1289551559e1STejun Heo	@cp -f $(objtree)/modules.order $(MODLIB)/
1290bc081dd6SMichal Marek	@cp -f $(objtree)/modules.builtin $(MODLIB)/
1291b805aa0eSSam Ravnborg	$(Q)$(MAKE) -f $(srctree)/scripts/Makefile.modinst
12921da177e4SLinus Torvalds
129350a8ec31SSam Ravnborg# This depmod is only for convenience to give the initial
12941da177e4SLinus Torvalds# boot a modules.dep even before / is mounted read-write.  However the
12951da177e4SLinus Torvalds# boot script depmod is the master version.
12964f193362SPaul SmithPHONY += _modinst_post
12976d128e1eSLinus Torvalds_modinst_post: _modinst_
129850a8ec31SSam Ravnborg	$(call cmd,depmod)
12991da177e4SLinus Torvalds
1300d890f510SJosh Boyerifeq ($(CONFIG_MODULE_SIG), y)
1301d890f510SJosh BoyerPHONY += modules_sign
1302d890f510SJosh Boyermodules_sign:
1303d890f510SJosh Boyer	$(Q)$(MAKE) -f $(srctree)/scripts/Makefile.modsign
1304d890f510SJosh Boyerendif
1305d890f510SJosh Boyer
13061da177e4SLinus Torvaldselse # CONFIG_MODULES
13071da177e4SLinus Torvalds
13081da177e4SLinus Torvalds# Modules not configured
13091da177e4SLinus Torvalds# ---------------------------------------------------------------------------
13101da177e4SLinus Torvalds
1311612e47ceSMasahiro YamadaPHONY += modules modules_install
1312612e47ceSMasahiro Yamadamodules modules_install:
13135369f550SMichal Marek	@echo >&2
13145369f550SMichal Marek	@echo >&2 "The present kernel configuration has modules disabled."
13155369f550SMichal Marek	@echo >&2 "Type 'make config' and enable loadable module support."
13165369f550SMichal Marek	@echo >&2 "Then build a kernel with module support enabled."
13175369f550SMichal Marek	@echo >&2
13181da177e4SLinus Torvalds	@exit 1
13191da177e4SLinus Torvalds
13201da177e4SLinus Torvaldsendif # CONFIG_MODULES
13211da177e4SLinus Torvalds
13221da177e4SLinus Torvalds###
13231da177e4SLinus Torvalds# Cleaning is done on three levels.
13241da177e4SLinus Torvalds# make clean     Delete most generated files
13251da177e4SLinus Torvalds#                Leave enough to build external modules
13261da177e4SLinus Torvalds# make mrproper  Delete the current configuration, and all generated files
13271da177e4SLinus Torvalds# make distclean Remove editor backup files, patch leftover files and the like
13281da177e4SLinus Torvalds
13291da177e4SLinus Torvalds# Directories & files removed with 'make clean'
13301da177e4SLinus TorvaldsCLEAN_DIRS  += $(MODVERDIR)
13311da177e4SLinus Torvalds
13321da177e4SLinus Torvalds# Directories & files removed with 'make mrproper'
1333d8ecc5cdSSam RavnborgMRPROPER_DIRS  += include/config usr/include include/generated          \
133479192ca8SJason Cooper		  arch/*/include/generated .tmp_objdiff
1335278ae604SMasahiro YamadaMRPROPER_FILES += .config .config.old .version \
1336d5b71936SRusty Russell		  Module.symvers tags TAGS cscope* GPATH GTAGS GRTAGS GSYMS \
1337fb117949SDavid Woodhouse		  signing_key.pem signing_key.priv signing_key.x509	\
1338fb117949SDavid Woodhouse		  x509.genkey extra_certificates signing_key.x509.keyid	\
13393ee7b3faSJan Kiszka		  signing_key.x509.signer vmlinux-gdb.py
13401da177e4SLinus Torvalds
13411da177e4SLinus Torvalds# clean - Delete most, but leave enough to build external modules
13421da177e4SLinus Torvalds#
13431da177e4SLinus Torvaldsclean: rm-dirs  := $(CLEAN_DIRS)
13441da177e4SLinus Torvaldsclean: rm-files := $(CLEAN_FILES)
1345fb68d4beSGerard Snitselaarclean-dirs      := $(addprefix _clean_, . $(vmlinux-alldirs) Documentation samples)
13461da177e4SLinus Torvalds
1347bd1ee804SPawel MollPHONY += $(clean-dirs) clean archclean vmlinuxclean
13481da177e4SLinus Torvalds$(clean-dirs):
13491da177e4SLinus Torvalds	$(Q)$(MAKE) $(clean)=$(patsubst _clean_%,%,$@)
13501da177e4SLinus Torvalds
1351bd1ee804SPawel Mollvmlinuxclean:
1352bd1ee804SPawel Moll	$(Q)$(CONFIG_SHELL) $(srctree)/scripts/link-vmlinux.sh clean
1353fbe6e37dSNicholas Piggin	$(Q)$(if $(ARCH_POSTLINK), $(MAKE) -f $(ARCH_POSTLINK) clean)
1354bd1ee804SPawel Moll
1355bd1ee804SPawel Mollclean: archclean vmlinuxclean
13561da177e4SLinus Torvalds
13571da177e4SLinus Torvalds# mrproper - Delete all generated files, including .config
13581da177e4SLinus Torvalds#
13591da177e4SLinus Torvaldsmrproper: rm-dirs  := $(wildcard $(MRPROPER_DIRS))
13601da177e4SLinus Torvaldsmrproper: rm-files := $(wildcard $(MRPROPER_FILES))
1361cb43fb57SMauro Carvalho Chehabmrproper-dirs      := $(addprefix _mrproper_,scripts)
13621da177e4SLinus Torvalds
13634f193362SPaul SmithPHONY += $(mrproper-dirs) mrproper archmrproper
13641da177e4SLinus Torvalds$(mrproper-dirs):
13651da177e4SLinus Torvalds	$(Q)$(MAKE) $(clean)=$(patsubst _mrproper_%,%,$@)
13661da177e4SLinus Torvalds
13671da177e4SLinus Torvaldsmrproper: clean archmrproper $(mrproper-dirs)
13681da177e4SLinus Torvalds	$(call cmd,rmdirs)
13691da177e4SLinus Torvalds	$(call cmd,rmfiles)
13701da177e4SLinus Torvalds
13711da177e4SLinus Torvalds# distclean
13721da177e4SLinus Torvalds#
13734f193362SPaul SmithPHONY += distclean
13741da177e4SLinus Torvalds
13751da177e4SLinus Torvaldsdistclean: mrproper
13761da177e4SLinus Torvalds	@find $(srctree) $(RCS_FIND_IGNORE) \
13771da177e4SLinus Torvalds		\( -name '*.orig' -o -name '*.rej' -o -name '*~' \
1378f78271dfSMasahiro Yamada		-o -name '*.bak' -o -name '#*#' -o -name '*%' \
1379f78271dfSMasahiro Yamada		-o -name 'core' \) \
13801da177e4SLinus Torvalds		-type f -print | xargs rm -f
13811da177e4SLinus Torvalds
13821da177e4SLinus Torvalds
13831da177e4SLinus Torvalds# Packaging of the kernel to various formats
13841da177e4SLinus Torvalds# ---------------------------------------------------------------------------
13851da177e4SLinus Torvalds# rpm target kept for backward compatibility
1386c79624c1SMichal Marekpackage-dir	:= scripts/package
13871da177e4SLinus Torvalds
1388bafb6747SArnaldo Carvalho de Melo%src-pkg: FORCE
1389bafb6747SArnaldo Carvalho de Melo	$(Q)$(MAKE) $(build)=$(package-dir) $@
1390031ecc6dSZach Brown%pkg: include/config/kernel.release FORCE
13916c2133e1SSam Ravnborg	$(Q)$(MAKE) $(build)=$(package-dir) $@
1392ebaad7d3SMasahiro Yamadarpm: rpm-pkg
1393ebaad7d3SMasahiro Yamada	@echo "  WARNING: \"rpm\" target will be removed after Linux 4.18"
1394ebaad7d3SMasahiro Yamada	@echo "           Please use \"rpm-pkg\" instead."
13951da177e4SLinus Torvalds
13961da177e4SLinus Torvalds
13971da177e4SLinus Torvalds# Brief documentation of the typical targets used
13981da177e4SLinus Torvalds# ---------------------------------------------------------------------------
13991da177e4SLinus Torvalds
14005dffbe81SSegher Boessenkoolboards := $(wildcard $(srctree)/arch/$(SRCARCH)/configs/*_defconfig)
1401a1e7b7bbSKonstantin Khlebnikovboards := $(sort $(notdir $(boards)))
14025dffbe81SSegher Boessenkoolboard-dirs := $(dir $(wildcard $(srctree)/arch/$(SRCARCH)/configs/*/*_defconfig))
14035dffbe81SSegher Boessenkoolboard-dirs := $(sort $(notdir $(board-dirs:/=)))
14041da177e4SLinus Torvalds
1405fe69b420SMasahiro YamadaPHONY += help
14061da177e4SLinus Torvaldshelp:
14071da177e4SLinus Torvalds	@echo  'Cleaning targets:'
14085ea084efSSamuel Tardieu	@echo  '  clean		  - Remove most generated files but keep the config and'
14095cc8d246SJesper Juhl	@echo  '                    enough build support to build external modules'
14105ea084efSSamuel Tardieu	@echo  '  mrproper	  - Remove all generated files + config + various backup files'
14115cc8d246SJesper Juhl	@echo  '  distclean	  - mrproper + remove editor backup and patch files'
14121da177e4SLinus Torvalds	@echo  ''
14131da177e4SLinus Torvalds	@echo  'Configuration targets:'
14141da177e4SLinus Torvalds	@$(MAKE) -f $(srctree)/scripts/kconfig/Makefile help
14151da177e4SLinus Torvalds	@echo  ''
14161da177e4SLinus Torvalds	@echo  'Other generic targets:'
14171da177e4SLinus Torvalds	@echo  '  all		  - Build all targets marked with [*]'
14181da177e4SLinus Torvalds	@echo  '* vmlinux	  - Build the bare kernel'
14191da177e4SLinus Torvalds	@echo  '* modules	  - Build all modules'
14209cc5d74cSBodo Eggert	@echo  '  modules_install - Install all modules to INSTALL_MOD_PATH (default: /)'
14211da177e4SLinus Torvalds	@echo  '  dir/            - Build all files in dir and below'
142240ab87a4SWang YanQing	@echo  '  dir/file.[ois]  - Build specified target only'
1423433db3e2SVinícius Tinti	@echo  '  dir/file.ll     - Build the LLVM assembly file'
1424433db3e2SVinícius Tinti	@echo  '                    (requires compiler support for LLVM assembly generation)'
142562718979SJoe Perches	@echo  '  dir/file.lst    - Build specified mixed source/assembly target only'
142662718979SJoe Perches	@echo  '                    (requires a recent binutils and recent build (System.map))'
1427155ad605SSam Ravnborg	@echo  '  dir/file.ko     - Build module including final link'
1428c4d5ee67SRobert P. J. Day	@echo  '  modules_prepare - Set up for building external modules'
14291da177e4SLinus Torvalds	@echo  '  tags/TAGS	  - Generate tags file for editors'
14301da177e4SLinus Torvalds	@echo  '  cscope	  - Generate cscope index'
1431f4ed1009SJianbin Kang	@echo  '  gtags           - Generate GNU GLOBAL index'
14323f1d9a6cSMichal Marek	@echo  '  kernelrelease	  - Output the release version string (use with make -s)'
14333f1d9a6cSMichal Marek	@echo  '  kernelversion	  - Output the version stored in Makefile (use with make -s)'
14343f1d9a6cSMichal Marek	@echo  '  image_name	  - Output the image name (use with make -s)'
14352fb9b1bdSSam Ravnborg	@echo  '  headers_install - Install sanitised kernel headers to INSTALL_HDR_PATH'; \
143659df3230SGeert Uytterhoeven	 echo  '                    (default: $(INSTALL_HDR_PATH))'; \
14372fb9b1bdSSam Ravnborg	 echo  ''
143831b8cc80SRandy Dunlap	@echo  'Static analysers:'
14391da177e4SLinus Torvalds	@echo  '  checkstack      - Generate a list of stack hogs'
14401da177e4SLinus Torvalds	@echo  '  namespacecheck  - Name space analysis on compiled kernel'
1441aa025e7dSSam Ravnborg	@echo  '  versioncheck    - Sanity check on version.h usage'
1442ec2d987fSRandy Dunlap	@echo  '  includecheck    - Check for duplicate included header files'
1443295ac051SAdrian Bunk	@echo  '  export_report   - List the usages of all exported symbols'
1444179efcb4SVegard Nossum	@echo  '  headers_check   - Sanity check on exported headers'
144574425eeeSNicolas Palix	@echo  '  headerdep       - Detect inclusion cycles in headers'
14467f855fc8SMasahiro Yamada	@echo  '  coccicheck      - Check with Coccinelle'
144774425eeeSNicolas Palix	@echo  ''
144831b8cc80SRandy Dunlap	@echo  'Kernel selftest:'
14495a5da78bSShuah Khan	@echo  '  kselftest       - Build and run kernel selftest (run as root)'
14505a5da78bSShuah Khan	@echo  '                    Build, install, and boot kernel before'
14515a5da78bSShuah Khan	@echo  '                    running kselftest on it'
1452dcb825a9SWang Long	@echo  '  kselftest-clean - Remove all generated kselftest files'
1453bbfe63b6SRandy Dunlap	@echo  '  kselftest-merge - Merge all the config dependencies of kselftest to existing'
14543d6dee7aSBamvor Jian Zhang	@echo  '                    .config.'
14555a5da78bSShuah Khan	@echo  ''
145631b8cc80SRandy Dunlap	@echo 'Userspace tools targets:'
145731b8cc80SRandy Dunlap	@echo '  use "make tools/help"'
145831b8cc80SRandy Dunlap	@echo '  or  "cd tools; make help"'
145931b8cc80SRandy Dunlap	@echo  ''
14601da177e4SLinus Torvalds	@echo  'Kernel packaging:'
14616c2133e1SSam Ravnborg	@$(MAKE) $(build)=$(package-dir) help
14621da177e4SLinus Torvalds	@echo  ''
14631da177e4SLinus Torvalds	@echo  'Documentation targets:'
1464cb43fb57SMauro Carvalho Chehab	@$(MAKE) -f $(srctree)/Documentation/Makefile dochelp
14651da177e4SLinus Torvalds	@echo  ''
146601dee188SAndres Salomon	@echo  'Architecture specific targets ($(SRCARCH)):'
14671da177e4SLinus Torvalds	@$(if $(archhelp),$(archhelp),\
146801dee188SAndres Salomon		echo '  No architecture specific help defined for $(SRCARCH)')
14691da177e4SLinus Torvalds	@echo  ''
14701da177e4SLinus Torvalds	@$(if $(boards), \
14711da177e4SLinus Torvalds		$(foreach b, $(boards), \
14721da177e4SLinus Torvalds		printf "  %-24s - Build for %s\\n" $(b) $(subst _defconfig,,$(b));) \
14731da177e4SLinus Torvalds		echo '')
14745dffbe81SSegher Boessenkool	@$(if $(board-dirs), \
14755dffbe81SSegher Boessenkool		$(foreach b, $(board-dirs), \
14765dffbe81SSegher Boessenkool		printf "  %-16s - Show %s-specific targets\\n" help-$(b) $(b);) \
14775dffbe81SSegher Boessenkool		printf "  %-16s - Show all of the above\\n" help-boards; \
14785dffbe81SSegher Boessenkool		echo '')
14791da177e4SLinus Torvalds
14801da177e4SLinus Torvalds	@echo  '  make V=0|1 [targets] 0 => quiet build (default), 1 => verbose build'
148145d506bdSSam Ravnborg	@echo  '  make V=2   [targets] 2 => give reason for rebuild of target'
14821da177e4SLinus Torvalds	@echo  '  make O=dir [targets] Locate all output files in "dir", including .config'
14839ba26a72SCao jin	@echo  '  make C=1   [targets] Check re-compiled c source with $$CHECK (sparse by default)'
1484701842e3SDustin Kirkland	@echo  '  make C=2   [targets] Force check of all c source with $$CHECK'
1485af07ce3eSIngo Molnar	@echo  '  make RECORDMCOUNT_WARN=1 [targets] Warn about ignored mcount sections'
148628bc20dcSSam Ravnborg	@echo  '  make W=n   [targets] Enable extra gcc checks, n=1,2,3 where'
148728bc20dcSSam Ravnborg	@echo  '		1: warnings which may be relevant and do not occur too often'
148828bc20dcSSam Ravnborg	@echo  '		2: warnings which occur quite often but may still be relevant'
148928bc20dcSSam Ravnborg	@echo  '		3: more obscure warnings, can most likely be ignored'
1490a6de553dSMichal Marek	@echo  '		Multiple levels can be combined with W=12 or W=123'
14911da177e4SLinus Torvalds	@echo  ''
14921da177e4SLinus Torvalds	@echo  'Execute "make" or "make all" to build all targets marked with [*] '
14931da177e4SLinus Torvalds	@echo  'For further info see the ./README file'
14941da177e4SLinus Torvalds
14951da177e4SLinus Torvalds
14965dffbe81SSegher Boessenkoolhelp-board-dirs := $(addprefix help-,$(board-dirs))
14975dffbe81SSegher Boessenkool
14985dffbe81SSegher Boessenkoolhelp-boards: $(help-board-dirs)
14995dffbe81SSegher Boessenkool
1500fbae4d58SMichal Marekboards-per-dir = $(sort $(notdir $(wildcard $(srctree)/arch/$(SRCARCH)/configs/$*/*_defconfig)))
15015dffbe81SSegher Boessenkool
15025dffbe81SSegher Boessenkool$(help-board-dirs): help-%:
15035dffbe81SSegher Boessenkool	@echo  'Architecture specific targets ($(SRCARCH) $*):'
15045dffbe81SSegher Boessenkool	@$(if $(boards-per-dir), \
15055dffbe81SSegher Boessenkool		$(foreach b, $(boards-per-dir), \
15065dffbe81SSegher Boessenkool		printf "  %-24s - Build for %s\\n" $*/$(b) $(subst _defconfig,,$(b));) \
15075dffbe81SSegher Boessenkool		echo '')
15085dffbe81SSegher Boessenkool
15095dffbe81SSegher Boessenkool
15101da177e4SLinus Torvalds# Documentation targets
15111da177e4SLinus Torvalds# ---------------------------------------------------------------------------
1512e8939222SJani NikulaDOC_TARGETS := xmldocs latexdocs pdfdocs htmldocs epubdocs cleandocs \
1513e8939222SJani Nikula	       linkcheckdocs dochelp refcheckdocs
151422cba31bSJani NikulaPHONY += $(DOC_TARGETS)
151522cba31bSJani Nikula$(DOC_TARGETS): scripts_basic FORCE
1516cb43fb57SMauro Carvalho Chehab	$(Q)$(MAKE) $(build)=Documentation $@
15171da177e4SLinus Torvalds
15181da177e4SLinus Torvaldselse # KBUILD_EXTMOD
15191da177e4SLinus Torvalds
15201da177e4SLinus Torvalds###
15211da177e4SLinus Torvalds# External module support.
15221da177e4SLinus Torvalds# When building external modules the kernel used as basis is considered
15231da177e4SLinus Torvalds# read-only, and no consistency checks are made and the make
15241da177e4SLinus Torvalds# system is not used on the basis kernel. If updates are required
15251da177e4SLinus Torvalds# in the basis kernel ordinary make commands (without M=...) must
15261da177e4SLinus Torvalds# be used.
15271da177e4SLinus Torvalds#
15281da177e4SLinus Torvalds# The following are the only valid targets when building external
15291da177e4SLinus Torvalds# modules.
15301da177e4SLinus Torvalds# make M=dir clean     Delete all automatically generated files
15311da177e4SLinus Torvalds# make M=dir modules   Make all modules in specified dir
15321da177e4SLinus Torvalds# make M=dir	       Same as 'make M=dir modules'
15331da177e4SLinus Torvalds# make M=dir modules_install
1534070b98bfSSam Ravnborg#                      Install the modules built in the module directory
15351da177e4SLinus Torvalds#                      Assumes install directory is already created
15361da177e4SLinus Torvalds
15371da177e4SLinus Torvalds# We are always building modules
15381da177e4SLinus TorvaldsKBUILD_MODULES := 1
15394f193362SPaul SmithPHONY += crmodverdir
15401da177e4SLinus Torvaldscrmodverdir:
15417bb9d092SSam Ravnborg	$(cmd_crmodverdir)
15421da177e4SLinus Torvalds
15434f193362SPaul SmithPHONY += $(objtree)/Module.symvers
15441da177e4SLinus Torvalds$(objtree)/Module.symvers:
15451da177e4SLinus Torvalds	@test -e $(objtree)/Module.symvers || ( \
15461da177e4SLinus Torvalds	echo; \
15471da177e4SLinus Torvalds	echo "  WARNING: Symbol version dump $(objtree)/Module.symvers"; \
15481da177e4SLinus Torvalds	echo "           is missing; modules will have no dependencies and modversions."; \
15491da177e4SLinus Torvalds	echo )
15501da177e4SLinus Torvalds
15511da177e4SLinus Torvaldsmodule-dirs := $(addprefix _module_,$(KBUILD_EXTMOD))
15524f193362SPaul SmithPHONY += $(module-dirs) modules
15531da177e4SLinus Torvalds$(module-dirs): crmodverdir $(objtree)/Module.symvers
15541da177e4SLinus Torvalds	$(Q)$(MAKE) $(build)=$(patsubst _module_%,%,$@)
15551da177e4SLinus Torvalds
15561da177e4SLinus Torvaldsmodules: $(module-dirs)
1557fd54f502SMike Frysinger	@$(kecho) '  Building modules, stage 2.';
1558b805aa0eSSam Ravnborg	$(Q)$(MAKE) -f $(srctree)/scripts/Makefile.modpost
15591da177e4SLinus Torvalds
15604f193362SPaul SmithPHONY += modules_install
1561a67dc21aSSam Ravnborgmodules_install: _emodinst_ _emodinst_post
1562a67dc21aSSam Ravnborg
1563a67dc21aSSam Ravnborginstall-dir := $(if $(INSTALL_MOD_DIR),$(INSTALL_MOD_DIR),extra)
15644f193362SPaul SmithPHONY += _emodinst_
1565a67dc21aSSam Ravnborg_emodinst_:
1566a67dc21aSSam Ravnborg	$(Q)mkdir -p $(MODLIB)/$(install-dir)
1567b805aa0eSSam Ravnborg	$(Q)$(MAKE) -f $(srctree)/scripts/Makefile.modinst
15681da177e4SLinus Torvalds
15694f193362SPaul SmithPHONY += _emodinst_post
1570a67dc21aSSam Ravnborg_emodinst_post: _emodinst_
1571a67dc21aSSam Ravnborg	$(call cmd,depmod)
1572a67dc21aSSam Ravnborg
15731da177e4SLinus Torvaldsclean-dirs := $(addprefix _clean_,$(KBUILD_EXTMOD))
15741da177e4SLinus Torvalds
15754f193362SPaul SmithPHONY += $(clean-dirs) clean
15761da177e4SLinus Torvalds$(clean-dirs):
15771da177e4SLinus Torvalds	$(Q)$(MAKE) $(clean)=$(patsubst _clean_%,%,$@)
15781da177e4SLinus Torvalds
15791da177e4SLinus Torvaldsclean:	rm-dirs := $(MODVERDIR)
158088d7be03SMichal Marekclean: rm-files := $(KBUILD_EXTMOD)/Module.symvers
15811da177e4SLinus Torvalds
1582fe69b420SMasahiro YamadaPHONY += help
15831da177e4SLinus Torvaldshelp:
15841da177e4SLinus Torvalds	@echo  '  Building external modules.'
15851da177e4SLinus Torvalds	@echo  '  Syntax: make -C path/to/kernel/src M=$$PWD target'
15861da177e4SLinus Torvalds	@echo  ''
15871da177e4SLinus Torvalds	@echo  '  modules         - default target, build the module(s)'
15881da177e4SLinus Torvalds	@echo  '  modules_install - install the module'
15891da177e4SLinus Torvalds	@echo  '  clean           - remove generated files in module directory only'
15901da177e4SLinus Torvalds	@echo  ''
159106300b21SSam Ravnborg
159206300b21SSam Ravnborg# Dummies...
15934f193362SPaul SmithPHONY += prepare scripts
159406300b21SSam Ravnborgprepare: ;
159506300b21SSam Ravnborgscripts: ;
15961da177e4SLinus Torvaldsendif # KBUILD_EXTMOD
15971da177e4SLinus Torvalds
159888d7be03SMichal Marekclean: $(clean-dirs)
159988d7be03SMichal Marek	$(call cmd,rmdirs)
160088d7be03SMichal Marek	$(call cmd,rmfiles)
160143f67c98SKevin Cernekee	@find $(if $(KBUILD_EXTMOD), $(KBUILD_EXTMOD), .) $(RCS_FIND_IGNORE) \
1602ef46d9b3SMasahiro Yamada		\( -name '*.[aios]' -o -name '*.ko' -o -name '.*.cmd' \
160374ce1896SMasahiro Yamada		-o -name '*.ko.*' -o -name '*.dtb' -o -name '*.dtb.S' \
1604ef46d9b3SMasahiro Yamada		-o -name '*.dwo' -o -name '*.lst' \
1605d523b255SRasmus Villemoes		-o -name '*.su'  \
160688d7be03SMichal Marek		-o -name '.*.d' -o -name '.*.tmp' -o -name '*.mod.c' \
160788d7be03SMichal Marek		-o -name '*.symtypes' -o -name 'modules.order' \
160888d7be03SMichal Marek		-o -name modules.builtin -o -name '.tmp_*.o.*' \
16093298b690SDouglas Anderson		-o -name .cache.mk \
16106b90bd4bSEmese Revfy		-o -name '*.c.[012]*.*' \
1611433db3e2SVinícius Tinti		-o -name '*.ll' \
161288d7be03SMichal Marek		-o -name '*.gcno' \) -type f -print | xargs rm -f
161388d7be03SMichal Marek
16141da177e4SLinus Torvalds# Generate tags for editors
16151da177e4SLinus Torvalds# ---------------------------------------------------------------------------
1616a680eedcSSam Ravnborgquiet_cmd_tags = GEN     $@
1617a680eedcSSam Ravnborg      cmd_tags = $(CONFIG_SHELL) $(srctree)/scripts/tags.sh $@
16181da177e4SLinus Torvalds
1619f4ed1009SJianbin Kangtags TAGS cscope gtags: FORCE
16201da177e4SLinus Torvalds	$(call cmd,tags)
16211da177e4SLinus Torvalds
16221da177e4SLinus Torvalds# Scripts to check various things for consistency
16231da177e4SLinus Torvalds# ---------------------------------------------------------------------------
16241da177e4SLinus Torvalds
1625279f3dd3SPeter FoleyPHONY += includecheck versioncheck coccicheck namespacecheck export_report
1626279f3dd3SPeter Foley
16271da177e4SLinus Torvaldsincludecheck:
1628436f876cSPeter Foley	find $(srctree)/* $(RCS_FIND_IGNORE) \
16291da177e4SLinus Torvalds		-name '*.[hcS]' -type f -print | sort \
163080007434SGeert Uytterhoeven		| xargs $(PERL) -w $(srctree)/scripts/checkincludes.pl
16311da177e4SLinus Torvalds
16321da177e4SLinus Torvaldsversioncheck:
16332ee2d292SPeter Foley	find $(srctree)/* $(RCS_FIND_IGNORE) \
16341da177e4SLinus Torvalds		-name '*.[hcS]' -type f -print | sort \
163580007434SGeert Uytterhoeven		| xargs $(PERL) -w $(srctree)/scripts/checkversion.pl
16361da177e4SLinus Torvalds
163774425eeeSNicolas Palixcoccicheck:
163874425eeeSNicolas Palix	$(Q)$(CONFIG_SHELL) $(srctree)/scripts/$@
163974425eeeSNicolas Palix
16401da177e4SLinus Torvaldsnamespacecheck:
16411da177e4SLinus Torvalds	$(PERL) $(srctree)/scripts/namespace.pl
16421da177e4SLinus Torvalds
1643295ac051SAdrian Bunkexport_report:
1644295ac051SAdrian Bunk	$(PERL) $(srctree)/scripts/export_report.pl
1645295ac051SAdrian Bunk
16461da177e4SLinus Torvaldsendif #ifeq ($(config-targets),1)
16471da177e4SLinus Torvaldsendif #ifeq ($(mixed-targets),1)
16481da177e4SLinus Torvalds
1649c398ff00SMike MarciniszynPHONY += checkstack kernelrelease kernelversion image_name
1650e3ccf6e3SJeff Dike
1651011e3a9aSJeff Dike# UML needs a little special treatment here.  It wants to use the host
1652011e3a9aSJeff Dike# toolchain, so needs $(SUBARCH) passed to checkstack.pl.  Everyone
1653011e3a9aSJeff Dike# else wants $(ARCH), including people doing cross-builds, which means
1654011e3a9aSJeff Dike# that $(SUBARCH) doesn't work here.
1655011e3a9aSJeff Dikeifeq ($(ARCH), um)
1656011e3a9aSJeff DikeCHECKSTACK_ARCH := $(SUBARCH)
1657011e3a9aSJeff Dikeelse
1658011e3a9aSJeff DikeCHECKSTACK_ARCH := $(ARCH)
1659011e3a9aSJeff Dikeendif
16601da177e4SLinus Torvaldscheckstack:
16611da177e4SLinus Torvalds	$(OBJDUMP) -d vmlinux $$(find . -name '*.ko') | \
1662011e3a9aSJeff Dike	$(PERL) $(src)/scripts/checkstack.pl $(CHECKSTACK_ARCH)
16631da177e4SLinus Torvalds
16647b8ea53dSAmerigo Wangkernelrelease:
16657b8ea53dSAmerigo Wang	@echo "$(KERNELVERSION)$$($(CONFIG_SHELL) $(srctree)/scripts/setlocalversion $(srctree))"
166601ab1788SAmerigo Wang
1667cb58455cSSam Ravnborgkernelversion:
16682244cbd8SSam Ravnborg	@echo $(KERNELVERSION)
16691da177e4SLinus Torvalds
1670c398ff00SMike Marciniszynimage_name:
1671c398ff00SMike Marciniszyn	@echo $(KBUILD_IMAGE)
1672c398ff00SMike Marciniszyn
1673ea01fa9fSBorislav Petkov# Clear a bunch of variables before executing the submake
1674ea01fa9fSBorislav Petkovtools/: FORCE
1675bf35182fSDavid Howells	$(Q)mkdir -p $(objtree)/tools
16768e9b4667SMasahiro Yamada	$(Q)$(MAKE) LDFLAGS= MAKEFLAGS="$(tools_silent) $(filter --j% -j,$(MAKEFLAGS))" O=$(abspath $(objtree)) subdir=tools -C $(src)/tools/
1677ea01fa9fSBorislav Petkov
1678ea01fa9fSBorislav Petkovtools/%: FORCE
1679bf35182fSDavid Howells	$(Q)mkdir -p $(objtree)/tools
16808e9b4667SMasahiro Yamada	$(Q)$(MAKE) LDFLAGS= MAKEFLAGS="$(tools_silent) $(filter --j% -j,$(MAKEFLAGS))" O=$(abspath $(objtree)) subdir=tools -C $(src)/tools/ $*
1681ea01fa9fSBorislav Petkov
168206300b21SSam Ravnborg# Single targets
168306300b21SSam Ravnborg# ---------------------------------------------------------------------------
1684bc2546a6SSam Ravnborg# Single targets are compatible with:
1685e1b8513dSRobert P. J. Day# - build with mixed source and output
1686bc2546a6SSam Ravnborg# - build with separate output dir 'make O=...'
1687bc2546a6SSam Ravnborg# - external modules
1688bc2546a6SSam Ravnborg#
1689bc2546a6SSam Ravnborg#  target-dir => where to store outputfile
1690bc2546a6SSam Ravnborg#  build-dir  => directory in kernel source tree to use
169106300b21SSam Ravnborg
169206300b21SSam Ravnborgifeq ($(KBUILD_EXTMOD),)
1693aa360879SSam Ravnborg        build-dir  = $(patsubst %/,%,$(dir $@))
1694bc2546a6SSam Ravnborg        target-dir = $(dir $@)
169506300b21SSam Ravnborgelse
169606300b21SSam Ravnborg        zap-slash=$(filter-out .,$(patsubst %/,%,$(dir $@)))
1697bc2546a6SSam Ravnborg        build-dir  = $(KBUILD_EXTMOD)$(if $(zap-slash),/$(zap-slash))
1698bc2546a6SSam Ravnborg        target-dir = $(if $(KBUILD_EXTMOD),$(dir $<),$(dir $@))
169906300b21SSam Ravnborgendif
170006300b21SSam Ravnborg
1701bc2546a6SSam Ravnborg%.s: %.c prepare scripts FORCE
1702bc2546a6SSam Ravnborg	$(Q)$(MAKE) $(build)=$(build-dir) $(target-dir)$(notdir $@)
1703bc2546a6SSam Ravnborg%.i: %.c prepare scripts FORCE
1704bc2546a6SSam Ravnborg	$(Q)$(MAKE) $(build)=$(build-dir) $(target-dir)$(notdir $@)
1705bc2546a6SSam Ravnborg%.o: %.c prepare scripts FORCE
1706bc2546a6SSam Ravnborg	$(Q)$(MAKE) $(build)=$(build-dir) $(target-dir)$(notdir $@)
1707bc2546a6SSam Ravnborg%.lst: %.c prepare scripts FORCE
1708bc2546a6SSam Ravnborg	$(Q)$(MAKE) $(build)=$(build-dir) $(target-dir)$(notdir $@)
1709bc2546a6SSam Ravnborg%.s: %.S prepare scripts FORCE
1710bc2546a6SSam Ravnborg	$(Q)$(MAKE) $(build)=$(build-dir) $(target-dir)$(notdir $@)
1711bc2546a6SSam Ravnborg%.o: %.S prepare scripts FORCE
1712bc2546a6SSam Ravnborg	$(Q)$(MAKE) $(build)=$(build-dir) $(target-dir)$(notdir $@)
171315fde675SAndreas Gruenbacher%.symtypes: %.c prepare scripts FORCE
171415fde675SAndreas Gruenbacher	$(Q)$(MAKE) $(build)=$(build-dir) $(target-dir)$(notdir $@)
1715433db3e2SVinícius Tinti%.ll: %.c prepare scripts FORCE
1716433db3e2SVinícius Tinti	$(Q)$(MAKE) $(build)=$(build-dir) $(target-dir)$(notdir $@)
1717bc2546a6SSam Ravnborg
1718bc2546a6SSam Ravnborg# Modules
171931110ebbSSam Ravnborg/: prepare scripts FORCE
172031110ebbSSam Ravnborg	$(cmd_crmodverdir)
172131110ebbSSam Ravnborg	$(Q)$(MAKE) KBUILD_MODULES=$(if $(CONFIG_MODULES),1) \
172231110ebbSSam Ravnborg	$(build)=$(build-dir)
17238e2faea8SPeter Foley# Make sure the latest headers are built for Documentation
1724ddea05faSArnd BergmannDocumentation/ samples/: headers_install
172531110ebbSSam Ravnborg%/: prepare scripts FORCE
17267bb9d092SSam Ravnborg	$(cmd_crmodverdir)
172706300b21SSam Ravnborg	$(Q)$(MAKE) KBUILD_MODULES=$(if $(CONFIG_MODULES),1) \
1728bc2546a6SSam Ravnborg	$(build)=$(build-dir)
1729bc2546a6SSam Ravnborg%.ko: prepare scripts FORCE
17307bb9d092SSam Ravnborg	$(cmd_crmodverdir)
173106300b21SSam Ravnborg	$(Q)$(MAKE) KBUILD_MODULES=$(if $(CONFIG_MODULES),1)   \
1732bc2546a6SSam Ravnborg	$(build)=$(build-dir) $(@:.ko=.o)
1733b805aa0eSSam Ravnborg	$(Q)$(MAKE) -f $(srctree)/scripts/Makefile.modpost
173406300b21SSam Ravnborg
17351da177e4SLinus Torvalds# FIXME Should go into a make.lib or something
17361da177e4SLinus Torvalds# ===========================================================================
17371da177e4SLinus Torvalds
17381da177e4SLinus Torvaldsquiet_cmd_rmdirs = $(if $(wildcard $(rm-dirs)),CLEAN   $(wildcard $(rm-dirs)))
17391da177e4SLinus Torvalds      cmd_rmdirs = rm -rf $(rm-dirs)
17401da177e4SLinus Torvalds
17411da177e4SLinus Torvaldsquiet_cmd_rmfiles = $(if $(wildcard $(rm-files)),CLEAN   $(wildcard $(rm-files)))
17421da177e4SLinus Torvalds      cmd_rmfiles = rm -f $(rm-files)
17431da177e4SLinus Torvalds
1744bc3c26feSUwe Kleine-König# Run depmod only if we have System.map and depmod is executable
174550a8ec31SSam Ravnborgquiet_cmd_depmod = DEPMOD  $(KERNELRELEASE)
1746569658ddSMichal Marek      cmd_depmod = $(CONFIG_SHELL) $(srctree)/scripts/depmod.sh $(DEPMOD) \
1747b92021b0SRusty Russell                   $(KERNELRELEASE) "$(patsubst y,_,$(CONFIG_HAVE_UNDERSCORE_SYMBOL_PREFIX))"
174850a8ec31SSam Ravnborg
17497bb9d092SSam Ravnborg# Create temporary dir for module support files
1750ab19f879SSam Ravnborg# clean it up only when building all modules
1751ab19f879SSam Ravnborgcmd_crmodverdir = $(Q)mkdir -p $(MODVERDIR) \
1752ab19f879SSam Ravnborg                  $(if $(KBUILD_MODULES),; rm -f $(MODVERDIR)/*)
17531da177e4SLinus Torvalds
17541da177e4SLinus Torvalds# read all saved command lines
17551da177e4SLinus Torvalds
17562982c953SMasahiro Yamadacmd_files := $(wildcard .*.cmd $(foreach f,$(sort $(targets)),$(dir $(f)).$(notdir $(f)).cmd))
17571da177e4SLinus Torvalds
17581da177e4SLinus Torvaldsifneq ($(cmd_files),)
17591da177e4SLinus Torvalds  $(cmd_files): ;	# Do not try to update included dependency files
17601da177e4SLinus Torvalds  include $(cmd_files)
17611da177e4SLinus Torvaldsendif
17621da177e4SLinus Torvalds
17631da177e4SLinus Torvaldsendif	# skip-makefile
17641da177e4SLinus Torvalds
17654f193362SPaul SmithPHONY += FORCE
17661da177e4SLinus TorvaldsFORCE:
17674f193362SPaul Smith
17684f193362SPaul Smith# Declare the contents of the .PHONY variable as phony.  We keep that
1769fe8d0a41SKirill Smelkov# information in a variable so we can use it in if_changed and friends.
17704f193362SPaul Smith.PHONY: $(PHONY)
1771