11da177e4SLinus TorvaldsVERSION = 2 21da177e4SLinus TorvaldsPATCHLEVEL = 6 328d0325cSLinus TorvaldsSUBLEVEL = 31 474fca6a4SLinus TorvaldsEXTRAVERSION = 559a3759dSLinus TorvaldsNAME = Man-Eating Seals of Antiquity 61da177e4SLinus Torvalds 71da177e4SLinus Torvalds# *DOCUMENTATION* 81da177e4SLinus Torvalds# To see a list of typical targets execute "make help" 91da177e4SLinus Torvalds# More info can be located in ./README 101da177e4SLinus Torvalds# Comments in this file are targeted only to the developer, do not 111da177e4SLinus Torvalds# expect to learn how to build the kernel reading this file. 121da177e4SLinus Torvalds 1315964864SOleg Verych# Do not: 1415964864SOleg Verych# o use make's built-in rules and variables 15d384e35aSLinus Nilsson# (this increases performance and avoids hard-to-debug behaviour); 1615964864SOleg Verych# o print "Entering directory ..."; 1715964864SOleg VerychMAKEFLAGS += -rR --no-print-directory 181da177e4SLinus Torvalds 191da177e4SLinus Torvalds# We are using a recursive build, so we need to do a little thinking 201da177e4SLinus Torvalds# to get the ordering right. 211da177e4SLinus Torvalds# 221da177e4SLinus Torvalds# Most importantly: sub-Makefiles should only ever modify files in 231da177e4SLinus Torvalds# their own directory. If in some directory we have a dependency on 241da177e4SLinus Torvalds# a file in another dir (which doesn't happen often, but it's often 251da177e4SLinus Torvalds# unavoidable when linking the built-in.o targets which finally 261da177e4SLinus Torvalds# turn into vmlinux), we will call a sub make in that other dir, and 271da177e4SLinus Torvalds# after that we are sure that everything which is in that other dir 281da177e4SLinus Torvalds# is now up to date. 291da177e4SLinus Torvalds# 301da177e4SLinus Torvalds# The only cases where we need to modify files which have global 311da177e4SLinus Torvalds# effects are thus separated out and done before the recursive 321da177e4SLinus Torvalds# descending is started. They are now explicitly listed as the 331da177e4SLinus Torvalds# prepare rule. 341da177e4SLinus Torvalds 351da177e4SLinus Torvalds# To put more focus on warnings, be less verbose as default 361da177e4SLinus Torvalds# Use 'make V=1' to see the full commands 371da177e4SLinus Torvalds 381da177e4SLinus Torvaldsifeq ("$(origin V)", "command line") 391da177e4SLinus Torvalds KBUILD_VERBOSE = $(V) 401da177e4SLinus Torvaldsendif 411da177e4SLinus Torvaldsifndef KBUILD_VERBOSE 421da177e4SLinus Torvalds KBUILD_VERBOSE = 0 431da177e4SLinus Torvaldsendif 441da177e4SLinus Torvalds 451c7bafe7SRobert P. J. Day# Call a source code checker (by default, "sparse") as part of the 461c7bafe7SRobert P. J. Day# C compilation. 471c7bafe7SRobert P. J. Day# 481c7bafe7SRobert P. J. Day# Use 'make C=1' to enable checking of only re-compiled files. 491c7bafe7SRobert P. J. Day# Use 'make C=2' to enable checking of *all* source files, regardless 501c7bafe7SRobert P. J. Day# of whether they are re-compiled or not. 511c7bafe7SRobert P. J. Day# 521c7bafe7SRobert P. J. Day# See the file "Documentation/sparse.txt" for more details, including 531c7bafe7SRobert P. J. Day# where to get the "sparse" utility. 541da177e4SLinus Torvalds 551da177e4SLinus Torvaldsifeq ("$(origin C)", "command line") 561da177e4SLinus Torvalds KBUILD_CHECKSRC = $(C) 571da177e4SLinus Torvaldsendif 581da177e4SLinus Torvaldsifndef KBUILD_CHECKSRC 591da177e4SLinus Torvalds KBUILD_CHECKSRC = 0 601da177e4SLinus Torvaldsendif 611da177e4SLinus Torvalds 621da177e4SLinus Torvalds# Use make M=dir to specify directory of external module to build 631da177e4SLinus Torvalds# Old syntax make ... SUBDIRS=$PWD is still supported 641da177e4SLinus Torvalds# Setting the environment variable KBUILD_EXTMOD take precedence 651da177e4SLinus Torvaldsifdef SUBDIRS 661da177e4SLinus Torvalds KBUILD_EXTMOD ?= $(SUBDIRS) 671da177e4SLinus Torvaldsendif 68b8b0618cSCheng Renquan 691da177e4SLinus Torvaldsifeq ("$(origin M)", "command line") 701da177e4SLinus Torvalds KBUILD_EXTMOD := $(M) 711da177e4SLinus Torvaldsendif 721da177e4SLinus Torvalds 731da177e4SLinus Torvalds# kbuild supports saving output files in a separate directory. 741da177e4SLinus Torvalds# To locate output files in a separate directory two syntaxes are supported. 751da177e4SLinus Torvalds# In both cases the working directory must be the root of the kernel src. 761da177e4SLinus Torvalds# 1) O= 771da177e4SLinus Torvalds# Use "make O=dir/to/store/output/files/" 781da177e4SLinus Torvalds# 791da177e4SLinus Torvalds# 2) Set KBUILD_OUTPUT 801da177e4SLinus Torvalds# Set the environment variable KBUILD_OUTPUT to point to the directory 811da177e4SLinus Torvalds# where the output files shall be placed. 821da177e4SLinus Torvalds# export KBUILD_OUTPUT=dir/to/store/output/files/ 831da177e4SLinus Torvalds# make 841da177e4SLinus Torvalds# 851da177e4SLinus Torvalds# The O= assignment takes precedence over the KBUILD_OUTPUT environment 861da177e4SLinus Torvalds# variable. 871da177e4SLinus Torvalds 881da177e4SLinus Torvalds 891da177e4SLinus Torvalds# KBUILD_SRC is set on invocation of make in OBJ directory 901da177e4SLinus Torvalds# KBUILD_SRC is not intended to be used by the regular user (for now) 911da177e4SLinus Torvaldsifeq ($(KBUILD_SRC),) 921da177e4SLinus Torvalds 931da177e4SLinus Torvalds# OK, Make called in directory where kernel src resides 941da177e4SLinus Torvalds# Do we want to locate output files in a separate directory? 951da177e4SLinus Torvaldsifeq ("$(origin O)", "command line") 961da177e4SLinus Torvalds KBUILD_OUTPUT := $(O) 971da177e4SLinus Torvaldsendif 981da177e4SLinus Torvalds 991da177e4SLinus Torvalds# That's our default target when none is given on the command line 1004f193362SPaul SmithPHONY := _all 1011da177e4SLinus Torvalds_all: 1021da177e4SLinus Torvalds 1031cacc9abSSam Ravnborg# Cancel implicit rules on top Makefile 1041cacc9abSSam Ravnborg$(CURDIR)/Makefile Makefile: ; 1051cacc9abSSam Ravnborg 1061da177e4SLinus Torvaldsifneq ($(KBUILD_OUTPUT),) 1071da177e4SLinus Torvalds# Invoke a second make in the output directory, passing relevant variables 1081da177e4SLinus Torvalds# check that the output directory actually exists 1091da177e4SLinus Torvaldssaved-output := $(KBUILD_OUTPUT) 1101da177e4SLinus TorvaldsKBUILD_OUTPUT := $(shell cd $(KBUILD_OUTPUT) && /bin/pwd) 1111da177e4SLinus Torvalds$(if $(KBUILD_OUTPUT),, \ 1121da177e4SLinus Torvalds $(error output directory "$(saved-output)" does not exist)) 1131da177e4SLinus Torvalds 1140b35786dSMilton MillerPHONY += $(MAKECMDGOALS) sub-make 1150b35786dSMilton Miller 1161cacc9abSSam Ravnborg$(filter-out _all sub-make $(CURDIR)/Makefile, $(MAKECMDGOALS)) _all: sub-make 1170b35786dSMilton Miller $(Q)@: 1180b35786dSMilton Miller 1190b35786dSMilton Millersub-make: FORCE 1201da177e4SLinus Torvalds $(if $(KBUILD_VERBOSE:1=),@)$(MAKE) -C $(KBUILD_OUTPUT) \ 12123a45e2cSSam Ravnborg KBUILD_SRC=$(CURDIR) \ 1220b35786dSMilton Miller KBUILD_EXTMOD="$(KBUILD_EXTMOD)" -f $(CURDIR)/Makefile \ 1230b35786dSMilton Miller $(filter-out _all sub-make,$(MAKECMDGOALS)) 1241da177e4SLinus Torvalds 1251da177e4SLinus Torvalds# Leave processing to above invocation of make 1261da177e4SLinus Torvaldsskip-makefile := 1 1271da177e4SLinus Torvaldsendif # ifneq ($(KBUILD_OUTPUT),) 1281da177e4SLinus Torvaldsendif # ifeq ($(KBUILD_SRC),) 1291da177e4SLinus Torvalds 1301da177e4SLinus Torvalds# We process the rest of the Makefile if this is the final invocation of make 1311da177e4SLinus Torvaldsifeq ($(skip-makefile),) 1321da177e4SLinus Torvalds 1331da177e4SLinus Torvalds# If building an external module we do not care about the all: rule 1341da177e4SLinus Torvalds# but instead _all depend on modules 1354f193362SPaul SmithPHONY += all 1361da177e4SLinus Torvaldsifeq ($(KBUILD_EXTMOD),) 1371da177e4SLinus Torvalds_all: all 1381da177e4SLinus Torvaldselse 1391da177e4SLinus Torvalds_all: modules 1401da177e4SLinus Torvaldsendif 1411da177e4SLinus Torvalds 1421da177e4SLinus Torvaldssrctree := $(if $(KBUILD_SRC),$(KBUILD_SRC),$(CURDIR)) 1431da177e4SLinus Torvaldsobjtree := $(CURDIR) 1441da177e4SLinus Torvaldssrc := $(srctree) 1451da177e4SLinus Torvaldsobj := $(objtree) 1461da177e4SLinus Torvalds 1470f558c33SMattia DongiliVPATH := $(srctree)$(if $(KBUILD_EXTMOD),:$(KBUILD_EXTMOD)) 1481da177e4SLinus Torvalds 14911294235SAmerigo Wangexport srctree objtree VPATH 1501da177e4SLinus Torvalds 1511da177e4SLinus Torvalds 1521da177e4SLinus Torvalds# SUBARCH tells the usermode build what the underlying arch is. That is set 1531da177e4SLinus Torvalds# first, and if a usermode build is happening, the "ARCH=um" on the command 1541da177e4SLinus Torvalds# line overrides the setting of ARCH below. If a native build is happening, 1551da177e4SLinus Torvalds# then ARCH is assigned, getting whatever value it gets normally, and 1561da177e4SLinus Torvalds# SUBARCH is subsequently ignored. 1571da177e4SLinus Torvalds 1581da177e4SLinus TorvaldsSUBARCH := $(shell uname -m | sed -e s/i.86/i386/ -e s/sun4u/sparc64/ \ 1591da177e4SLinus Torvalds -e s/arm.*/arm/ -e s/sa110/arm/ \ 16039990b5eSLinus Torvalds -e s/s390x/s390/ -e s/parisc64/parisc/ \ 161236b1957SPaul Mundt -e s/ppc.*/powerpc/ -e s/mips.*/mips/ \ 1623cc000b5SPaul Mundt -e s/sh[234].*/sh/ ) 1631da177e4SLinus Torvalds 1641da177e4SLinus Torvalds# Cross compiling and selecting different set of gcc/bin-utils 1651da177e4SLinus Torvalds# --------------------------------------------------------------------------- 1661da177e4SLinus Torvalds# 1671da177e4SLinus Torvalds# When performing cross compilation for other architectures ARCH shall be set 1681da177e4SLinus Torvalds# to the target architecture. (See arch/* for the possibilities). 1691da177e4SLinus Torvalds# ARCH can be set during invocation of make: 1701da177e4SLinus Torvalds# make ARCH=ia64 1711da177e4SLinus Torvalds# Another way is to have ARCH set in the environment. 1721da177e4SLinus Torvalds# The default ARCH is the host where make is executed. 1731da177e4SLinus Torvalds 1741da177e4SLinus Torvalds# CROSS_COMPILE specify the prefix used for all executables used 1751da177e4SLinus Torvalds# during compilation. Only gcc and related bin-utils executables 1761da177e4SLinus Torvalds# are prefixed with $(CROSS_COMPILE). 1771da177e4SLinus Torvalds# CROSS_COMPILE can be set on the command line 1781da177e4SLinus Torvalds# make CROSS_COMPILE=ia64-linux- 1791da177e4SLinus Torvalds# Alternatively CROSS_COMPILE can be set in the environment. 1801da177e4SLinus Torvalds# Default value for CROSS_COMPILE is not to prefix executables 1811da177e4SLinus Torvalds# Note: Some architectures assign CROSS_COMPILE in their arch/*/Makefile 18257554334SSam Ravnborg# 18357554334SSam Ravnborg# To force ARCH and CROSS_COMPILE settings include kernel.* files 18457554334SSam Ravnborg# in the kernel tree - do not patch this file. 1854ce6efedSSam Ravnborgexport KBUILD_BUILDHOST := $(SUBARCH) 18657554334SSam Ravnborg 18757554334SSam Ravnborg# Kbuild save the ARCH and CROSS_COMPILE setting in kernel.* files. 18857554334SSam Ravnborg# Restore these settings and check that user did not specify 18957554334SSam Ravnborg# conflicting values. 19057554334SSam Ravnborg 19157554334SSam Ravnborgsaved_arch := $(shell cat include/generated/kernel.arch 2> /dev/null) 19257554334SSam Ravnborgsaved_cross := $(shell cat include/generated/kernel.cross 2> /dev/null) 19357554334SSam Ravnborg 19457554334SSam Ravnborgifneq ($(CROSS_COMPILE),) 19557554334SSam Ravnborg ifneq ($(saved_cross),) 19657554334SSam Ravnborg ifneq ($(CROSS_COMPILE),$(saved_cross)) 19757554334SSam Ravnborg $(error CROSS_COMPILE changed from \ 19857554334SSam Ravnborg "$(saved_cross)" to \ 19957554334SSam Ravnborg to "$(CROSS_COMPILE)". \ 20057554334SSam Ravnborg Use "make mrproper" to fix it up) 20157554334SSam Ravnborg endif 20257554334SSam Ravnborg endif 20357554334SSam Ravnborgelse 20457554334SSam Ravnborg CROSS_COMPILE := $(saved_cross) 20557554334SSam Ravnborgendif 20657554334SSam Ravnborg 20757554334SSam Ravnborgifneq ($(ARCH),) 20857554334SSam Ravnborg ifneq ($(saved_arch),) 20957554334SSam Ravnborg ifneq ($(saved_arch),$(ARCH)) 21057554334SSam Ravnborg $(error ARCH changed from \ 21157554334SSam Ravnborg "$(saved_arch)" to "$(ARCH)". \ 21257554334SSam Ravnborg Use "make mrproper" to fix it up) 21357554334SSam Ravnborg endif 21457554334SSam Ravnborg endif 21557554334SSam Ravnborgelse 21657554334SSam Ravnborg ifneq ($(saved_arch),) 21757554334SSam Ravnborg ARCH := $(saved_arch) 21857554334SSam Ravnborg else 21957554334SSam Ravnborg ARCH := $(SUBARCH) 22057554334SSam Ravnborg endif 22157554334SSam Ravnborgendif 2221da177e4SLinus Torvalds 2231da177e4SLinus Torvalds# Architecture as present in compile.h 2241da177e4SLinus TorvaldsUTS_MACHINE := $(ARCH) 2256752ed90SThomas GleixnerSRCARCH := $(ARCH) 2261da177e4SLinus Torvalds 227d746d647SSam Ravnborg# Additional ARCH settings for x86 228d746d647SSam Ravnborgifeq ($(ARCH),i386) 229d746d647SSam Ravnborg SRCARCH := x86 230d746d647SSam Ravnborgendif 231d746d647SSam Ravnborgifeq ($(ARCH),x86_64) 232d746d647SSam Ravnborg SRCARCH := x86 233d746d647SSam Ravnborgendif 23474b469f2SSam Ravnborg 2355e538790SSam Ravnborg# Additional ARCH settings for sparc 236a439fe51SSam Ravnborgifeq ($(ARCH),sparc64) 2375e538790SSam Ravnborg SRCARCH := sparc 238a439fe51SSam Ravnborgendif 2392fb9b1bdSSam Ravnborg 2403cc000b5SPaul Mundt# Additional ARCH settings for sh 2413cc000b5SPaul Mundtifeq ($(ARCH),sh64) 2423cc000b5SPaul Mundt SRCARCH := sh 2433cc000b5SPaul Mundtendif 2443cc000b5SPaul Mundt 2455e538790SSam Ravnborg# Where to locate arch specific headers 2465e538790SSam Ravnborghdr-arch := $(SRCARCH) 2475e538790SSam Ravnborg 24849148020SSam Ravnborgifeq ($(ARCH),m68knommu) 24949148020SSam Ravnborg hdr-arch := m68k 25049148020SSam Ravnborgendif 25149148020SSam Ravnborg 25214cdd3c4SRoman ZippelKCONFIG_CONFIG ?= .config 25314cdd3c4SRoman Zippel 2541da177e4SLinus Torvalds# SHELL used by kbuild 2551da177e4SLinus TorvaldsCONFIG_SHELL := $(shell if [ -x "$$BASH" ]; then echo $$BASH; \ 2561da177e4SLinus Torvalds else if [ -x /bin/bash ]; then echo /bin/bash; \ 2571da177e4SLinus Torvalds else echo sh; fi ; fi) 2581da177e4SLinus Torvalds 2591da177e4SLinus TorvaldsHOSTCC = gcc 2601da177e4SLinus TorvaldsHOSTCXX = g++ 2611da177e4SLinus TorvaldsHOSTCFLAGS = -Wall -Wstrict-prototypes -O2 -fomit-frame-pointer 2621da177e4SLinus TorvaldsHOSTCXXFLAGS = -O2 2631da177e4SLinus Torvalds 2641da177e4SLinus Torvalds# Decide whether to build built-in, modular, or both. 2651da177e4SLinus Torvalds# Normally, just do built-in. 2661da177e4SLinus Torvalds 2671da177e4SLinus TorvaldsKBUILD_MODULES := 2681da177e4SLinus TorvaldsKBUILD_BUILTIN := 1 2691da177e4SLinus Torvalds 2701da177e4SLinus Torvalds# If we have only "make modules", don't compile built-in objects. 2711da177e4SLinus Torvalds# When we're building modules with modversions, we need to consider 2721da177e4SLinus Torvalds# the built-in objects during the descend as well, in order to 2731da177e4SLinus Torvalds# make sure the checksums are up to date before we record them. 2741da177e4SLinus Torvalds 2751da177e4SLinus Torvaldsifeq ($(MAKECMDGOALS),modules) 2761da177e4SLinus Torvalds KBUILD_BUILTIN := $(if $(CONFIG_MODVERSIONS),1) 2771da177e4SLinus Torvaldsendif 2781da177e4SLinus Torvalds 2791da177e4SLinus Torvalds# If we have "make <whatever> modules", compile modules 2801da177e4SLinus Torvalds# in addition to whatever we do anyway. 2811da177e4SLinus Torvalds# Just "make" or "make all" shall build modules as well 2821da177e4SLinus Torvalds 2831da177e4SLinus Torvaldsifneq ($(filter all _all modules,$(MAKECMDGOALS)),) 2841da177e4SLinus Torvalds KBUILD_MODULES := 1 2851da177e4SLinus Torvaldsendif 2861da177e4SLinus Torvalds 2871da177e4SLinus Torvaldsifeq ($(MAKECMDGOALS),) 2881da177e4SLinus Torvalds KBUILD_MODULES := 1 2891da177e4SLinus Torvaldsendif 2901da177e4SLinus Torvalds 291e579d351SSam Ravnborgexport KBUILD_MODULES KBUILD_BUILTIN 2921da177e4SLinus Torvaldsexport KBUILD_CHECKSRC KBUILD_SRC KBUILD_EXTMOD 2931da177e4SLinus Torvalds 2941da177e4SLinus Torvalds# Beautify output 2951da177e4SLinus Torvalds# --------------------------------------------------------------------------- 2961da177e4SLinus Torvalds# 2971da177e4SLinus Torvalds# Normally, we echo the whole command before executing it. By making 2981da177e4SLinus Torvalds# that echo $($(quiet)$(cmd)), we now have the possibility to set 2991da177e4SLinus Torvalds# $(quiet) to choose other forms of output instead, e.g. 3001da177e4SLinus Torvalds# 3011da177e4SLinus Torvalds# quiet_cmd_cc_o_c = Compiling $(RELDIR)/$@ 3021da177e4SLinus Torvalds# cmd_cc_o_c = $(CC) $(c_flags) -c -o $@ $< 3031da177e4SLinus Torvalds# 3041da177e4SLinus Torvalds# If $(quiet) is empty, the whole command will be printed. 3051da177e4SLinus Torvalds# If it is set to "quiet_", only the short version will be printed. 306070b98bfSSam Ravnborg# If it is set to "silent_", nothing will be printed at all, since 3071da177e4SLinus Torvalds# the variable $(silent_cmd_cc_o_c) doesn't exist. 3081da177e4SLinus Torvalds# 309a58a414fSAdrian Bunk# A simple variant is to prefix commands with $(Q) - that's useful 3101da177e4SLinus Torvalds# for commands that shall be hidden in non-verbose mode. 3111da177e4SLinus Torvalds# 3121da177e4SLinus Torvalds# $(Q)ln $@ :< 3131da177e4SLinus Torvalds# 3141da177e4SLinus Torvalds# If KBUILD_VERBOSE equals 0 then the above command will be hidden. 3151da177e4SLinus Torvalds# If KBUILD_VERBOSE equals 1 then the above command is displayed. 3161da177e4SLinus Torvalds 3171da177e4SLinus Torvaldsifeq ($(KBUILD_VERBOSE),1) 3181da177e4SLinus Torvalds quiet = 3191da177e4SLinus Torvalds Q = 3201da177e4SLinus Torvaldselse 3211da177e4SLinus Torvalds quiet=quiet_ 3221da177e4SLinus Torvalds Q = @ 3231da177e4SLinus Torvaldsendif 3241da177e4SLinus Torvalds 3251da177e4SLinus Torvalds# If the user is running make -s (silent mode), suppress echoing of 3261da177e4SLinus Torvalds# commands 3271da177e4SLinus Torvalds 3281da177e4SLinus Torvaldsifneq ($(findstring s,$(MAKEFLAGS)),) 3291da177e4SLinus Torvalds quiet=silent_ 3301da177e4SLinus Torvaldsendif 3311da177e4SLinus Torvalds 3321da177e4SLinus Torvaldsexport quiet Q KBUILD_VERBOSE 3331da177e4SLinus Torvalds 3341da177e4SLinus Torvalds 3351da177e4SLinus Torvalds# Look for make include files relative to root of kernel src 3361da177e4SLinus TorvaldsMAKEFLAGS += --include-dir=$(srctree) 3371da177e4SLinus Torvalds 3381cacc9abSSam Ravnborg# We need some generic definitions (do not try to remake the file). 3391cacc9abSSam Ravnborg$(srctree)/scripts/Kbuild.include: ; 3402a691470SSam Ravnborginclude $(srctree)/scripts/Kbuild.include 3418ec4b4ffSSam Ravnborg 3421da177e4SLinus Torvalds# Make variables (CC, etc...) 3431da177e4SLinus Torvalds 3441da177e4SLinus TorvaldsAS = $(CROSS_COMPILE)as 3451da177e4SLinus TorvaldsLD = $(CROSS_COMPILE)ld 3461da177e4SLinus TorvaldsCC = $(CROSS_COMPILE)gcc 3471da177e4SLinus TorvaldsCPP = $(CC) -E 3481da177e4SLinus TorvaldsAR = $(CROSS_COMPILE)ar 3491da177e4SLinus TorvaldsNM = $(CROSS_COMPILE)nm 3501da177e4SLinus TorvaldsSTRIP = $(CROSS_COMPILE)strip 3511da177e4SLinus TorvaldsOBJCOPY = $(CROSS_COMPILE)objcopy 3521da177e4SLinus TorvaldsOBJDUMP = $(CROSS_COMPILE)objdump 3531da177e4SLinus TorvaldsAWK = awk 3541da177e4SLinus TorvaldsGENKSYMS = scripts/genksyms/genksyms 355caa27b66SSam RavnborgINSTALLKERNEL := installkernel 3561da177e4SLinus TorvaldsDEPMOD = /sbin/depmod 3571da177e4SLinus TorvaldsKALLSYMS = scripts/kallsyms 3581da177e4SLinus TorvaldsPERL = perl 3591da177e4SLinus TorvaldsCHECK = sparse 3601da177e4SLinus Torvalds 36180a7d1d9SHannes EderCHECKFLAGS := -D__linux__ -Dlinux -D__STDC__ -Dunix -D__unix__ \ 36280a7d1d9SHannes Eder -Wbitwise -Wno-return-void $(CF) 3631da177e4SLinus TorvaldsMODFLAGS = -DMODULE 3641da177e4SLinus TorvaldsCFLAGS_MODULE = $(MODFLAGS) 3651da177e4SLinus TorvaldsAFLAGS_MODULE = $(MODFLAGS) 366405d967dSTejun HeoLDFLAGS_MODULE = -T $(srctree)/scripts/module-common.lds 3671da177e4SLinus TorvaldsCFLAGS_KERNEL = 3681da177e4SLinus TorvaldsAFLAGS_KERNEL = 3692521f2c2SPeter OberparleiterCFLAGS_GCOV = -fprofile-arcs -ftest-coverage 3701da177e4SLinus Torvalds 3711da177e4SLinus Torvalds 3721da177e4SLinus Torvalds# Use LINUXINCLUDE when you must reference the include/ directory. 3731da177e4SLinus Torvalds# Needed to be compatible with the O= option 3741da177e4SLinus TorvaldsLINUXINCLUDE := -Iinclude \ 3752dd34b48SRussell King $(if $(KBUILD_SRC),-Iinclude2 -I$(srctree)/include) \ 3765e4786f7SSam Ravnborg -I$(srctree)/arch/$(hdr-arch)/include \ 377e623a3b8SZachary Amsden -include include/linux/autoconf.h 3781da177e4SLinus Torvalds 379d8672b40SSam RavnborgKBUILD_CPPFLAGS := -D__KERNEL__ 3801da177e4SLinus Torvalds 381a0f97e06SSam RavnborgKBUILD_CFLAGS := -Wall -Wundef -Wstrict-prototypes -Wno-trigraphs \ 38294bed2a9SDave Jones -fno-strict-aliasing -fno-common \ 383a8735821SFloris Kraak -Werror-implicit-function-declaration \ 384a3ca86aeSEugene Teo -Wno-format-security \ 385a3ca86aeSEugene Teo -fno-delete-null-pointer-checks 386222d394dSSam RavnborgKBUILD_AFLAGS := -D__ASSEMBLY__ 3871da177e4SLinus Torvalds 388f1d28fb0SRoman Zippel# Read KERNELRELEASE from include/config/kernel.release (if it exists) 389f1d28fb0SRoman ZippelKERNELRELEASE = $(shell cat include/config/kernel.release 2> /dev/null) 3902244cbd8SSam RavnborgKERNELVERSION = $(VERSION).$(PATCHLEVEL).$(SUBLEVEL)$(EXTRAVERSION) 391cb58455cSSam Ravnborg 392070b98bfSSam Ravnborgexport VERSION PATCHLEVEL SUBLEVEL KERNELRELEASE KERNELVERSION 39380ef88d6SSam Ravnborgexport ARCH SRCARCH CONFIG_SHELL HOSTCC HOSTCFLAGS CROSS_COMPILE AS LD CC 394caa27b66SSam Ravnborgexport CPP AR NM STRIP OBJCOPY OBJDUMP 395caa27b66SSam Ravnborgexport MAKE AWK GENKSYMS INSTALLKERNEL PERL UTS_MACHINE 396070b98bfSSam Ravnborgexport HOSTCXX HOSTCXXFLAGS LDFLAGS_MODULE CHECK CHECKFLAGS 3971da177e4SLinus Torvalds 39806c5040cSSam Ravnborgexport KBUILD_CPPFLAGS NOSTDINC_FLAGS LINUXINCLUDE OBJCOPYFLAGS LDFLAGS 3992521f2c2SPeter Oberparleiterexport KBUILD_CFLAGS CFLAGS_KERNEL CFLAGS_MODULE CFLAGS_GCOV 400222d394dSSam Ravnborgexport KBUILD_AFLAGS AFLAGS_KERNEL AFLAGS_MODULE 4011da177e4SLinus Torvalds 4021da177e4SLinus Torvalds# When compiling out-of-tree modules, put MODVERDIR in the module 4031da177e4SLinus Torvalds# tree rather than in the kernel tree. The kernel tree might 4041da177e4SLinus Torvalds# even be read-only. 4051da177e4SLinus Torvaldsexport MODVERDIR := $(if $(KBUILD_EXTMOD),$(firstword $(KBUILD_EXTMOD))/).tmp_versions 4061da177e4SLinus Torvalds 4071da177e4SLinus Torvalds# Files to ignore in find ... statements 4081da177e4SLinus Torvalds 409406119f4STrond MyklebustRCS_FIND_IGNORE := \( -name SCCS -o -name BitKeeper -o -name .svn -o -name CVS -o -name .pc -o -name .hg -o -name .git \) -prune -o 410406119f4STrond Myklebustexport RCS_TAR_IGNORE := --exclude SCCS --exclude BitKeeper --exclude .svn --exclude CVS --exclude .pc --exclude .hg --exclude .git 4111da177e4SLinus Torvalds 4121da177e4SLinus Torvalds# =========================================================================== 4131da177e4SLinus Torvalds# Rules shared between *config targets and build targets 4141da177e4SLinus Torvalds 4151da177e4SLinus Torvalds# Basic helpers built in scripts/ 4164f193362SPaul SmithPHONY += scripts_basic 4171da177e4SLinus Torvaldsscripts_basic: 4181da177e4SLinus Torvalds $(Q)$(MAKE) $(build)=scripts/basic 4191da177e4SLinus Torvalds 420cd05e6bdSJan Beulich# To avoid any implicit rule to kick in, define an empty command. 421cd05e6bdSJan Beulichscripts/basic/%: scripts_basic ; 422cd05e6bdSJan Beulich 4234f193362SPaul SmithPHONY += outputmakefile 424fd5f0cd6SJan Beulich# outputmakefile generates a Makefile in the output directory, if using a 425fd5f0cd6SJan Beulich# separate output directory. This allows convenient use of make in the 426fd5f0cd6SJan Beulich# output directory. 4271da177e4SLinus Torvaldsoutputmakefile: 428fd5f0cd6SJan Beulichifneq ($(KBUILD_SRC),) 42992979997SAndi Kleen $(Q)ln -fsn $(srctree) source 430fd5f0cd6SJan Beulich $(Q)$(CONFIG_SHELL) $(srctree)/scripts/mkmakefile \ 431fd5f0cd6SJan Beulich $(srctree) $(objtree) $(VERSION) $(PATCHLEVEL) 432fd5f0cd6SJan Beulichendif 4331da177e4SLinus Torvalds 4341da177e4SLinus Torvalds# To make sure we do not include .config for any of the *config targets 4351da177e4SLinus Torvalds# catch them early, and hand them over to scripts/kconfig/Makefile 4361da177e4SLinus Torvalds# It is allowed to specify more targets when calling make, including 4371da177e4SLinus Torvalds# mixing *config targets and build targets. 4381da177e4SLinus Torvalds# For example 'make oldconfig all'. 4391da177e4SLinus Torvalds# Detect when mixed targets is specified, and make a second invocation 4401da177e4SLinus Torvalds# of make so .config is not included in this case either (for *config). 4411da177e4SLinus Torvalds 4423eb3c740SRoman Zippelno-dot-config-targets := clean mrproper distclean \ 443c30a02e0SRoman Zippel cscope TAGS tags help %docs check% \ 4443eb3c740SRoman Zippel include/linux/version.h headers_% \ 4453eb3c740SRoman Zippel kernelrelease kernelversion 4461da177e4SLinus Torvalds 4471da177e4SLinus Torvaldsconfig-targets := 0 4481da177e4SLinus Torvaldsmixed-targets := 0 4491da177e4SLinus Torvaldsdot-config := 1 4501da177e4SLinus Torvalds 4511da177e4SLinus Torvaldsifneq ($(filter $(no-dot-config-targets), $(MAKECMDGOALS)),) 4521da177e4SLinus Torvalds ifeq ($(filter-out $(no-dot-config-targets), $(MAKECMDGOALS)),) 4531da177e4SLinus Torvalds dot-config := 0 4541da177e4SLinus Torvalds endif 4551da177e4SLinus Torvaldsendif 4561da177e4SLinus Torvalds 4571da177e4SLinus Torvaldsifeq ($(KBUILD_EXTMOD),) 4581da177e4SLinus Torvalds ifneq ($(filter config %config,$(MAKECMDGOALS)),) 4591da177e4SLinus Torvalds config-targets := 1 4601da177e4SLinus Torvalds ifneq ($(filter-out config %config,$(MAKECMDGOALS)),) 4611da177e4SLinus Torvalds mixed-targets := 1 4621da177e4SLinus Torvalds endif 4631da177e4SLinus Torvalds endif 4641da177e4SLinus Torvaldsendif 4651da177e4SLinus Torvalds 4661da177e4SLinus Torvaldsifeq ($(mixed-targets),1) 4671da177e4SLinus Torvalds# =========================================================================== 4681da177e4SLinus Torvalds# We're called with mixed targets (*config and build targets). 4691da177e4SLinus Torvalds# Handle them one by one. 4701da177e4SLinus Torvalds 4711da177e4SLinus Torvalds%:: FORCE 4721da177e4SLinus Torvalds $(Q)$(MAKE) -C $(srctree) KBUILD_SRC= $@ 4731da177e4SLinus Torvalds 4741da177e4SLinus Torvaldselse 4751da177e4SLinus Torvaldsifeq ($(config-targets),1) 4761da177e4SLinus Torvalds# =========================================================================== 4771da177e4SLinus Torvalds# *config targets only - make sure prerequisites are updated, and descend 4781da177e4SLinus Torvalds# in scripts/kconfig to make the *config target 4791da177e4SLinus Torvalds 4801da177e4SLinus Torvalds# Read arch specific Makefile to set KBUILD_DEFCONFIG as needed. 4811da177e4SLinus Torvalds# KBUILD_DEFCONFIG may point out an alternative default configuration 4821da177e4SLinus Torvalds# used for 'make defconfig' 48374b469f2SSam Ravnborginclude $(srctree)/arch/$(SRCARCH)/Makefile 48461bee204SAl Viroexport KBUILD_DEFCONFIG KBUILD_KCONFIG 4851da177e4SLinus Torvalds 48657554334SSam Ravnborg# save ARCH & CROSS_COMPILE settings 48757554334SSam Ravnborg$(shell mkdir -p include/generated && \ 48857554334SSam Ravnborg echo $(ARCH) > include/generated/kernel.arch && \ 48957554334SSam Ravnborg echo $(CROSS_COMPILE) > include/generated/kernel.cross) 49057554334SSam Ravnborg 49131110ebbSSam Ravnborgconfig: scripts_basic outputmakefile FORCE 49231110ebbSSam Ravnborg $(Q)mkdir -p include/linux include/config 49331110ebbSSam Ravnborg $(Q)$(MAKE) $(build)=scripts/kconfig $@ 49431110ebbSSam Ravnborg 49531110ebbSSam Ravnborg%config: scripts_basic outputmakefile FORCE 496c955ccafSRoman Zippel $(Q)mkdir -p include/linux include/config 4971da177e4SLinus Torvalds $(Q)$(MAKE) $(build)=scripts/kconfig $@ 4981da177e4SLinus Torvalds 4991da177e4SLinus Torvaldselse 5001da177e4SLinus Torvalds# =========================================================================== 5011da177e4SLinus Torvalds# Build targets only - this includes vmlinux, arch specific targets, clean 5021da177e4SLinus Torvalds# targets and others. In general all targets except *config targets. 5031da177e4SLinus Torvalds 5041da177e4SLinus Torvaldsifeq ($(KBUILD_EXTMOD),) 5051da177e4SLinus Torvalds# Additional helpers built in scripts/ 5061da177e4SLinus Torvalds# Carefully list dependencies so we do not try to build scripts twice 507070b98bfSSam Ravnborg# in parallel 5084f193362SPaul SmithPHONY += scripts 5092e3646e5SRoman Zippelscripts: scripts_basic include/config/auto.conf 5101da177e4SLinus Torvalds $(Q)$(MAKE) $(build)=$(@) 5111da177e4SLinus Torvalds 5121da177e4SLinus Torvalds# Objects we will link into vmlinux / subdirs we need to visit 5131da177e4SLinus Torvaldsinit-y := init/ 5144d2acfbfSDavid Woodhousedrivers-y := drivers/ sound/ firmware/ 5151da177e4SLinus Torvaldsnet-y := net/ 5161da177e4SLinus Torvaldslibs-y := lib/ 5171da177e4SLinus Torvaldscore-y := usr/ 5181da177e4SLinus Torvaldsendif # KBUILD_EXTMOD 5191da177e4SLinus Torvalds 5201da177e4SLinus Torvaldsifeq ($(dot-config),1) 5219ee4e336SSam Ravnborg# Read in config 5229ee4e336SSam Ravnborg-include include/config/auto.conf 5231da177e4SLinus Torvalds 5249ee4e336SSam Ravnborgifeq ($(KBUILD_EXTMOD),) 5251da177e4SLinus Torvalds# Read in dependencies to all Kconfig* files, make sure to run 5261da177e4SLinus Torvalds# oldconfig if changes are detected. 527c955ccafSRoman Zippel-include include/config/auto.conf.cmd 5281da177e4SLinus Torvalds 5291da177e4SLinus Torvalds# To avoid any implicit rule to kick in, define an empty command 53014cdd3c4SRoman Zippel$(KCONFIG_CONFIG) include/config/auto.conf.cmd: ; 5311da177e4SLinus Torvalds 532c955ccafSRoman Zippel# If .config is newer than include/config/auto.conf, someone tinkered 533752625cfSSam Ravnborg# with it and forgot to run make oldconfig. 534070b98bfSSam Ravnborg# if auto.conf.cmd is missing then we are probably in a cleaned tree so 535752625cfSSam Ravnborg# we execute the config step to be sure to catch updated Kconfig files 53614cdd3c4SRoman Zippelinclude/config/auto.conf: $(KCONFIG_CONFIG) include/config/auto.conf.cmd 5371da177e4SLinus Torvalds $(Q)$(MAKE) -f $(srctree)/Makefile silentoldconfig 5381da177e4SLinus Torvaldselse 5399ee4e336SSam Ravnborg# external modules needs include/linux/autoconf.h and include/config/auto.conf 5409ee4e336SSam Ravnborg# but do not care if they are up-to-date. Use auto.conf to trigger the test 5419ee4e336SSam RavnborgPHONY += include/config/auto.conf 5429ee4e336SSam Ravnborg 5439ee4e336SSam Ravnborginclude/config/auto.conf: 5449ee4e336SSam Ravnborg $(Q)test -e include/linux/autoconf.h -a -e $@ || ( \ 5459ee4e336SSam Ravnborg echo; \ 5469ee4e336SSam Ravnborg echo " ERROR: Kernel configuration is invalid."; \ 5479ee4e336SSam Ravnborg echo " include/linux/autoconf.h or $@ are missing."; \ 5489ee4e336SSam Ravnborg echo " Run 'make oldconfig && make prepare' on kernel src to fix it."; \ 5499ee4e336SSam Ravnborg echo; \ 5509ee4e336SSam Ravnborg /bin/false) 5519ee4e336SSam Ravnborg 5529ee4e336SSam Ravnborgendif # KBUILD_EXTMOD 553c955ccafSRoman Zippel 5541da177e4SLinus Torvaldselse 5551da177e4SLinus Torvalds# Dummy target needed, because used as prerequisite 556c955ccafSRoman Zippelinclude/config/auto.conf: ; 5579ee4e336SSam Ravnborgendif # $(dot-config) 5581da177e4SLinus Torvalds 5591da177e4SLinus Torvalds# The all: target is the default when no target is given on the 5601da177e4SLinus Torvalds# command line. 5611da177e4SLinus Torvalds# This allow a user to issue only 'make' to build a kernel including modules 562070b98bfSSam Ravnborg# Defaults vmlinux but it is usually overridden in the arch makefile 5631da177e4SLinus Torvaldsall: vmlinux 5641da177e4SLinus Torvalds 5651da177e4SLinus Torvaldsifdef CONFIG_CC_OPTIMIZE_FOR_SIZE 566a0f97e06SSam RavnborgKBUILD_CFLAGS += -Os 5671da177e4SLinus Torvaldselse 568a0f97e06SSam RavnborgKBUILD_CFLAGS += -O2 5691da177e4SLinus Torvaldsendif 5701da177e4SLinus Torvalds 571bef5b54bSRalf Baechleinclude $(srctree)/arch/$(SRCARCH)/Makefile 572bef5b54bSRalf Baechle 57308f67461SMike Frysingerifneq ($(CONFIG_FRAME_WARN),0) 57435bb5b1eSAndi KleenKBUILD_CFLAGS += $(call cc-option,-Wframe-larger-than=${CONFIG_FRAME_WARN}) 57535bb5b1eSAndi Kleenendif 57635bb5b1eSAndi Kleen 577e06b8b98SSam Ravnborg# Force gcc to behave correct even for buggy distributions 5785d707e9cSTejun Heoifndef CONFIG_CC_STACKPROTECTOR 579e06b8b98SSam RavnborgKBUILD_CFLAGS += $(call cc-option, -fno-stack-protector) 5805d707e9cSTejun Heoendif 581e06b8b98SSam Ravnborg 5821da177e4SLinus Torvaldsifdef CONFIG_FRAME_POINTER 583a0f97e06SSam RavnborgKBUILD_CFLAGS += -fno-omit-frame-pointer -fno-optimize-sibling-calls 5841da177e4SLinus Torvaldselse 585a0f97e06SSam RavnborgKBUILD_CFLAGS += -fomit-frame-pointer 5861da177e4SLinus Torvaldsendif 5871da177e4SLinus Torvalds 5881da177e4SLinus Torvaldsifdef CONFIG_DEBUG_INFO 589a0f97e06SSam RavnborgKBUILD_CFLAGS += -g 590222d394dSSam RavnborgKBUILD_AFLAGS += -gdwarf-2 5911da177e4SLinus Torvaldsendif 5921da177e4SLinus Torvalds 593606576ceSSteven Rostedtifdef CONFIG_FUNCTION_TRACER 59416444a8aSArnaldo Carvalho de MeloKBUILD_CFLAGS += -pg 59516444a8aSArnaldo Carvalho de Meloendif 59616444a8aSArnaldo Carvalho de Melo 59791341d4bSSam Ravnborg# We trigger additional mismatches with less inlining 59891341d4bSSam Ravnborgifdef CONFIG_DEBUG_SECTION_MISMATCH 59991341d4bSSam RavnborgKBUILD_CFLAGS += $(call cc-option, -fno-inline-functions-called-once) 60091341d4bSSam Ravnborgendif 60191341d4bSSam Ravnborg 602e8e69931SSam Ravnborg# arch Makefile may override CC so keep this after arch Makefile is included 603e8f5bdb0SRik van RielNOSTDINC_FLAGS += -nostdinc -isystem $(shell $(CC) -print-file-name=include) 604e8e69931SSam RavnborgCHECKFLAGS += $(NOSTDINC_FLAGS) 605e8e69931SSam Ravnborg 6061da177e4SLinus Torvalds# warn about C99 declaration after statement 607a0f97e06SSam RavnborgKBUILD_CFLAGS += $(call cc-option,-Wdeclaration-after-statement,) 6081da177e4SLinus Torvalds 609070b98bfSSam Ravnborg# disable pointer signed / unsigned warnings in gcc 4.0 610a0f97e06SSam RavnborgKBUILD_CFLAGS += $(call cc-option,-Wno-pointer-sign,) 6111da177e4SLinus Torvalds 612fe8d0a41SKirill Smelkov# disable invalid "can't wrap" optimizations for signed / pointers 613a137802eSLinus TorvaldsKBUILD_CFLAGS += $(call cc-option,-fno-strict-overflow) 614d0115552SLinus Torvalds 61500308649SKyle McMartin# revert to pre-gcc-4.4 behaviour of .eh_frame 61600308649SKyle McMartinKBUILD_CFLAGS += $(call cc-option,-fno-dwarf2-cfi-asm) 61700308649SKyle McMartin 618*8f7f5c9fSAndi Kleen# conserve stack if available 619*8f7f5c9fSAndi KleenKBUILD_CFLAGS += $(call cc-option,-fconserve-stack) 620*8f7f5c9fSAndi Kleen 62106c5040cSSam Ravnborg# Add user supplied CPPFLAGS, AFLAGS and CFLAGS as the last assignments 62269ee0b35SSam Ravnborg# But warn user when we do so 62369ee0b35SSam Ravnborgwarn-assign = \ 62469ee0b35SSam Ravnborg$(warning "WARNING: Appending $$K$(1) ($(K$(1))) from $(origin K$(1)) to kernel $$$(1)") 62569ee0b35SSam Ravnborg 62669ee0b35SSam Ravnborgifneq ($(KCPPFLAGS),) 62769ee0b35SSam Ravnborg $(call warn-assign,CPPFLAGS) 62869ee0b35SSam Ravnborg KBUILD_CPPFLAGS += $(KCPPFLAGS) 62969ee0b35SSam Ravnborgendif 63069ee0b35SSam Ravnborgifneq ($(KAFLAGS),) 63169ee0b35SSam Ravnborg $(call warn-assign,AFLAGS) 63269ee0b35SSam Ravnborg KBUILD_AFLAGS += $(KAFLAGS) 63369ee0b35SSam Ravnborgendif 63469ee0b35SSam Ravnborgifneq ($(KCFLAGS),) 63569ee0b35SSam Ravnborg $(call warn-assign,CFLAGS) 63669ee0b35SSam Ravnborg KBUILD_CFLAGS += $(KCFLAGS) 63769ee0b35SSam Ravnborgendif 63852bcc330SSam Ravnborg 63918991197SRoland McGrath# Use --build-id when available. 64018991197SRoland McGrathLDFLAGS_BUILD_ID = $(patsubst -Wl$(comma)%,%,\ 641f86fd306SSam Ravnborg $(call cc-ldoption, -Wl$(comma)--build-id,)) 64218991197SRoland McGrathLDFLAGS_MODULE += $(LDFLAGS_BUILD_ID) 64318991197SRoland McGrathLDFLAGS_vmlinux += $(LDFLAGS_BUILD_ID) 64418991197SRoland McGrath 6455d7d18f5SDavid Howellsifeq ($(CONFIG_STRIP_ASM_SYMS),y) 646d79a2719SAndi KleenLDFLAGS_vmlinux += $(call ld-option, -X,) 6475d7d18f5SDavid Howellsendif 6485d7d18f5SDavid Howells 6491da177e4SLinus Torvalds# Default kernel image to build when no specific target is given. 6501da177e4SLinus Torvalds# KBUILD_IMAGE may be overruled on the command line or 6511da177e4SLinus Torvalds# set in the environment 6521da177e4SLinus Torvalds# Also any assignments in arch/$(ARCH)/Makefile take precedence over 6531da177e4SLinus Torvalds# this default value 6541da177e4SLinus Torvaldsexport KBUILD_IMAGE ?= vmlinux 6551da177e4SLinus Torvalds 6561da177e4SLinus Torvalds# 6571da177e4SLinus Torvalds# INSTALL_PATH specifies where to place the updated kernel and system map 6581da177e4SLinus Torvalds# images. Default is /boot, but you can set it to other values 6591da177e4SLinus Torvaldsexport INSTALL_PATH ?= /boot 6601da177e4SLinus Torvalds 6611da177e4SLinus Torvalds# 6621da177e4SLinus Torvalds# INSTALL_MOD_PATH specifies a prefix to MODLIB for module directory 6631da177e4SLinus Torvalds# relocations required by build roots. This is not defined in the 664070b98bfSSam Ravnborg# makefile but the argument can be passed to make if needed. 6651da177e4SLinus Torvalds# 6661da177e4SLinus Torvalds 667df9df036SSam RavnborgMODLIB = $(INSTALL_MOD_PATH)/lib/modules/$(KERNELRELEASE) 6681da177e4SLinus Torvaldsexport MODLIB 6691da177e4SLinus Torvalds 670ac031f26STheodore Ts'o# 6712ea03891SSam Ravnborg# INSTALL_MOD_STRIP, if defined, will cause modules to be 6722ea03891SSam Ravnborg# stripped after they are installed. If INSTALL_MOD_STRIP is '1', then 6732ea03891SSam Ravnborg# the default option --strip-debug will be used. Otherwise, 6742ea03891SSam Ravnborg# INSTALL_MOD_STRIP will used as the options to the strip command. 6752ea03891SSam Ravnborg 676ac031f26STheodore Ts'oifdef INSTALL_MOD_STRIP 677ac031f26STheodore Ts'oifeq ($(INSTALL_MOD_STRIP),1) 6782ea03891SSam Ravnborgmod_strip_cmd = $(STRIP) --strip-debug 679ac031f26STheodore Ts'oelse 6802ea03891SSam Ravnborgmod_strip_cmd = $(STRIP) $(INSTALL_MOD_STRIP) 681ac031f26STheodore Ts'oendif # INSTALL_MOD_STRIP=1 682ac031f26STheodore Ts'oelse 6832ea03891SSam Ravnborgmod_strip_cmd = true 684ac031f26STheodore Ts'oendif # INSTALL_MOD_STRIP 685ac031f26STheodore Ts'oexport mod_strip_cmd 686ac031f26STheodore Ts'o 6871da177e4SLinus Torvalds 6881da177e4SLinus Torvaldsifeq ($(KBUILD_EXTMOD),) 6893a65dfe8SJens Axboecore-y += kernel/ mm/ fs/ ipc/ security/ crypto/ block/ 6901da177e4SLinus Torvalds 6911da177e4SLinus Torvaldsvmlinux-dirs := $(patsubst %/,%,$(filter %/, $(init-y) $(init-m) \ 6921da177e4SLinus Torvalds $(core-y) $(core-m) $(drivers-y) $(drivers-m) \ 6931da177e4SLinus Torvalds $(net-y) $(net-m) $(libs-y) $(libs-m))) 6941da177e4SLinus Torvalds 6951da177e4SLinus Torvaldsvmlinux-alldirs := $(sort $(vmlinux-dirs) $(patsubst %/,%,$(filter %/, \ 6961da177e4SLinus Torvalds $(init-n) $(init-) \ 6971da177e4SLinus Torvalds $(core-n) $(core-) $(drivers-n) $(drivers-) \ 6981da177e4SLinus Torvalds $(net-n) $(net-) $(libs-n) $(libs-)))) 6991da177e4SLinus Torvalds 7001da177e4SLinus Torvaldsinit-y := $(patsubst %/, %/built-in.o, $(init-y)) 7011da177e4SLinus Torvaldscore-y := $(patsubst %/, %/built-in.o, $(core-y)) 7021da177e4SLinus Torvaldsdrivers-y := $(patsubst %/, %/built-in.o, $(drivers-y)) 7031da177e4SLinus Torvaldsnet-y := $(patsubst %/, %/built-in.o, $(net-y)) 7041da177e4SLinus Torvaldslibs-y1 := $(patsubst %/, %/lib.a, $(libs-y)) 7051da177e4SLinus Torvaldslibs-y2 := $(patsubst %/, %/built-in.o, $(libs-y)) 7061da177e4SLinus Torvaldslibs-y := $(libs-y1) $(libs-y2) 7071da177e4SLinus Torvalds 7081da177e4SLinus Torvalds# Build vmlinux 7091da177e4SLinus Torvalds# --------------------------------------------------------------------------- 710070b98bfSSam Ravnborg# vmlinux is built from the objects selected by $(vmlinux-init) and 7111da177e4SLinus Torvalds# $(vmlinux-main). Most are built-in.o files from top-level directories 7122462566fSUwe Zeisberger# in the kernel tree, others are specified in arch/$(ARCH)/Makefile. 7131da177e4SLinus Torvalds# Ordering when linking is important, and $(vmlinux-init) must be first. 7141da177e4SLinus Torvalds# 7151da177e4SLinus Torvalds# vmlinux 7161da177e4SLinus Torvalds# ^ 7171da177e4SLinus Torvalds# | 7181da177e4SLinus Torvalds# +-< $(vmlinux-init) 7191da177e4SLinus Torvalds# | +--< init/version.o + more 7201da177e4SLinus Torvalds# | 7211da177e4SLinus Torvalds# +--< $(vmlinux-main) 7221da177e4SLinus Torvalds# | +--< driver/built-in.o mm/built-in.o + more 7231da177e4SLinus Torvalds# | 7241da177e4SLinus Torvalds# +-< kallsyms.o (see description in CONFIG_KALLSYMS section) 7251da177e4SLinus Torvalds# 7261da177e4SLinus Torvalds# vmlinux version (uname -v) cannot be updated during normal 7271da177e4SLinus Torvalds# descending-into-subdirs phase since we do not yet know if we need to 7281da177e4SLinus Torvalds# update vmlinux. 7291da177e4SLinus Torvalds# Therefore this step is delayed until just before final link of vmlinux - 7301da177e4SLinus Torvalds# except in the kallsyms case where it is done just before adding the 7311da177e4SLinus Torvalds# symbols to the kernel. 7321da177e4SLinus Torvalds# 7331da177e4SLinus Torvalds# System.map is generated to document addresses of all kernel symbols 7341da177e4SLinus Torvalds 7351da177e4SLinus Torvaldsvmlinux-init := $(head-y) $(init-y) 7361da177e4SLinus Torvaldsvmlinux-main := $(core-y) $(libs-y) $(drivers-y) $(net-y) 7371da177e4SLinus Torvaldsvmlinux-all := $(vmlinux-init) $(vmlinux-main) 7386752ed90SThomas Gleixnervmlinux-lds := arch/$(SRCARCH)/kernel/vmlinux.lds 73985bd2fddSSam Ravnborgexport KBUILD_VMLINUX_OBJS := $(vmlinux-all) 7401da177e4SLinus Torvalds 7411da177e4SLinus Torvalds# Rule to link vmlinux - also used during CONFIG_KALLSYMS 7421da177e4SLinus Torvalds# May be overridden by arch/$(ARCH)/Makefile 7431da177e4SLinus Torvaldsquiet_cmd_vmlinux__ ?= LD $@ 7441da177e4SLinus Torvalds cmd_vmlinux__ ?= $(LD) $(LDFLAGS) $(LDFLAGS_vmlinux) -o $@ \ 7451da177e4SLinus Torvalds -T $(vmlinux-lds) $(vmlinux-init) \ 7461da177e4SLinus Torvalds --start-group $(vmlinux-main) --end-group \ 747741f98feSSam Ravnborg $(filter-out $(vmlinux-lds) $(vmlinux-init) $(vmlinux-main) vmlinux.o FORCE ,$^) 7481da177e4SLinus Torvalds 7491da177e4SLinus Torvalds# Generate new vmlinux version 7501da177e4SLinus Torvaldsquiet_cmd_vmlinux_version = GEN .version 7511da177e4SLinus Torvalds cmd_vmlinux_version = set -e; \ 7524e25d8bbSJan Beulich if [ ! -r .version ]; then \ 7534e25d8bbSJan Beulich rm -f .version; \ 7544e25d8bbSJan Beulich echo 1 >.version; \ 7554e25d8bbSJan Beulich else \ 7564e25d8bbSJan Beulich mv .version .old_version; \ 7574e25d8bbSJan Beulich expr 0$$(cat .old_version) + 1 >.version; \ 7584e25d8bbSJan Beulich fi; \ 7591da177e4SLinus Torvalds $(MAKE) $(build)=init 7601da177e4SLinus Torvalds 7611da177e4SLinus Torvalds# Generate System.map 7621da177e4SLinus Torvaldsquiet_cmd_sysmap = SYSMAP 7631da177e4SLinus Torvalds cmd_sysmap = $(CONFIG_SHELL) $(srctree)/scripts/mksysmap 7641da177e4SLinus Torvalds 7651da177e4SLinus Torvalds# Link of vmlinux 7661da177e4SLinus Torvalds# If CONFIG_KALLSYMS is set .version is already updated 7671da177e4SLinus Torvalds# Generate System.map and verify that the content is consistent 76839ca371cSMark Rustad# Use + in front of the vmlinux_version rule to silent warning with make -j2 76939ca371cSMark Rustad# First command is ':' to allow us to use + in front of the rule 7701da177e4SLinus Torvaldsdefine rule_vmlinux__ 77139ca371cSMark Rustad : 7721da177e4SLinus Torvalds $(if $(CONFIG_KALLSYMS),,+$(call cmd,vmlinux_version)) 7731da177e4SLinus Torvalds 7741da177e4SLinus Torvalds $(call cmd,vmlinux__) 7751da177e4SLinus Torvalds $(Q)echo 'cmd_$@ := $(cmd_vmlinux__)' > $(@D)/.$(@F).cmd 7761da177e4SLinus Torvalds 7771da177e4SLinus Torvalds $(Q)$(if $($(quiet)cmd_sysmap), \ 7781da177e4SLinus Torvalds echo ' $($(quiet)cmd_sysmap) System.map' &&) \ 7791da177e4SLinus Torvalds $(cmd_sysmap) $@ System.map; \ 7801da177e4SLinus Torvalds if [ $$? -ne 0 ]; then \ 7811da177e4SLinus Torvalds rm -f $@; \ 7821da177e4SLinus Torvalds /bin/false; \ 7831da177e4SLinus Torvalds fi; 7841da177e4SLinus Torvalds $(verify_kallsyms) 7851da177e4SLinus Torvaldsendef 7861da177e4SLinus Torvalds 7871da177e4SLinus Torvalds 7881da177e4SLinus Torvaldsifdef CONFIG_KALLSYMS 7891da177e4SLinus Torvalds# Generate section listing all symbols and add it into vmlinux $(kallsyms.o) 7901da177e4SLinus Torvalds# It's a three stage process: 7911da177e4SLinus Torvalds# o .tmp_vmlinux1 has all symbols and sections, but __kallsyms is 7921da177e4SLinus Torvalds# empty 7931da177e4SLinus Torvalds# Running kallsyms on that gives us .tmp_kallsyms1.o with 7941da177e4SLinus Torvalds# the right size - vmlinux version (uname -v) is updated during this step 7951da177e4SLinus Torvalds# o .tmp_vmlinux2 now has a __kallsyms section of the right size, 7961da177e4SLinus Torvalds# but due to the added section, some addresses have shifted. 7971da177e4SLinus Torvalds# From here, we generate a correct .tmp_kallsyms2.o 7981da177e4SLinus Torvalds# o The correct .tmp_kallsyms2.o is linked into the final vmlinux. 7991da177e4SLinus Torvalds# o Verify that the System.map from vmlinux matches the map from 8001da177e4SLinus Torvalds# .tmp_vmlinux2, just in case we did not generate kallsyms correctly. 8011da177e4SLinus Torvalds# o If CONFIG_KALLSYMS_EXTRA_PASS is set, do an extra pass using 8021da177e4SLinus Torvalds# .tmp_vmlinux3 and .tmp_kallsyms3.o. This is only meant as a 8031da177e4SLinus Torvalds# temporary bypass to allow the kernel to be built while the 8041da177e4SLinus Torvalds# maintainers work out what went wrong with kallsyms. 8051da177e4SLinus Torvalds 8061da177e4SLinus Torvaldsifdef CONFIG_KALLSYMS_EXTRA_PASS 8071da177e4SLinus Torvaldslast_kallsyms := 3 8081da177e4SLinus Torvaldselse 8091da177e4SLinus Torvaldslast_kallsyms := 2 8101da177e4SLinus Torvaldsendif 8111da177e4SLinus Torvalds 8121da177e4SLinus Torvaldskallsyms.o := .tmp_kallsyms$(last_kallsyms).o 8131da177e4SLinus Torvalds 8141da177e4SLinus Torvaldsdefine verify_kallsyms 8151da177e4SLinus Torvalds $(Q)$(if $($(quiet)cmd_sysmap), \ 8161da177e4SLinus Torvalds echo ' $($(quiet)cmd_sysmap) .tmp_System.map' &&) \ 8171da177e4SLinus Torvalds $(cmd_sysmap) .tmp_vmlinux$(last_kallsyms) .tmp_System.map 8181da177e4SLinus Torvalds $(Q)cmp -s System.map .tmp_System.map || \ 8191da177e4SLinus Torvalds (echo Inconsistent kallsyms data; \ 8201da177e4SLinus Torvalds echo Try setting CONFIG_KALLSYMS_EXTRA_PASS; \ 8211da177e4SLinus Torvalds rm .tmp_kallsyms* ; /bin/false ) 8221da177e4SLinus Torvaldsendef 8231da177e4SLinus Torvalds 8241da177e4SLinus Torvalds# Update vmlinux version before link 8251da177e4SLinus Torvalds# Use + in front of this rule to silent warning about make -j1 82672ba47c1SSam Ravnborg# First command is ':' to allow us to use + in front of this rule 8271da177e4SLinus Torvaldscmd_ksym_ld = $(cmd_vmlinux__) 8281da177e4SLinus Torvaldsdefine rule_ksym_ld 82972ba47c1SSam Ravnborg : 8301da177e4SLinus Torvalds +$(call cmd,vmlinux_version) 8311da177e4SLinus Torvalds $(call cmd,vmlinux__) 8321da177e4SLinus Torvalds $(Q)echo 'cmd_$@ := $(cmd_vmlinux__)' > $(@D)/.$(@F).cmd 8331da177e4SLinus Torvaldsendef 8341da177e4SLinus Torvalds 8351da177e4SLinus Torvalds# Generate .S file with all kernel symbols 8361da177e4SLinus Torvaldsquiet_cmd_kallsyms = KSYM $@ 8372ea03891SSam Ravnborg cmd_kallsyms = $(NM) -n $< | $(KALLSYMS) \ 8382ea03891SSam Ravnborg $(if $(CONFIG_KALLSYMS_ALL),--all-symbols) > $@ 8391da177e4SLinus Torvalds 8402ea03891SSam Ravnborg.tmp_kallsyms1.o .tmp_kallsyms2.o .tmp_kallsyms3.o: %.o: %.S scripts FORCE 8411da177e4SLinus Torvalds $(call if_changed_dep,as_o_S) 8421da177e4SLinus Torvalds 8432ea03891SSam Ravnborg.tmp_kallsyms%.S: .tmp_vmlinux% $(KALLSYMS) 8441da177e4SLinus Torvalds $(call cmd,kallsyms) 8451da177e4SLinus Torvalds 8461da177e4SLinus Torvalds# .tmp_vmlinux1 must be complete except kallsyms, so update vmlinux version 8472ea03891SSam Ravnborg.tmp_vmlinux1: $(vmlinux-lds) $(vmlinux-all) FORCE 8482ea03891SSam Ravnborg $(call if_changed_rule,ksym_ld) 8491da177e4SLinus Torvalds 8502ea03891SSam Ravnborg.tmp_vmlinux2: $(vmlinux-lds) $(vmlinux-all) .tmp_kallsyms1.o FORCE 8512ea03891SSam Ravnborg $(call if_changed,vmlinux__) 8521da177e4SLinus Torvalds 8532ea03891SSam Ravnborg.tmp_vmlinux3: $(vmlinux-lds) $(vmlinux-all) .tmp_kallsyms2.o FORCE 8542ea03891SSam Ravnborg $(call if_changed,vmlinux__) 8551da177e4SLinus Torvalds 8561da177e4SLinus Torvalds# Needs to visit scripts/ before $(KALLSYMS) can be used. 8571da177e4SLinus Torvalds$(KALLSYMS): scripts ; 8581da177e4SLinus Torvalds 85933bc25eaSSam Ravnborg# Generate some data for debugging strange kallsyms problems 86033bc25eaSSam Ravnborgdebug_kallsyms: .tmp_map$(last_kallsyms) 86133bc25eaSSam Ravnborg 86233bc25eaSSam Ravnborg.tmp_map%: .tmp_vmlinux% FORCE 86333bc25eaSSam Ravnborg ($(OBJDUMP) -h $< | $(AWK) '/^ +[0-9]/{print $$4 " 0 " $$2}'; $(NM) $<) | sort > $@ 86433bc25eaSSam Ravnborg 86533bc25eaSSam Ravnborg.tmp_map3: .tmp_map2 86633bc25eaSSam Ravnborg 86733bc25eaSSam Ravnborg.tmp_map2: .tmp_map1 86833bc25eaSSam Ravnborg 8691da177e4SLinus Torvaldsendif # ifdef CONFIG_KALLSYMS 8701da177e4SLinus Torvalds 871741f98feSSam Ravnborg# Do modpost on a prelinked vmlinux. The finally linked vmlinux has 872741f98feSSam Ravnborg# relevant sections renamed as per the linker script. 873741f98feSSam Ravnborgquiet_cmd_vmlinux-modpost = LD $@ 874741f98feSSam Ravnborg cmd_vmlinux-modpost = $(LD) $(LDFLAGS) -r -o $@ \ 875741f98feSSam Ravnborg $(vmlinux-init) --start-group $(vmlinux-main) --end-group \ 87690ebd878SSam Ravnborg $(filter-out $(vmlinux-init) $(vmlinux-main) FORCE ,$^) 877741f98feSSam Ravnborgdefine rule_vmlinux-modpost 878741f98feSSam Ravnborg : 879741f98feSSam Ravnborg +$(call cmd,vmlinux-modpost) 880741f98feSSam Ravnborg $(Q)$(MAKE) -f $(srctree)/scripts/Makefile.modpost $@ 881741f98feSSam Ravnborg $(Q)echo 'cmd_$@ := $(cmd_vmlinux-modpost)' > $(dot-target).cmd 882741f98feSSam Ravnborgendef 883741f98feSSam Ravnborg 8841da177e4SLinus Torvalds# vmlinux image - including updated kernel symbols 885310f8243SSam Ravnborgvmlinux: $(vmlinux-lds) $(vmlinux-init) $(vmlinux-main) vmlinux.o $(kallsyms.o) FORCE 8860f836e5fSDavid Woodhouseifdef CONFIG_HEADERS_CHECK 8870e7af8d0SDavid Woodhouse $(Q)$(MAKE) -f $(srctree)/Makefile headers_check 8880f836e5fSDavid Woodhouseendif 889267c4025SMathieu Desnoyersifdef CONFIG_SAMPLES 890267c4025SMathieu Desnoyers $(Q)$(MAKE) $(build)=samples 891267c4025SMathieu Desnoyersendif 8923794f3e8SRandy Dunlapifdef CONFIG_BUILD_DOCSRC 8933794f3e8SRandy Dunlap $(Q)$(MAKE) $(build)=Documentation 8943794f3e8SRandy Dunlapendif 895741f98feSSam Ravnborg $(call vmlinux-modpost) 8961da177e4SLinus Torvalds $(call if_changed_rule,vmlinux__) 8974e25d8bbSJan Beulich $(Q)rm -f .old_version 8981da177e4SLinus Torvalds 899310f8243SSam Ravnborg# build vmlinux.o first to catch section mismatch errors early 900cf87dcd1SSam Ravnborgifdef CONFIG_KALLSYMS 901cf87dcd1SSam Ravnborg.tmp_vmlinux1: vmlinux.o 902cf87dcd1SSam Ravnborgendif 90390ebd878SSam Ravnborg 90490ebd878SSam Ravnborgmodpost-init := $(filter-out init/built-in.o, $(vmlinux-init)) 90590ebd878SSam Ravnborgvmlinux.o: $(modpost-init) $(vmlinux-main) FORCE 906741f98feSSam Ravnborg $(call if_changed_rule,vmlinux-modpost) 907741f98feSSam Ravnborg 9081da177e4SLinus Torvalds# The actual objects are generated when descending, 9091da177e4SLinus Torvalds# make sure no implicit rule kicks in 9101da177e4SLinus Torvalds$(sort $(vmlinux-init) $(vmlinux-main)) $(vmlinux-lds): $(vmlinux-dirs) ; 9111da177e4SLinus Torvalds 9121da177e4SLinus Torvalds# Handle descending into subdirectories listed in $(vmlinux-dirs) 9131da177e4SLinus Torvalds# Preset locale variables to speed up the build process. Limit locale 9141da177e4SLinus Torvalds# tweaks to this spot to avoid wrong language settings when running 9151da177e4SLinus Torvalds# make menuconfig etc. 9161da177e4SLinus Torvalds# Error messages still appears in the original language 9171da177e4SLinus Torvalds 9184f193362SPaul SmithPHONY += $(vmlinux-dirs) 9195bb78269SSam Ravnborg$(vmlinux-dirs): prepare scripts 9201da177e4SLinus Torvalds $(Q)$(MAKE) $(build)=$@ 9211da177e4SLinus Torvalds 922cb58455cSSam Ravnborg# Build the kernel release string 923cb58455cSSam Ravnborg# 9241ef98856SRobert P. J. Day# The KERNELRELEASE value built here is stored in the file 9251ef98856SRobert P. J. Day# include/config/kernel.release, and is used when executing several 9261ef98856SRobert P. J. Day# make targets, such as "make install" or "make modules_install." 9271ef98856SRobert P. J. Day# 9281ef98856SRobert P. J. Day# The eventual kernel release string consists of the following fields, 9291ef98856SRobert P. J. Day# shown in a hierarchical format to show how smaller parts are concatenated 9301ef98856SRobert P. J. Day# to form the larger and final value, with values coming from places like 9311ef98856SRobert P. J. Day# the Makefile, kernel config options, make command line options and/or 9321ef98856SRobert P. J. Day# SCM tag information. 9331ef98856SRobert P. J. Day# 9341ef98856SRobert P. J. Day# $(KERNELVERSION) 9351ef98856SRobert P. J. Day# $(VERSION) eg, 2 9361ef98856SRobert P. J. Day# $(PATCHLEVEL) eg, 6 9371ef98856SRobert P. J. Day# $(SUBLEVEL) eg, 18 9381ef98856SRobert P. J. Day# $(EXTRAVERSION) eg, -rc6 9391ef98856SRobert P. J. Day# $(localver-full) 9401ef98856SRobert P. J. Day# $(localver) 94176c32956SOleg Verych# localversion* (files without backups, containing '~') 9421ef98856SRobert P. J. Day# $(CONFIG_LOCALVERSION) (from kernel config setting) 9431ef98856SRobert P. J. Day# $(localver-auto) (only if CONFIG_LOCALVERSION_AUTO is set) 9441ef98856SRobert P. J. Day# ./scripts/setlocalversion (SCM tag, if one exists) 9451ef98856SRobert P. J. Day# $(LOCALVERSION) (from make command line if provided) 9461ef98856SRobert P. J. Day# 9471ef98856SRobert P. J. Day# Note how the final $(localver-auto) string is included *only* if the 9481ef98856SRobert P. J. Day# kernel config option CONFIG_LOCALVERSION_AUTO is selected. Also, at the 9491ef98856SRobert P. J. Day# moment, only git is supported but other SCMs can edit the script 9501ef98856SRobert P. J. Day# scripts/setlocalversion and add the appropriate checks as needed. 951cb58455cSSam Ravnborg 95276c32956SOleg Verychpattern = ".*/localversion[^~]*" 95376c32956SOleg Verychstring = $(shell cat /dev/null \ 954fd19e44fSLinus Torvalds `find $(objtree) $(srctree) -maxdepth 1 -regex $(pattern) | sort -u`) 955cb58455cSSam Ravnborg 95676c32956SOleg Verychlocalver = $(subst $(space),, $(string) \ 957cb58455cSSam Ravnborg $(patsubst "%",%,$(CONFIG_LOCALVERSION))) 958cb58455cSSam Ravnborg 959cb58455cSSam Ravnborg# If CONFIG_LOCALVERSION_AUTO is set scripts/setlocalversion is called 960cb58455cSSam Ravnborg# and if the SCM is know a tag from the SCM is appended. 961070b98bfSSam Ravnborg# The appended tag is determined by the SCM used. 962cb58455cSSam Ravnborg# 963b925dbfeSJosh Hunt# .scmversion is used when generating rpm packages so we do not loose 964b925dbfeSJosh Hunt# the version information from the SCM when we do the build of the kernel 965b925dbfeSJosh Hunt# from the copied source 966cb58455cSSam Ravnborgifdef CONFIG_LOCALVERSION_AUTO 967b925dbfeSJosh Hunt 968b925dbfeSJosh Huntifeq ($(wildcard .scmversion),) 969cb58455cSSam Ravnborg _localver-auto = $(shell $(CONFIG_SHELL) \ 970cb58455cSSam Ravnborg $(srctree)/scripts/setlocalversion $(srctree)) 971b925dbfeSJosh Huntelse 972b925dbfeSJosh Hunt _localver-auto = $(shell cat .scmversion 2> /dev/null) 973b925dbfeSJosh Huntendif 974b925dbfeSJosh Hunt 975cb58455cSSam Ravnborg localver-auto = $(LOCALVERSION)$(_localver-auto) 976cb58455cSSam Ravnborgendif 977cb58455cSSam Ravnborg 978cb58455cSSam Ravnborglocalver-full = $(localver)$(localver-auto) 979cb58455cSSam Ravnborg 980f1d28fb0SRoman Zippel# Store (new) KERNELRELASE string in include/config/kernel.release 9812244cbd8SSam Ravnborgkernelrelease = $(KERNELVERSION)$(localver-full) 982f1d28fb0SRoman Zippelinclude/config/kernel.release: include/config/auto.conf FORCE 9832244cbd8SSam Ravnborg $(Q)rm -f $@ 9842244cbd8SSam Ravnborg $(Q)echo $(kernelrelease) > $@ 985cb58455cSSam Ravnborg 986cb58455cSSam Ravnborg 9871da177e4SLinus Torvalds# Things we need to do before we recursively start building the kernel 9885bb78269SSam Ravnborg# or the modules are listed in "prepare". 9895bb78269SSam Ravnborg# A multi level approach is used. prepareN is processed before prepareN-1. 9905bb78269SSam Ravnborg# archprepare is used in arch Makefiles and when processed asm symlink, 9915bb78269SSam Ravnborg# version.h and scripts_basic is processed / created. 9921da177e4SLinus Torvalds 9935bb78269SSam Ravnborg# Listed in dependency order 9944f193362SPaul SmithPHONY += prepare archprepare prepare0 prepare1 prepare2 prepare3 9955bb78269SSam Ravnborg 99686feeaa8SSam Ravnborg# prepare3 is used to check if we are building in a separate output directory, 9971da177e4SLinus Torvalds# and if so do: 9981da177e4SLinus Torvalds# 1) Check that make has not been executed in the kernel src $(srctree) 9991da177e4SLinus Torvalds# 2) Create the include2 directory, used for the second asm symlink 1000f1d28fb0SRoman Zippelprepare3: include/config/kernel.release 10011da177e4SLinus Torvaldsifneq ($(KBUILD_SRC),) 1002fd54f502SMike Frysinger @$(kecho) ' Using $(srctree) as source for kernel' 1003c955ccafSRoman Zippel $(Q)if [ -f $(srctree)/.config -o -d $(srctree)/include/config ]; then \ 10041da177e4SLinus Torvalds echo " $(srctree) is not clean, please run 'make mrproper'";\ 10051da177e4SLinus Torvalds echo " in the '$(srctree)' directory.";\ 10061da177e4SLinus Torvalds /bin/false; \ 10071da177e4SLinus Torvalds fi; 10087a48bdd0SSam Ravnborg $(Q)if [ ! -d include2 ]; then \ 10097a48bdd0SSam Ravnborg mkdir -p include2; \ 10102e57d051SSam Ravnborg ln -fsn $(srctree)/include/asm-$(SRCARCH) include2/asm; \ 10112e57d051SSam Ravnborg fi 10121da177e4SLinus Torvaldsendif 10131da177e4SLinus Torvalds 101486feeaa8SSam Ravnborg# prepare2 creates a makefile if using a separate output directory 101586feeaa8SSam Ravnborgprepare2: prepare3 outputmakefile 10161da177e4SLinus Torvalds 10173eb3c740SRoman Zippelprepare1: prepare2 include/linux/version.h include/linux/utsrelease.h \ 10183eb3c740SRoman Zippel include/asm include/config/auto.conf 10197bb9d092SSam Ravnborg $(cmd_crmodverdir) 10201da177e4SLinus Torvalds 10215bb78269SSam Ravnborgarchprepare: prepare1 scripts_basic 10225bb78269SSam Ravnborg 10235bb78269SSam Ravnborgprepare0: archprepare FORCE 10248d36a623SSam Ravnborg $(Q)$(MAKE) $(build)=. 1025c53aeca0SSam Ravnborg $(Q)$(MAKE) $(build)=. missing-syscalls 102686feeaa8SSam Ravnborg 10271da177e4SLinus Torvalds# All the preparing.. 1028d395efb5SRobert P. J. Dayprepare: prepare0 10291da177e4SLinus Torvalds 10301da177e4SLinus Torvalds# Leave this as default for preprocessing vmlinux.lds.S, which is now 10311da177e4SLinus Torvalds# done in arch/$(ARCH)/kernel/Makefile 10321da177e4SLinus Torvalds 10331da177e4SLinus Torvaldsexport CPPFLAGS_vmlinux.lds += -P -C -U$(ARCH) 10341da177e4SLinus Torvalds 1035fc333b2dSSam Ravnborg# The asm symlink changes when $(ARCH) changes. 1036fc333b2dSSam Ravnborg# Detect this and ask user to run make mrproper 1037dcc2da1aSSam Ravnborg# If asm is a stale symlink (point to dir that does not exist) remove it 10382e57d051SSam Ravnborgdefine check-symlink 10392e57d051SSam Ravnborg set -e; \ 1040fc333b2dSSam Ravnborg if [ -L include/asm ]; then \ 10412e57d051SSam Ravnborg asmlink=`readlink include/asm | cut -d '-' -f 2`; \ 1042fc333b2dSSam Ravnborg if [ "$$asmlink" != "$(SRCARCH)" ]; then \ 1043fc333b2dSSam Ravnborg echo "ERROR: the symlink $@ points to asm-$$asmlink but asm-$(SRCARCH) was expected"; \ 1044fc333b2dSSam Ravnborg echo " set ARCH or save .config and run 'make mrproper' to fix it"; \ 1045fc333b2dSSam Ravnborg exit 1; \ 1046fc333b2dSSam Ravnborg fi; \ 1047dcc2da1aSSam Ravnborg test -e $$asmlink || rm include/asm; \ 1048dcc2da1aSSam Ravnborg elif [ -d include/asm ]; then \ 1049dcc2da1aSSam Ravnborg echo "ERROR: $@ is a directory but a symlink was expected";\ 1050dcc2da1aSSam Ravnborg exit 1; \ 10512e57d051SSam Ravnborg fi 10522e57d051SSam Ravnborgendef 10532e57d051SSam Ravnborg 10542e57d051SSam Ravnborg# We create the target directory of the symlink if it does 10555a9e67b1SAnisse Astier# not exist so the test in check-symlink works and we have a 10562e57d051SSam Ravnborg# directory for generated filesas used by some architectures. 10572e57d051SSam Ravnborgdefine create-symlink 10582e57d051SSam Ravnborg if [ ! -L include/asm ]; then \ 1059fd54f502SMike Frysinger $(kecho) ' SYMLINK $@ -> include/asm-$(SRCARCH)'; \ 10602e57d051SSam Ravnborg if [ ! -d include/asm-$(SRCARCH) ]; then \ 10612e57d051SSam Ravnborg mkdir -p include/asm-$(SRCARCH); \ 1062fc333b2dSSam Ravnborg fi; \ 1063fc333b2dSSam Ravnborg ln -fsn asm-$(SRCARCH) $@; \ 1064fc333b2dSSam Ravnborg fi 10652e57d051SSam Ravnborgendef 10662e57d051SSam Ravnborg 10672e57d051SSam Ravnborginclude/asm: FORCE 10682e57d051SSam Ravnborg $(Q)$(check-symlink) 10692e57d051SSam Ravnborg $(Q)$(create-symlink) 10701da177e4SLinus Torvalds 10711da177e4SLinus Torvalds# Generate some files 10721da177e4SLinus Torvalds# --------------------------------------------------------------------------- 10731da177e4SLinus Torvalds 10741da177e4SLinus Torvalds# KERNELRELEASE can change from a few different places, meaning version.h 10751da177e4SLinus Torvalds# needs to be updated, so this check is forced on all builds 10761da177e4SLinus Torvalds 10771da177e4SLinus Torvaldsuts_len := 64 107863104eecSSam Ravnborgdefine filechk_utsrelease.h 10791da177e4SLinus Torvalds if [ `echo -n "$(KERNELRELEASE)" | wc -c ` -gt $(uts_len) ]; then \ 10801da177e4SLinus Torvalds echo '"$(KERNELRELEASE)" exceeds $(uts_len) characters' >&2; \ 10811da177e4SLinus Torvalds exit 1; \ 10821da177e4SLinus Torvalds fi; \ 108363104eecSSam Ravnborg (echo \#define UTS_RELEASE \"$(KERNELRELEASE)\";) 10841da177e4SLinus Torvaldsendef 10851da177e4SLinus Torvalds 108663104eecSSam Ravnborgdefine filechk_version.h 108763104eecSSam Ravnborg (echo \#define LINUX_VERSION_CODE $(shell \ 108863104eecSSam Ravnborg expr $(VERSION) \* 65536 + $(PATCHLEVEL) \* 256 + $(SUBLEVEL)); \ 108963104eecSSam Ravnborg echo '#define KERNEL_VERSION(a,b,c) (((a) << 16) + ((b) << 8) + (c))';) 109063104eecSSam Ravnborgendef 109163104eecSSam Ravnborg 109263104eecSSam Ravnborginclude/linux/version.h: $(srctree)/Makefile FORCE 10931da177e4SLinus Torvalds $(call filechk,version.h) 10941da177e4SLinus Torvalds 109563104eecSSam Ravnborginclude/linux/utsrelease.h: include/config/kernel.release FORCE 109663104eecSSam Ravnborg $(call filechk,utsrelease.h) 109763104eecSSam Ravnborg 1098179efcb4SVegard NossumPHONY += headerdep 1099179efcb4SVegard Nossumheaderdep: 1100179efcb4SVegard Nossum $(Q)find include/ -name '*.h' | xargs --max-args 1 scripts/headerdep.pl 1101179efcb4SVegard Nossum 11021da177e4SLinus Torvalds# --------------------------------------------------------------------------- 11031da177e4SLinus Torvalds 11044f193362SPaul SmithPHONY += depend dep 11051da177e4SLinus Torvaldsdepend dep: 11061da177e4SLinus Torvalds @echo '*** Warning: make $@ is unnecessary now.' 11071da177e4SLinus Torvalds 11081da177e4SLinus Torvalds# --------------------------------------------------------------------------- 110988ecf814SDavid Woodhouse# Firmware install 111088ecf814SDavid WoodhouseINSTALL_FW_PATH=$(INSTALL_MOD_PATH)/lib/firmware 111188ecf814SDavid Woodhouseexport INSTALL_FW_PATH 111288ecf814SDavid Woodhouse 111388ecf814SDavid WoodhousePHONY += firmware_install 111488ecf814SDavid Woodhousefirmware_install: FORCE 111588ecf814SDavid Woodhouse @mkdir -p $(objtree)/firmware 111688ecf814SDavid Woodhouse $(Q)$(MAKE) -f $(srctree)/scripts/Makefile.fwinst obj=firmware __fw_install 111788ecf814SDavid Woodhouse 111888ecf814SDavid Woodhouse# --------------------------------------------------------------------------- 11198d730cfbSDavid Woodhouse# Kernel headers 11208d730cfbSDavid Woodhouse 1121e6883b18SSam Ravnborg#Default location for installed headers 1122e6883b18SSam Ravnborgexport INSTALL_HDR_PATH = $(objtree)/usr 1123e6883b18SSam Ravnborg 1124e6883b18SSam Ravnborghdr-inst := -rR -f $(srctree)/scripts/Makefile.headersinst obj 11252fb9b1bdSSam Ravnborg# Find out where the Kbuild file is located to support 11262fb9b1bdSSam Ravnborg# arch/$(ARCH)/include/asm 11272fb9b1bdSSam Ravnborghdr-dir = $(strip \ 11282fb9b1bdSSam Ravnborg $(if $(wildcard $(srctree)/arch/$(hdr-arch)/include/asm/Kbuild), \ 11292fb9b1bdSSam Ravnborg arch/$(hdr-arch)/include/asm, include/asm-$(hdr-arch))) 11302fb9b1bdSSam Ravnborg 11312fb9b1bdSSam Ravnborg# If we do an all arch process set dst to asm-$(hdr-arch) 11322fb9b1bdSSam Ravnborghdr-dst = $(if $(KBUILD_HEADERS), dst=include/asm-$(hdr-arch), dst=include/asm) 1133e6883b18SSam Ravnborg 1134e6883b18SSam RavnborgPHONY += __headers 1135e6883b18SSam Ravnborg__headers: include/linux/version.h scripts_basic FORCE 1136e6883b18SSam Ravnborg $(Q)$(MAKE) $(build)=scripts scripts/unifdef 11376d716275SDavid Woodhouse 11386d716275SDavid WoodhousePHONY += headers_install_all 11392fb9b1bdSSam Ravnborgheaders_install_all: 11402fb9b1bdSSam Ravnborg $(Q)$(CONFIG_SHELL) $(srctree)/scripts/headers.sh install 11416d716275SDavid Woodhouse 11428d730cfbSDavid WoodhousePHONY += headers_install 1143e6883b18SSam Ravnborgheaders_install: __headers 11442fb9b1bdSSam Ravnborg $(if $(wildcard $(srctree)/$(hdr-dir)/Kbuild),, \ 11452fb9b1bdSSam Ravnborg $(error Headers not exportable for the $(SRCARCH) architecture)) 114688181ec3SSam Ravnborg $(Q)$(MAKE) $(hdr-inst)=include 11472fb9b1bdSSam Ravnborg $(Q)$(MAKE) $(hdr-inst)=$(hdr-dir) $(hdr-dst) 11488d730cfbSDavid Woodhouse 11491f85712eSMike FrysingerPHONY += headers_check_all 11501f85712eSMike Frysingerheaders_check_all: headers_install_all 11512fb9b1bdSSam Ravnborg $(Q)$(CONFIG_SHELL) $(srctree)/scripts/headers.sh check 11521f85712eSMike Frysinger 115368475359SDavid WoodhousePHONY += headers_check 115468475359SDavid Woodhouseheaders_check: headers_install 115588181ec3SSam Ravnborg $(Q)$(MAKE) $(hdr-inst)=include HDRCHECK=1 11562fb9b1bdSSam Ravnborg $(Q)$(MAKE) $(hdr-inst)=$(hdr-dir) $(hdr-dst) HDRCHECK=1 115768475359SDavid Woodhouse 11588d730cfbSDavid Woodhouse# --------------------------------------------------------------------------- 11591da177e4SLinus Torvalds# Modules 11601da177e4SLinus Torvalds 11611da177e4SLinus Torvaldsifdef CONFIG_MODULES 11621da177e4SLinus Torvalds 11631da177e4SLinus Torvalds# By default, build modules as well 11641da177e4SLinus Torvalds 11651da177e4SLinus Torvaldsall: modules 11661da177e4SLinus Torvalds 11671da177e4SLinus Torvalds# Build modules 1168551559e1STejun Heo# 1169551559e1STejun Heo# A module can be listed more than once in obj-m resulting in 1170551559e1STejun Heo# duplicate lines in modules.order files. Those are removed 1171551559e1STejun Heo# using awk while concatenating to the final file. 11721da177e4SLinus Torvalds 11734f193362SPaul SmithPHONY += modules 11741da177e4SLinus Torvaldsmodules: $(vmlinux-dirs) $(if $(KBUILD_BUILTIN),vmlinux) 1175551559e1STejun Heo $(Q)$(AWK) '!x[$$0]++' $(vmlinux-dirs:%=$(objtree)/%/modules.order) > $(objtree)/modules.order 1176fd54f502SMike Frysinger @$(kecho) ' Building modules, stage 2.'; 1177b805aa0eSSam Ravnborg $(Q)$(MAKE) -f $(srctree)/scripts/Makefile.modpost 117844463f7dSDavid Woodhouse $(Q)$(MAKE) -f $(srctree)/scripts/Makefile.fwinst obj=firmware __fw_modbuild 11791da177e4SLinus Torvalds 11801da177e4SLinus Torvalds 11811da177e4SLinus Torvalds# Target to prepare building external modules 11824f193362SPaul SmithPHONY += modules_prepare 11835bb78269SSam Ravnborgmodules_prepare: prepare scripts 11841da177e4SLinus Torvalds 11851da177e4SLinus Torvalds# Target to install modules 11864f193362SPaul SmithPHONY += modules_install 11871da177e4SLinus Torvaldsmodules_install: _modinst_ _modinst_post 11881da177e4SLinus Torvalds 11894f193362SPaul SmithPHONY += _modinst_ 11901da177e4SLinus Torvalds_modinst_: 1191ce454d4dSTom Rini @if [ -z "`$(DEPMOD) -V 2>/dev/null | grep module-init-tools`" ]; then \ 11921da177e4SLinus Torvalds echo "Warning: you may need to install module-init-tools"; \ 11931da177e4SLinus Torvalds echo "See http://www.codemonkey.org.uk/docs/post-halloween-2.6.txt";\ 11941da177e4SLinus Torvalds sleep 1; \ 11951da177e4SLinus Torvalds fi 11961da177e4SLinus Torvalds @rm -rf $(MODLIB)/kernel 11971da177e4SLinus Torvalds @rm -f $(MODLIB)/source 11981da177e4SLinus Torvalds @mkdir -p $(MODLIB)/kernel 11991da177e4SLinus Torvalds @ln -s $(srctree) $(MODLIB)/source 12001da177e4SLinus Torvalds @if [ ! $(objtree) -ef $(MODLIB)/build ]; then \ 12011da177e4SLinus Torvalds rm -f $(MODLIB)/build ; \ 12021da177e4SLinus Torvalds ln -s $(objtree) $(MODLIB)/build ; \ 12031da177e4SLinus Torvalds fi 1204551559e1STejun Heo @cp -f $(objtree)/modules.order $(MODLIB)/ 1205b805aa0eSSam Ravnborg $(Q)$(MAKE) -f $(srctree)/scripts/Makefile.modinst 12061da177e4SLinus Torvalds 120750a8ec31SSam Ravnborg# This depmod is only for convenience to give the initial 12081da177e4SLinus Torvalds# boot a modules.dep even before / is mounted read-write. However the 12091da177e4SLinus Torvalds# boot script depmod is the master version. 12104f193362SPaul SmithPHONY += _modinst_post 12111da177e4SLinus Torvalds_modinst_post: _modinst_ 121288ecf814SDavid Woodhouse $(Q)$(MAKE) -f $(srctree)/scripts/Makefile.fwinst obj=firmware __fw_modinst 121350a8ec31SSam Ravnborg $(call cmd,depmod) 12141da177e4SLinus Torvalds 12151da177e4SLinus Torvaldselse # CONFIG_MODULES 12161da177e4SLinus Torvalds 12171da177e4SLinus Torvalds# Modules not configured 12181da177e4SLinus Torvalds# --------------------------------------------------------------------------- 12191da177e4SLinus Torvalds 12201da177e4SLinus Torvaldsmodules modules_install: FORCE 12211da177e4SLinus Torvalds @echo 12221da177e4SLinus Torvalds @echo "The present kernel configuration has modules disabled." 12231da177e4SLinus Torvalds @echo "Type 'make config' and enable loadable module support." 12241da177e4SLinus Torvalds @echo "Then build a kernel with module support enabled." 12251da177e4SLinus Torvalds @echo 12261da177e4SLinus Torvalds @exit 1 12271da177e4SLinus Torvalds 12281da177e4SLinus Torvaldsendif # CONFIG_MODULES 12291da177e4SLinus Torvalds 12301da177e4SLinus Torvalds### 12311da177e4SLinus Torvalds# Cleaning is done on three levels. 12321da177e4SLinus Torvalds# make clean Delete most generated files 12331da177e4SLinus Torvalds# Leave enough to build external modules 12341da177e4SLinus Torvalds# make mrproper Delete the current configuration, and all generated files 12351da177e4SLinus Torvalds# make distclean Remove editor backup files, patch leftover files and the like 12361da177e4SLinus Torvalds 12371da177e4SLinus Torvalds# Directories & files removed with 'make clean' 12381da177e4SLinus TorvaldsCLEAN_DIRS += $(MODVERDIR) 12391da177e4SLinus TorvaldsCLEAN_FILES += vmlinux System.map \ 12401da177e4SLinus Torvalds .tmp_kallsyms* .tmp_version .tmp_vmlinux* .tmp_System.map 12411da177e4SLinus Torvalds 12421da177e4SLinus Torvalds# Directories & files removed with 'make mrproper' 1243f14875a3SSam RavnborgMRPROPER_DIRS += include/config include2 usr/include include/generated 124450aa88e2STore AndersonMRPROPER_FILES += .config .config.old include/asm .version .old_version \ 12453eb3c740SRoman Zippel include/linux/autoconf.h include/linux/version.h \ 12463eb3c740SRoman Zippel include/linux/utsrelease.h \ 12477d3cc8b6SJan Blunck include/linux/bounds.h include/asm*/asm-offsets.h \ 1248c28ca3aaSAlexey Dobriyan Module.symvers Module.markers tags TAGS cscope* 12491da177e4SLinus Torvalds 12501da177e4SLinus Torvalds# clean - Delete most, but leave enough to build external modules 12511da177e4SLinus Torvalds# 12521da177e4SLinus Torvaldsclean: rm-dirs := $(CLEAN_DIRS) 12531da177e4SLinus Torvaldsclean: rm-files := $(CLEAN_FILES) 12543794f3e8SRandy Dunlapclean-dirs := $(addprefix _clean_,$(srctree) $(vmlinux-alldirs) Documentation) 12551da177e4SLinus Torvalds 12564f193362SPaul SmithPHONY += $(clean-dirs) clean archclean 12571da177e4SLinus Torvalds$(clean-dirs): 12581da177e4SLinus Torvalds $(Q)$(MAKE) $(clean)=$(patsubst _clean_%,%,$@) 12591da177e4SLinus Torvalds 12601da177e4SLinus Torvaldsclean: archclean $(clean-dirs) 12611da177e4SLinus Torvalds $(call cmd,rmdirs) 12621da177e4SLinus Torvalds $(call cmd,rmfiles) 12631da177e4SLinus Torvalds @find . $(RCS_FIND_IGNORE) \ 12641da177e4SLinus Torvalds \( -name '*.[oas]' -o -name '*.ko' -o -name '.*.cmd' \ 126515fde675SAndreas Gruenbacher -o -name '.*.d' -o -name '.*.tmp' -o -name '*.mod.c' \ 1266d35cb360SMathieu Desnoyers -o -name '*.symtypes' -o -name 'modules.order' \ 12672521f2c2SPeter Oberparleiter -o -name 'Module.markers' -o -name '.tmp_*.o.*' \ 12682521f2c2SPeter Oberparleiter -o -name '*.gcno' \) -type f -print | xargs rm -f 12691da177e4SLinus Torvalds 12701da177e4SLinus Torvalds# mrproper - Delete all generated files, including .config 12711da177e4SLinus Torvalds# 12721da177e4SLinus Torvaldsmrproper: rm-dirs := $(wildcard $(MRPROPER_DIRS)) 12731da177e4SLinus Torvaldsmrproper: rm-files := $(wildcard $(MRPROPER_FILES)) 12741da177e4SLinus Torvaldsmrproper-dirs := $(addprefix _mrproper_,Documentation/DocBook scripts) 12751da177e4SLinus Torvalds 12764f193362SPaul SmithPHONY += $(mrproper-dirs) mrproper archmrproper 12771da177e4SLinus Torvalds$(mrproper-dirs): 12781da177e4SLinus Torvalds $(Q)$(MAKE) $(clean)=$(patsubst _mrproper_%,%,$@) 12791da177e4SLinus Torvalds 12801da177e4SLinus Torvaldsmrproper: clean archmrproper $(mrproper-dirs) 12811da177e4SLinus Torvalds $(call cmd,rmdirs) 12821da177e4SLinus Torvalds $(call cmd,rmfiles) 12831da177e4SLinus Torvalds 12841da177e4SLinus Torvalds# distclean 12851da177e4SLinus Torvalds# 12864f193362SPaul SmithPHONY += distclean 12871da177e4SLinus Torvalds 12881da177e4SLinus Torvaldsdistclean: mrproper 12891da177e4SLinus Torvalds @find $(srctree) $(RCS_FIND_IGNORE) \ 12901da177e4SLinus Torvalds \( -name '*.orig' -o -name '*.rej' -o -name '*~' \ 12911da177e4SLinus Torvalds -o -name '*.bak' -o -name '#*#' -o -name '.*.orig' \ 12921da177e4SLinus Torvalds -o -name '.*.rej' -o -size 0 \ 12931da177e4SLinus Torvalds -o -name '*%' -o -name '.*.cmd' -o -name 'core' \) \ 12941da177e4SLinus Torvalds -type f -print | xargs rm -f 12951da177e4SLinus Torvalds 12961da177e4SLinus Torvalds 12971da177e4SLinus Torvalds# Packaging of the kernel to various formats 12981da177e4SLinus Torvalds# --------------------------------------------------------------------------- 12991da177e4SLinus Torvalds# rpm target kept for backward compatibility 13001da177e4SLinus Torvaldspackage-dir := $(srctree)/scripts/package 13011da177e4SLinus Torvalds 1302031ecc6dSZach Brown%pkg: include/config/kernel.release FORCE 13036c2133e1SSam Ravnborg $(Q)$(MAKE) $(build)=$(package-dir) $@ 1304031ecc6dSZach Brownrpm: include/config/kernel.release FORCE 13056c2133e1SSam Ravnborg $(Q)$(MAKE) $(build)=$(package-dir) $@ 13061da177e4SLinus Torvalds 13071da177e4SLinus Torvalds 13081da177e4SLinus Torvalds# Brief documentation of the typical targets used 13091da177e4SLinus Torvalds# --------------------------------------------------------------------------- 13101da177e4SLinus Torvalds 13115dffbe81SSegher Boessenkoolboards := $(wildcard $(srctree)/arch/$(SRCARCH)/configs/*_defconfig) 13121da177e4SLinus Torvaldsboards := $(notdir $(boards)) 13135dffbe81SSegher Boessenkoolboard-dirs := $(dir $(wildcard $(srctree)/arch/$(SRCARCH)/configs/*/*_defconfig)) 13145dffbe81SSegher Boessenkoolboard-dirs := $(sort $(notdir $(board-dirs:/=))) 13151da177e4SLinus Torvalds 13161da177e4SLinus Torvaldshelp: 13171da177e4SLinus Torvalds @echo 'Cleaning targets:' 13185ea084efSSamuel Tardieu @echo ' clean - Remove most generated files but keep the config and' 13195cc8d246SJesper Juhl @echo ' enough build support to build external modules' 13205ea084efSSamuel Tardieu @echo ' mrproper - Remove all generated files + config + various backup files' 13215cc8d246SJesper Juhl @echo ' distclean - mrproper + remove editor backup and patch files' 13221da177e4SLinus Torvalds @echo '' 13231da177e4SLinus Torvalds @echo 'Configuration targets:' 13241da177e4SLinus Torvalds @$(MAKE) -f $(srctree)/scripts/kconfig/Makefile help 13251da177e4SLinus Torvalds @echo '' 13261da177e4SLinus Torvalds @echo 'Other generic targets:' 13271da177e4SLinus Torvalds @echo ' all - Build all targets marked with [*]' 13281da177e4SLinus Torvalds @echo '* vmlinux - Build the bare kernel' 13291da177e4SLinus Torvalds @echo '* modules - Build all modules' 13309cc5d74cSBodo Eggert @echo ' modules_install - Install all modules to INSTALL_MOD_PATH (default: /)' 133188ecf814SDavid Woodhouse @echo ' firmware_install- Install all firmware to INSTALL_FW_PATH' 133288ecf814SDavid Woodhouse @echo ' (default: $$(INSTALL_MOD_PATH)/lib/firmware)' 13331da177e4SLinus Torvalds @echo ' dir/ - Build all files in dir and below' 13341da177e4SLinus Torvalds @echo ' dir/file.[ois] - Build specified target only' 1335155ad605SSam Ravnborg @echo ' dir/file.ko - Build module including final link' 1336c4d5ee67SRobert P. J. Day @echo ' modules_prepare - Set up for building external modules' 13371da177e4SLinus Torvalds @echo ' tags/TAGS - Generate tags file for editors' 13381da177e4SLinus Torvalds @echo ' cscope - Generate cscope index' 13396d128842SZach Brown @echo ' kernelrelease - Output the release version string' 1340cb58455cSSam Ravnborg @echo ' kernelversion - Output the version stored in Makefile' 13412fb9b1bdSSam Ravnborg @echo ' headers_install - Install sanitised kernel headers to INSTALL_HDR_PATH'; \ 134259df3230SGeert Uytterhoeven echo ' (default: $(INSTALL_HDR_PATH))'; \ 13432fb9b1bdSSam Ravnborg echo '' 13441da177e4SLinus Torvalds @echo 'Static analysers' 13451da177e4SLinus Torvalds @echo ' checkstack - Generate a list of stack hogs' 13461da177e4SLinus Torvalds @echo ' namespacecheck - Name space analysis on compiled kernel' 1347aa025e7dSSam Ravnborg @echo ' versioncheck - Sanity check on version.h usage' 1348ec2d987fSRandy Dunlap @echo ' includecheck - Check for duplicate included header files' 1349295ac051SAdrian Bunk @echo ' export_report - List the usages of all exported symbols' 1350179efcb4SVegard Nossum @echo ' headers_check - Sanity check on exported headers' 1351179efcb4SVegard Nossum @echo ' headerdep - Detect inclusion cycles in headers'; \ 13522fb9b1bdSSam Ravnborg echo '' 13531da177e4SLinus Torvalds @echo 'Kernel packaging:' 13546c2133e1SSam Ravnborg @$(MAKE) $(build)=$(package-dir) help 13551da177e4SLinus Torvalds @echo '' 13561da177e4SLinus Torvalds @echo 'Documentation targets:' 13571da177e4SLinus Torvalds @$(MAKE) -f $(srctree)/Documentation/DocBook/Makefile dochelp 13581da177e4SLinus Torvalds @echo '' 135901dee188SAndres Salomon @echo 'Architecture specific targets ($(SRCARCH)):' 13601da177e4SLinus Torvalds @$(if $(archhelp),$(archhelp),\ 136101dee188SAndres Salomon echo ' No architecture specific help defined for $(SRCARCH)') 13621da177e4SLinus Torvalds @echo '' 13631da177e4SLinus Torvalds @$(if $(boards), \ 13641da177e4SLinus Torvalds $(foreach b, $(boards), \ 13651da177e4SLinus Torvalds printf " %-24s - Build for %s\\n" $(b) $(subst _defconfig,,$(b));) \ 13661da177e4SLinus Torvalds echo '') 13675dffbe81SSegher Boessenkool @$(if $(board-dirs), \ 13685dffbe81SSegher Boessenkool $(foreach b, $(board-dirs), \ 13695dffbe81SSegher Boessenkool printf " %-16s - Show %s-specific targets\\n" help-$(b) $(b);) \ 13705dffbe81SSegher Boessenkool printf " %-16s - Show all of the above\\n" help-boards; \ 13715dffbe81SSegher Boessenkool echo '') 13721da177e4SLinus Torvalds 13731da177e4SLinus Torvalds @echo ' make V=0|1 [targets] 0 => quiet build (default), 1 => verbose build' 137445d506bdSSam Ravnborg @echo ' make V=2 [targets] 2 => give reason for rebuild of target' 13751da177e4SLinus Torvalds @echo ' make O=dir [targets] Locate all output files in "dir", including .config' 1376701842e3SDustin Kirkland @echo ' make C=1 [targets] Check all c source with $$CHECK (sparse by default)' 1377701842e3SDustin Kirkland @echo ' make C=2 [targets] Force check of all c source with $$CHECK' 13781da177e4SLinus Torvalds @echo '' 13791da177e4SLinus Torvalds @echo 'Execute "make" or "make all" to build all targets marked with [*] ' 13801da177e4SLinus Torvalds @echo 'For further info see the ./README file' 13811da177e4SLinus Torvalds 13821da177e4SLinus Torvalds 13835dffbe81SSegher Boessenkoolhelp-board-dirs := $(addprefix help-,$(board-dirs)) 13845dffbe81SSegher Boessenkool 13855dffbe81SSegher Boessenkoolhelp-boards: $(help-board-dirs) 13865dffbe81SSegher Boessenkool 13875dffbe81SSegher Boessenkoolboards-per-dir = $(notdir $(wildcard $(srctree)/arch/$(SRCARCH)/configs/$*/*_defconfig)) 13885dffbe81SSegher Boessenkool 13895dffbe81SSegher Boessenkool$(help-board-dirs): help-%: 13905dffbe81SSegher Boessenkool @echo 'Architecture specific targets ($(SRCARCH) $*):' 13915dffbe81SSegher Boessenkool @$(if $(boards-per-dir), \ 13925dffbe81SSegher Boessenkool $(foreach b, $(boards-per-dir), \ 13935dffbe81SSegher Boessenkool printf " %-24s - Build for %s\\n" $*/$(b) $(subst _defconfig,,$(b));) \ 13945dffbe81SSegher Boessenkool echo '') 13955dffbe81SSegher Boessenkool 13965dffbe81SSegher Boessenkool 13971da177e4SLinus Torvalds# Documentation targets 13981da177e4SLinus Torvalds# --------------------------------------------------------------------------- 13991da177e4SLinus Torvalds%docs: scripts_basic FORCE 14001da177e4SLinus Torvalds $(Q)$(MAKE) $(build)=Documentation/DocBook $@ 14011da177e4SLinus Torvalds 14021da177e4SLinus Torvaldselse # KBUILD_EXTMOD 14031da177e4SLinus Torvalds 14041da177e4SLinus Torvalds### 14051da177e4SLinus Torvalds# External module support. 14061da177e4SLinus Torvalds# When building external modules the kernel used as basis is considered 14071da177e4SLinus Torvalds# read-only, and no consistency checks are made and the make 14081da177e4SLinus Torvalds# system is not used on the basis kernel. If updates are required 14091da177e4SLinus Torvalds# in the basis kernel ordinary make commands (without M=...) must 14101da177e4SLinus Torvalds# be used. 14111da177e4SLinus Torvalds# 14121da177e4SLinus Torvalds# The following are the only valid targets when building external 14131da177e4SLinus Torvalds# modules. 14141da177e4SLinus Torvalds# make M=dir clean Delete all automatically generated files 14151da177e4SLinus Torvalds# make M=dir modules Make all modules in specified dir 14161da177e4SLinus Torvalds# make M=dir Same as 'make M=dir modules' 14171da177e4SLinus Torvalds# make M=dir modules_install 1418070b98bfSSam Ravnborg# Install the modules built in the module directory 14191da177e4SLinus Torvalds# Assumes install directory is already created 14201da177e4SLinus Torvalds 14211da177e4SLinus Torvalds# We are always building modules 14221da177e4SLinus TorvaldsKBUILD_MODULES := 1 14234f193362SPaul SmithPHONY += crmodverdir 14241da177e4SLinus Torvaldscrmodverdir: 14257bb9d092SSam Ravnborg $(cmd_crmodverdir) 14261da177e4SLinus Torvalds 14274f193362SPaul SmithPHONY += $(objtree)/Module.symvers 14281da177e4SLinus Torvalds$(objtree)/Module.symvers: 14291da177e4SLinus Torvalds @test -e $(objtree)/Module.symvers || ( \ 14301da177e4SLinus Torvalds echo; \ 14311da177e4SLinus Torvalds echo " WARNING: Symbol version dump $(objtree)/Module.symvers"; \ 14321da177e4SLinus Torvalds echo " is missing; modules will have no dependencies and modversions."; \ 14331da177e4SLinus Torvalds echo ) 14341da177e4SLinus Torvalds 14351da177e4SLinus Torvaldsmodule-dirs := $(addprefix _module_,$(KBUILD_EXTMOD)) 14364f193362SPaul SmithPHONY += $(module-dirs) modules 14371da177e4SLinus Torvalds$(module-dirs): crmodverdir $(objtree)/Module.symvers 14381da177e4SLinus Torvalds $(Q)$(MAKE) $(build)=$(patsubst _module_%,%,$@) 14391da177e4SLinus Torvalds 14401da177e4SLinus Torvaldsmodules: $(module-dirs) 1441fd54f502SMike Frysinger @$(kecho) ' Building modules, stage 2.'; 1442b805aa0eSSam Ravnborg $(Q)$(MAKE) -f $(srctree)/scripts/Makefile.modpost 14431da177e4SLinus Torvalds 14444f193362SPaul SmithPHONY += modules_install 1445a67dc21aSSam Ravnborgmodules_install: _emodinst_ _emodinst_post 1446a67dc21aSSam Ravnborg 1447a67dc21aSSam Ravnborginstall-dir := $(if $(INSTALL_MOD_DIR),$(INSTALL_MOD_DIR),extra) 14484f193362SPaul SmithPHONY += _emodinst_ 1449a67dc21aSSam Ravnborg_emodinst_: 1450a67dc21aSSam Ravnborg $(Q)mkdir -p $(MODLIB)/$(install-dir) 1451b805aa0eSSam Ravnborg $(Q)$(MAKE) -f $(srctree)/scripts/Makefile.modinst 14521da177e4SLinus Torvalds 14534f193362SPaul SmithPHONY += _emodinst_post 1454a67dc21aSSam Ravnborg_emodinst_post: _emodinst_ 1455a67dc21aSSam Ravnborg $(call cmd,depmod) 1456a67dc21aSSam Ravnborg 14571da177e4SLinus Torvaldsclean-dirs := $(addprefix _clean_,$(KBUILD_EXTMOD)) 14581da177e4SLinus Torvalds 14594f193362SPaul SmithPHONY += $(clean-dirs) clean 14601da177e4SLinus Torvalds$(clean-dirs): 14611da177e4SLinus Torvalds $(Q)$(MAKE) $(clean)=$(patsubst _clean_%,%,$@) 14621da177e4SLinus Torvalds 14631da177e4SLinus Torvaldsclean: rm-dirs := $(MODVERDIR) 14640c56042aSFrédéric Brièreclean: rm-files := $(KBUILD_EXTMOD)/Module.symvers \ 14650c56042aSFrédéric Brière $(KBUILD_EXTMOD)/Module.markers \ 14660c56042aSFrédéric Brière $(KBUILD_EXTMOD)/modules.order 14671da177e4SLinus Torvaldsclean: $(clean-dirs) 14681da177e4SLinus Torvalds $(call cmd,rmdirs) 1469c34114f4SMike Frysinger $(call cmd,rmfiles) 14701da177e4SLinus Torvalds @find $(KBUILD_EXTMOD) $(RCS_FIND_IGNORE) \ 14711da177e4SLinus Torvalds \( -name '*.[oas]' -o -name '*.ko' -o -name '.*.cmd' \ 14722521f2c2SPeter Oberparleiter -o -name '.*.d' -o -name '.*.tmp' -o -name '*.mod.c' \ 14732521f2c2SPeter Oberparleiter -o -name '*.gcno' \) -type f -print | xargs rm -f 14741da177e4SLinus Torvalds 14751da177e4SLinus Torvaldshelp: 14761da177e4SLinus Torvalds @echo ' Building external modules.' 14771da177e4SLinus Torvalds @echo ' Syntax: make -C path/to/kernel/src M=$$PWD target' 14781da177e4SLinus Torvalds @echo '' 14791da177e4SLinus Torvalds @echo ' modules - default target, build the module(s)' 14801da177e4SLinus Torvalds @echo ' modules_install - install the module' 14811da177e4SLinus Torvalds @echo ' clean - remove generated files in module directory only' 14821da177e4SLinus Torvalds @echo '' 148306300b21SSam Ravnborg 148406300b21SSam Ravnborg# Dummies... 14854f193362SPaul SmithPHONY += prepare scripts 148606300b21SSam Ravnborgprepare: ; 148706300b21SSam Ravnborgscripts: ; 14881da177e4SLinus Torvaldsendif # KBUILD_EXTMOD 14891da177e4SLinus Torvalds 14901da177e4SLinus Torvalds# Generate tags for editors 14911da177e4SLinus Torvalds# --------------------------------------------------------------------------- 1492a680eedcSSam Ravnborgquiet_cmd_tags = GEN $@ 1493a680eedcSSam Ravnborg cmd_tags = $(CONFIG_SHELL) $(srctree)/scripts/tags.sh $@ 14941da177e4SLinus Torvalds 1495a680eedcSSam Ravnborgtags TAGS cscope: FORCE 14961da177e4SLinus Torvalds $(call cmd,tags) 14971da177e4SLinus Torvalds 14981da177e4SLinus Torvalds# Scripts to check various things for consistency 14991da177e4SLinus Torvalds# --------------------------------------------------------------------------- 15001da177e4SLinus Torvalds 15011da177e4SLinus Torvaldsincludecheck: 15021da177e4SLinus Torvalds find * $(RCS_FIND_IGNORE) \ 15031da177e4SLinus Torvalds -name '*.[hcS]' -type f -print | sort \ 150480007434SGeert Uytterhoeven | xargs $(PERL) -w $(srctree)/scripts/checkincludes.pl 15051da177e4SLinus Torvalds 15061da177e4SLinus Torvaldsversioncheck: 15071da177e4SLinus Torvalds find * $(RCS_FIND_IGNORE) \ 15081da177e4SLinus Torvalds -name '*.[hcS]' -type f -print | sort \ 150980007434SGeert Uytterhoeven | xargs $(PERL) -w $(srctree)/scripts/checkversion.pl 15101da177e4SLinus Torvalds 15111da177e4SLinus Torvaldsnamespacecheck: 15121da177e4SLinus Torvalds $(PERL) $(srctree)/scripts/namespace.pl 15131da177e4SLinus Torvalds 1514295ac051SAdrian Bunkexport_report: 1515295ac051SAdrian Bunk $(PERL) $(srctree)/scripts/export_report.pl 1516295ac051SAdrian Bunk 15171da177e4SLinus Torvaldsendif #ifeq ($(config-targets),1) 15181da177e4SLinus Torvaldsendif #ifeq ($(mixed-targets),1) 15191da177e4SLinus Torvalds 1520c30a02e0SRoman ZippelPHONY += checkstack kernelrelease kernelversion 1521e3ccf6e3SJeff Dike 1522011e3a9aSJeff Dike# UML needs a little special treatment here. It wants to use the host 1523011e3a9aSJeff Dike# toolchain, so needs $(SUBARCH) passed to checkstack.pl. Everyone 1524011e3a9aSJeff Dike# else wants $(ARCH), including people doing cross-builds, which means 1525011e3a9aSJeff Dike# that $(SUBARCH) doesn't work here. 1526011e3a9aSJeff Dikeifeq ($(ARCH), um) 1527011e3a9aSJeff DikeCHECKSTACK_ARCH := $(SUBARCH) 1528011e3a9aSJeff Dikeelse 1529011e3a9aSJeff DikeCHECKSTACK_ARCH := $(ARCH) 1530011e3a9aSJeff Dikeendif 15311da177e4SLinus Torvaldscheckstack: 15321da177e4SLinus Torvalds $(OBJDUMP) -d vmlinux $$(find . -name '*.ko') | \ 1533011e3a9aSJeff Dike $(PERL) $(src)/scripts/checkstack.pl $(CHECKSTACK_ARCH) 15341da177e4SLinus Torvalds 15351da177e4SLinus Torvaldskernelrelease: 1536f1d28fb0SRoman Zippel $(if $(wildcard include/config/kernel.release), $(Q)echo $(KERNELRELEASE), \ 1537f1d28fb0SRoman Zippel $(error kernelrelease not valid - run 'make prepare' to update it)) 1538cb58455cSSam Ravnborgkernelversion: 15392244cbd8SSam Ravnborg @echo $(KERNELVERSION) 15401da177e4SLinus Torvalds 154106300b21SSam Ravnborg# Single targets 154206300b21SSam Ravnborg# --------------------------------------------------------------------------- 1543bc2546a6SSam Ravnborg# Single targets are compatible with: 1544e1b8513dSRobert P. J. Day# - build with mixed source and output 1545bc2546a6SSam Ravnborg# - build with separate output dir 'make O=...' 1546bc2546a6SSam Ravnborg# - external modules 1547bc2546a6SSam Ravnborg# 1548bc2546a6SSam Ravnborg# target-dir => where to store outputfile 1549bc2546a6SSam Ravnborg# build-dir => directory in kernel source tree to use 155006300b21SSam Ravnborg 155106300b21SSam Ravnborgifeq ($(KBUILD_EXTMOD),) 1552aa360879SSam Ravnborg build-dir = $(patsubst %/,%,$(dir $@)) 1553bc2546a6SSam Ravnborg target-dir = $(dir $@) 155406300b21SSam Ravnborgelse 155506300b21SSam Ravnborg zap-slash=$(filter-out .,$(patsubst %/,%,$(dir $@))) 1556bc2546a6SSam Ravnborg build-dir = $(KBUILD_EXTMOD)$(if $(zap-slash),/$(zap-slash)) 1557bc2546a6SSam Ravnborg target-dir = $(if $(KBUILD_EXTMOD),$(dir $<),$(dir $@)) 155806300b21SSam Ravnborgendif 155906300b21SSam Ravnborg 1560bc2546a6SSam Ravnborg%.s: %.c prepare scripts FORCE 1561bc2546a6SSam Ravnborg $(Q)$(MAKE) $(build)=$(build-dir) $(target-dir)$(notdir $@) 1562bc2546a6SSam Ravnborg%.i: %.c prepare scripts FORCE 1563bc2546a6SSam Ravnborg $(Q)$(MAKE) $(build)=$(build-dir) $(target-dir)$(notdir $@) 1564bc2546a6SSam Ravnborg%.o: %.c prepare scripts FORCE 1565bc2546a6SSam Ravnborg $(Q)$(MAKE) $(build)=$(build-dir) $(target-dir)$(notdir $@) 1566bc2546a6SSam Ravnborg%.lst: %.c prepare scripts FORCE 1567bc2546a6SSam Ravnborg $(Q)$(MAKE) $(build)=$(build-dir) $(target-dir)$(notdir $@) 1568bc2546a6SSam Ravnborg%.s: %.S prepare scripts FORCE 1569bc2546a6SSam Ravnborg $(Q)$(MAKE) $(build)=$(build-dir) $(target-dir)$(notdir $@) 1570bc2546a6SSam Ravnborg%.o: %.S prepare scripts FORCE 1571bc2546a6SSam Ravnborg $(Q)$(MAKE) $(build)=$(build-dir) $(target-dir)$(notdir $@) 157215fde675SAndreas Gruenbacher%.symtypes: %.c prepare scripts FORCE 157315fde675SAndreas Gruenbacher $(Q)$(MAKE) $(build)=$(build-dir) $(target-dir)$(notdir $@) 1574bc2546a6SSam Ravnborg 1575bc2546a6SSam Ravnborg# Modules 157631110ebbSSam Ravnborg/: prepare scripts FORCE 157731110ebbSSam Ravnborg $(cmd_crmodverdir) 157831110ebbSSam Ravnborg $(Q)$(MAKE) KBUILD_MODULES=$(if $(CONFIG_MODULES),1) \ 157931110ebbSSam Ravnborg $(build)=$(build-dir) 158031110ebbSSam Ravnborg%/: prepare scripts FORCE 15817bb9d092SSam Ravnborg $(cmd_crmodverdir) 158206300b21SSam Ravnborg $(Q)$(MAKE) KBUILD_MODULES=$(if $(CONFIG_MODULES),1) \ 1583bc2546a6SSam Ravnborg $(build)=$(build-dir) 1584bc2546a6SSam Ravnborg%.ko: prepare scripts FORCE 15857bb9d092SSam Ravnborg $(cmd_crmodverdir) 158606300b21SSam Ravnborg $(Q)$(MAKE) KBUILD_MODULES=$(if $(CONFIG_MODULES),1) \ 1587bc2546a6SSam Ravnborg $(build)=$(build-dir) $(@:.ko=.o) 1588b805aa0eSSam Ravnborg $(Q)$(MAKE) -f $(srctree)/scripts/Makefile.modpost 158906300b21SSam Ravnborg 15901da177e4SLinus Torvalds# FIXME Should go into a make.lib or something 15911da177e4SLinus Torvalds# =========================================================================== 15921da177e4SLinus Torvalds 15931da177e4SLinus Torvaldsquiet_cmd_rmdirs = $(if $(wildcard $(rm-dirs)),CLEAN $(wildcard $(rm-dirs))) 15941da177e4SLinus Torvalds cmd_rmdirs = rm -rf $(rm-dirs) 15951da177e4SLinus Torvalds 15961da177e4SLinus Torvaldsquiet_cmd_rmfiles = $(if $(wildcard $(rm-files)),CLEAN $(wildcard $(rm-files))) 15971da177e4SLinus Torvalds cmd_rmfiles = rm -f $(rm-files) 15981da177e4SLinus Torvalds 1599bc3c26feSUwe Kleine-König# Run depmod only if we have System.map and depmod is executable 160050a8ec31SSam Ravnborgquiet_cmd_depmod = DEPMOD $(KERNELRELEASE) 160150a8ec31SSam Ravnborg cmd_depmod = \ 1602d8d2e78aSSam Ravnborg if [ -r System.map -a -x $(DEPMOD) ]; then \ 160350a8ec31SSam Ravnborg $(DEPMOD) -ae -F System.map \ 160475bccd88SGilles Espinasse $(if $(strip $(INSTALL_MOD_PATH)), -b $(INSTALL_MOD_PATH) ) \ 160550a8ec31SSam Ravnborg $(KERNELRELEASE); \ 160650a8ec31SSam Ravnborg fi 160750a8ec31SSam Ravnborg 16087bb9d092SSam Ravnborg# Create temporary dir for module support files 1609ab19f879SSam Ravnborg# clean it up only when building all modules 1610ab19f879SSam Ravnborgcmd_crmodverdir = $(Q)mkdir -p $(MODVERDIR) \ 1611ab19f879SSam Ravnborg $(if $(KBUILD_MODULES),; rm -f $(MODVERDIR)/*) 16121da177e4SLinus Torvalds 1613222d394dSSam Ravnborga_flags = -Wp,-MD,$(depfile) $(KBUILD_AFLAGS) $(AFLAGS_KERNEL) \ 1614d8672b40SSam Ravnborg $(NOSTDINC_FLAGS) $(LINUXINCLUDE) $(KBUILD_CPPFLAGS) \ 16155e8d780dSSam Ravnborg $(modkern_aflags) $(EXTRA_AFLAGS) $(AFLAGS_$(basetarget).o) 16161da177e4SLinus Torvalds 16171da177e4SLinus Torvaldsquiet_cmd_as_o_S = AS $@ 16181da177e4SLinus Torvaldscmd_as_o_S = $(CC) $(a_flags) -c -o $@ $< 16191da177e4SLinus Torvalds 16201da177e4SLinus Torvalds# read all saved command lines 16211da177e4SLinus Torvalds 16221da177e4SLinus Torvaldstargets := $(wildcard $(sort $(targets))) 16231da177e4SLinus Torvaldscmd_files := $(wildcard .*.cmd $(foreach f,$(targets),$(dir $(f)).$(notdir $(f)).cmd)) 16241da177e4SLinus Torvalds 16251da177e4SLinus Torvaldsifneq ($(cmd_files),) 16261da177e4SLinus Torvalds $(cmd_files): ; # Do not try to update included dependency files 16271da177e4SLinus Torvalds include $(cmd_files) 16281da177e4SLinus Torvaldsendif 16291da177e4SLinus Torvalds 16301da177e4SLinus Torvalds# Shorthand for $(Q)$(MAKE) -f scripts/Makefile.clean obj=dir 16311da177e4SLinus Torvalds# Usage: 16321da177e4SLinus Torvalds# $(Q)$(MAKE) $(clean)=dir 16331da177e4SLinus Torvaldsclean := -f $(if $(KBUILD_SRC),$(srctree)/)scripts/Makefile.clean obj 16341da177e4SLinus Torvalds 16351da177e4SLinus Torvaldsendif # skip-makefile 16361da177e4SLinus Torvalds 16374f193362SPaul SmithPHONY += FORCE 16381da177e4SLinus TorvaldsFORCE: 16394f193362SPaul Smith 16404f193362SPaul Smith# Declare the contents of the .PHONY variable as phony. We keep that 1641fe8d0a41SKirill Smelkov# information in a variable so we can use it in if_changed and friends. 16424f193362SPaul Smith.PHONY: $(PHONY) 1643