11da177e4SLinus TorvaldsVERSION = 2 21da177e4SLinus TorvaldsPATCHLEVEL = 6 317d857beSLinus TorvaldsSUBLEVEL = 32 4*22763c5cSLinus 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 1824ce6efedSSam Ravnborgexport KBUILD_BUILDHOST := $(SUBARCH) 1832331d1a6SSam RavnborgARCH ?= $(SUBARCH) 1842331d1a6SSam RavnborgCROSS_COMPILE ?= 1851da177e4SLinus Torvalds 1861da177e4SLinus Torvalds# Architecture as present in compile.h 1871da177e4SLinus TorvaldsUTS_MACHINE := $(ARCH) 1886752ed90SThomas GleixnerSRCARCH := $(ARCH) 1891da177e4SLinus Torvalds 190d746d647SSam Ravnborg# Additional ARCH settings for x86 191d746d647SSam Ravnborgifeq ($(ARCH),i386) 192d746d647SSam Ravnborg SRCARCH := x86 193d746d647SSam Ravnborgendif 194d746d647SSam Ravnborgifeq ($(ARCH),x86_64) 195d746d647SSam Ravnborg SRCARCH := x86 196d746d647SSam Ravnborgendif 19774b469f2SSam Ravnborg 1985e538790SSam Ravnborg# Additional ARCH settings for sparc 199a439fe51SSam Ravnborgifeq ($(ARCH),sparc64) 2005e538790SSam Ravnborg SRCARCH := sparc 201a439fe51SSam Ravnborgendif 2022fb9b1bdSSam Ravnborg 2033cc000b5SPaul Mundt# Additional ARCH settings for sh 2043cc000b5SPaul Mundtifeq ($(ARCH),sh64) 2053cc000b5SPaul Mundt SRCARCH := sh 2063cc000b5SPaul Mundtendif 2073cc000b5SPaul Mundt 2085e538790SSam Ravnborg# Where to locate arch specific headers 2095e538790SSam Ravnborghdr-arch := $(SRCARCH) 2105e538790SSam Ravnborg 21149148020SSam Ravnborgifeq ($(ARCH),m68knommu) 21249148020SSam Ravnborg hdr-arch := m68k 21349148020SSam Ravnborgendif 21449148020SSam Ravnborg 21514cdd3c4SRoman ZippelKCONFIG_CONFIG ?= .config 21614cdd3c4SRoman Zippel 2171da177e4SLinus Torvalds# SHELL used by kbuild 2181da177e4SLinus TorvaldsCONFIG_SHELL := $(shell if [ -x "$$BASH" ]; then echo $$BASH; \ 2191da177e4SLinus Torvalds else if [ -x /bin/bash ]; then echo /bin/bash; \ 2201da177e4SLinus Torvalds else echo sh; fi ; fi) 2211da177e4SLinus Torvalds 2221da177e4SLinus TorvaldsHOSTCC = gcc 2231da177e4SLinus TorvaldsHOSTCXX = g++ 22425583d4bSJosh TriplettHOSTCFLAGS = -Wall -Wmissing-prototypes -Wstrict-prototypes -O2 -fomit-frame-pointer 2251da177e4SLinus TorvaldsHOSTCXXFLAGS = -O2 2261da177e4SLinus Torvalds 2271da177e4SLinus Torvalds# Decide whether to build built-in, modular, or both. 2281da177e4SLinus Torvalds# Normally, just do built-in. 2291da177e4SLinus Torvalds 2301da177e4SLinus TorvaldsKBUILD_MODULES := 2311da177e4SLinus TorvaldsKBUILD_BUILTIN := 1 2321da177e4SLinus Torvalds 2331da177e4SLinus Torvalds# If we have only "make modules", don't compile built-in objects. 2341da177e4SLinus Torvalds# When we're building modules with modversions, we need to consider 2351da177e4SLinus Torvalds# the built-in objects during the descend as well, in order to 2361da177e4SLinus Torvalds# make sure the checksums are up to date before we record them. 2371da177e4SLinus Torvalds 2381da177e4SLinus Torvaldsifeq ($(MAKECMDGOALS),modules) 2391da177e4SLinus Torvalds KBUILD_BUILTIN := $(if $(CONFIG_MODVERSIONS),1) 2401da177e4SLinus Torvaldsendif 2411da177e4SLinus Torvalds 2421da177e4SLinus Torvalds# If we have "make <whatever> modules", compile modules 2431da177e4SLinus Torvalds# in addition to whatever we do anyway. 2441da177e4SLinus Torvalds# Just "make" or "make all" shall build modules as well 2451da177e4SLinus Torvalds 2461da177e4SLinus Torvaldsifneq ($(filter all _all modules,$(MAKECMDGOALS)),) 2471da177e4SLinus Torvalds KBUILD_MODULES := 1 2481da177e4SLinus Torvaldsendif 2491da177e4SLinus Torvalds 2501da177e4SLinus Torvaldsifeq ($(MAKECMDGOALS),) 2511da177e4SLinus Torvalds KBUILD_MODULES := 1 2521da177e4SLinus Torvaldsendif 2531da177e4SLinus Torvalds 254e579d351SSam Ravnborgexport KBUILD_MODULES KBUILD_BUILTIN 2551da177e4SLinus Torvaldsexport KBUILD_CHECKSRC KBUILD_SRC KBUILD_EXTMOD 2561da177e4SLinus Torvalds 2571da177e4SLinus Torvalds# Beautify output 2581da177e4SLinus Torvalds# --------------------------------------------------------------------------- 2591da177e4SLinus Torvalds# 2601da177e4SLinus Torvalds# Normally, we echo the whole command before executing it. By making 2611da177e4SLinus Torvalds# that echo $($(quiet)$(cmd)), we now have the possibility to set 2621da177e4SLinus Torvalds# $(quiet) to choose other forms of output instead, e.g. 2631da177e4SLinus Torvalds# 2641da177e4SLinus Torvalds# quiet_cmd_cc_o_c = Compiling $(RELDIR)/$@ 2651da177e4SLinus Torvalds# cmd_cc_o_c = $(CC) $(c_flags) -c -o $@ $< 2661da177e4SLinus Torvalds# 2671da177e4SLinus Torvalds# If $(quiet) is empty, the whole command will be printed. 2681da177e4SLinus Torvalds# If it is set to "quiet_", only the short version will be printed. 269070b98bfSSam Ravnborg# If it is set to "silent_", nothing will be printed at all, since 2701da177e4SLinus Torvalds# the variable $(silent_cmd_cc_o_c) doesn't exist. 2711da177e4SLinus Torvalds# 272a58a414fSAdrian Bunk# A simple variant is to prefix commands with $(Q) - that's useful 2731da177e4SLinus Torvalds# for commands that shall be hidden in non-verbose mode. 2741da177e4SLinus Torvalds# 2751da177e4SLinus Torvalds# $(Q)ln $@ :< 2761da177e4SLinus Torvalds# 2771da177e4SLinus Torvalds# If KBUILD_VERBOSE equals 0 then the above command will be hidden. 2781da177e4SLinus Torvalds# If KBUILD_VERBOSE equals 1 then the above command is displayed. 2791da177e4SLinus Torvalds 2801da177e4SLinus Torvaldsifeq ($(KBUILD_VERBOSE),1) 2811da177e4SLinus Torvalds quiet = 2821da177e4SLinus Torvalds Q = 2831da177e4SLinus Torvaldselse 2841da177e4SLinus Torvalds quiet=quiet_ 2851da177e4SLinus Torvalds Q = @ 2861da177e4SLinus Torvaldsendif 2871da177e4SLinus Torvalds 2881da177e4SLinus Torvalds# If the user is running make -s (silent mode), suppress echoing of 2891da177e4SLinus Torvalds# commands 2901da177e4SLinus Torvalds 2911da177e4SLinus Torvaldsifneq ($(findstring s,$(MAKEFLAGS)),) 2921da177e4SLinus Torvalds quiet=silent_ 2931da177e4SLinus Torvaldsendif 2941da177e4SLinus Torvalds 2951da177e4SLinus Torvaldsexport quiet Q KBUILD_VERBOSE 2961da177e4SLinus Torvalds 2971da177e4SLinus Torvalds 2981da177e4SLinus Torvalds# Look for make include files relative to root of kernel src 2991da177e4SLinus TorvaldsMAKEFLAGS += --include-dir=$(srctree) 3001da177e4SLinus Torvalds 3011cacc9abSSam Ravnborg# We need some generic definitions (do not try to remake the file). 3021cacc9abSSam Ravnborg$(srctree)/scripts/Kbuild.include: ; 3032a691470SSam Ravnborginclude $(srctree)/scripts/Kbuild.include 3048ec4b4ffSSam Ravnborg 3051da177e4SLinus Torvalds# Make variables (CC, etc...) 3061da177e4SLinus Torvalds 3071da177e4SLinus TorvaldsAS = $(CROSS_COMPILE)as 3081da177e4SLinus TorvaldsLD = $(CROSS_COMPILE)ld 3091da177e4SLinus TorvaldsCC = $(CROSS_COMPILE)gcc 3101da177e4SLinus TorvaldsCPP = $(CC) -E 3111da177e4SLinus TorvaldsAR = $(CROSS_COMPILE)ar 3121da177e4SLinus TorvaldsNM = $(CROSS_COMPILE)nm 3131da177e4SLinus TorvaldsSTRIP = $(CROSS_COMPILE)strip 3141da177e4SLinus TorvaldsOBJCOPY = $(CROSS_COMPILE)objcopy 3151da177e4SLinus TorvaldsOBJDUMP = $(CROSS_COMPILE)objdump 3161da177e4SLinus TorvaldsAWK = awk 3171da177e4SLinus TorvaldsGENKSYMS = scripts/genksyms/genksyms 318caa27b66SSam RavnborgINSTALLKERNEL := installkernel 3191da177e4SLinus TorvaldsDEPMOD = /sbin/depmod 3201da177e4SLinus TorvaldsKALLSYMS = scripts/kallsyms 3211da177e4SLinus TorvaldsPERL = perl 3221da177e4SLinus TorvaldsCHECK = sparse 3231da177e4SLinus Torvalds 32480a7d1d9SHannes EderCHECKFLAGS := -D__linux__ -Dlinux -D__STDC__ -Dunix -D__unix__ \ 32580a7d1d9SHannes Eder -Wbitwise -Wno-return-void $(CF) 3261da177e4SLinus TorvaldsMODFLAGS = -DMODULE 3271da177e4SLinus TorvaldsCFLAGS_MODULE = $(MODFLAGS) 3281da177e4SLinus TorvaldsAFLAGS_MODULE = $(MODFLAGS) 329405d967dSTejun HeoLDFLAGS_MODULE = -T $(srctree)/scripts/module-common.lds 3301da177e4SLinus TorvaldsCFLAGS_KERNEL = 3311da177e4SLinus TorvaldsAFLAGS_KERNEL = 3322521f2c2SPeter OberparleiterCFLAGS_GCOV = -fprofile-arcs -ftest-coverage 3331da177e4SLinus Torvalds 3341da177e4SLinus Torvalds 3351da177e4SLinus Torvalds# Use LINUXINCLUDE when you must reference the include/ directory. 3361da177e4SLinus Torvalds# Needed to be compatible with the O= option 3371da177e4SLinus TorvaldsLINUXINCLUDE := -Iinclude \ 3382dd34b48SRussell King $(if $(KBUILD_SRC),-Iinclude2 -I$(srctree)/include) \ 3395e4786f7SSam Ravnborg -I$(srctree)/arch/$(hdr-arch)/include \ 340e623a3b8SZachary Amsden -include include/linux/autoconf.h 3411da177e4SLinus Torvalds 342d8672b40SSam RavnborgKBUILD_CPPFLAGS := -D__KERNEL__ 3431da177e4SLinus Torvalds 344a0f97e06SSam RavnborgKBUILD_CFLAGS := -Wall -Wundef -Wstrict-prototypes -Wno-trigraphs \ 34594bed2a9SDave Jones -fno-strict-aliasing -fno-common \ 346a8735821SFloris Kraak -Werror-implicit-function-declaration \ 347a3ca86aeSEugene Teo -Wno-format-security \ 348a3ca86aeSEugene Teo -fno-delete-null-pointer-checks 349222d394dSSam RavnborgKBUILD_AFLAGS := -D__ASSEMBLY__ 3501da177e4SLinus Torvalds 351f1d28fb0SRoman Zippel# Read KERNELRELEASE from include/config/kernel.release (if it exists) 352f1d28fb0SRoman ZippelKERNELRELEASE = $(shell cat include/config/kernel.release 2> /dev/null) 3532244cbd8SSam RavnborgKERNELVERSION = $(VERSION).$(PATCHLEVEL).$(SUBLEVEL)$(EXTRAVERSION) 354cb58455cSSam Ravnborg 355070b98bfSSam Ravnborgexport VERSION PATCHLEVEL SUBLEVEL KERNELRELEASE KERNELVERSION 35680ef88d6SSam Ravnborgexport ARCH SRCARCH CONFIG_SHELL HOSTCC HOSTCFLAGS CROSS_COMPILE AS LD CC 357caa27b66SSam Ravnborgexport CPP AR NM STRIP OBJCOPY OBJDUMP 358caa27b66SSam Ravnborgexport MAKE AWK GENKSYMS INSTALLKERNEL PERL UTS_MACHINE 359070b98bfSSam Ravnborgexport HOSTCXX HOSTCXXFLAGS LDFLAGS_MODULE CHECK CHECKFLAGS 3601da177e4SLinus Torvalds 36106c5040cSSam Ravnborgexport KBUILD_CPPFLAGS NOSTDINC_FLAGS LINUXINCLUDE OBJCOPYFLAGS LDFLAGS 3622521f2c2SPeter Oberparleiterexport KBUILD_CFLAGS CFLAGS_KERNEL CFLAGS_MODULE CFLAGS_GCOV 363222d394dSSam Ravnborgexport KBUILD_AFLAGS AFLAGS_KERNEL AFLAGS_MODULE 3641da177e4SLinus Torvalds 3651da177e4SLinus Torvalds# When compiling out-of-tree modules, put MODVERDIR in the module 3661da177e4SLinus Torvalds# tree rather than in the kernel tree. The kernel tree might 3671da177e4SLinus Torvalds# even be read-only. 3681da177e4SLinus Torvaldsexport MODVERDIR := $(if $(KBUILD_EXTMOD),$(firstword $(KBUILD_EXTMOD))/).tmp_versions 3691da177e4SLinus Torvalds 3701da177e4SLinus Torvalds# Files to ignore in find ... statements 3711da177e4SLinus Torvalds 372406119f4STrond 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 373406119f4STrond Myklebustexport RCS_TAR_IGNORE := --exclude SCCS --exclude BitKeeper --exclude .svn --exclude CVS --exclude .pc --exclude .hg --exclude .git 3741da177e4SLinus Torvalds 3751da177e4SLinus Torvalds# =========================================================================== 3761da177e4SLinus Torvalds# Rules shared between *config targets and build targets 3771da177e4SLinus Torvalds 3781da177e4SLinus Torvalds# Basic helpers built in scripts/ 3794f193362SPaul SmithPHONY += scripts_basic 3801da177e4SLinus Torvaldsscripts_basic: 3811da177e4SLinus Torvalds $(Q)$(MAKE) $(build)=scripts/basic 3821da177e4SLinus Torvalds 383cd05e6bdSJan Beulich# To avoid any implicit rule to kick in, define an empty command. 384cd05e6bdSJan Beulichscripts/basic/%: scripts_basic ; 385cd05e6bdSJan Beulich 3864f193362SPaul SmithPHONY += outputmakefile 387fd5f0cd6SJan Beulich# outputmakefile generates a Makefile in the output directory, if using a 388fd5f0cd6SJan Beulich# separate output directory. This allows convenient use of make in the 389fd5f0cd6SJan Beulich# output directory. 3901da177e4SLinus Torvaldsoutputmakefile: 391fd5f0cd6SJan Beulichifneq ($(KBUILD_SRC),) 39292979997SAndi Kleen $(Q)ln -fsn $(srctree) source 393fd5f0cd6SJan Beulich $(Q)$(CONFIG_SHELL) $(srctree)/scripts/mkmakefile \ 394fd5f0cd6SJan Beulich $(srctree) $(objtree) $(VERSION) $(PATCHLEVEL) 395fd5f0cd6SJan Beulichendif 3961da177e4SLinus Torvalds 3971da177e4SLinus Torvalds# To make sure we do not include .config for any of the *config targets 3981da177e4SLinus Torvalds# catch them early, and hand them over to scripts/kconfig/Makefile 3991da177e4SLinus Torvalds# It is allowed to specify more targets when calling make, including 4001da177e4SLinus Torvalds# mixing *config targets and build targets. 4011da177e4SLinus Torvalds# For example 'make oldconfig all'. 4021da177e4SLinus Torvalds# Detect when mixed targets is specified, and make a second invocation 4031da177e4SLinus Torvalds# of make so .config is not included in this case either (for *config). 4041da177e4SLinus Torvalds 4053eb3c740SRoman Zippelno-dot-config-targets := clean mrproper distclean \ 406c30a02e0SRoman Zippel cscope TAGS tags help %docs check% \ 4073eb3c740SRoman Zippel include/linux/version.h headers_% \ 4083eb3c740SRoman Zippel kernelrelease kernelversion 4091da177e4SLinus Torvalds 4101da177e4SLinus Torvaldsconfig-targets := 0 4111da177e4SLinus Torvaldsmixed-targets := 0 4121da177e4SLinus Torvaldsdot-config := 1 4131da177e4SLinus Torvalds 4141da177e4SLinus Torvaldsifneq ($(filter $(no-dot-config-targets), $(MAKECMDGOALS)),) 4151da177e4SLinus Torvalds ifeq ($(filter-out $(no-dot-config-targets), $(MAKECMDGOALS)),) 4161da177e4SLinus Torvalds dot-config := 0 4171da177e4SLinus Torvalds endif 4181da177e4SLinus Torvaldsendif 4191da177e4SLinus Torvalds 4201da177e4SLinus Torvaldsifeq ($(KBUILD_EXTMOD),) 4211da177e4SLinus Torvalds ifneq ($(filter config %config,$(MAKECMDGOALS)),) 4221da177e4SLinus Torvalds config-targets := 1 4231da177e4SLinus Torvalds ifneq ($(filter-out config %config,$(MAKECMDGOALS)),) 4241da177e4SLinus Torvalds mixed-targets := 1 4251da177e4SLinus Torvalds endif 4261da177e4SLinus Torvalds endif 4271da177e4SLinus Torvaldsendif 4281da177e4SLinus Torvalds 4291da177e4SLinus Torvaldsifeq ($(mixed-targets),1) 4301da177e4SLinus Torvalds# =========================================================================== 4311da177e4SLinus Torvalds# We're called with mixed targets (*config and build targets). 4321da177e4SLinus Torvalds# Handle them one by one. 4331da177e4SLinus Torvalds 4341da177e4SLinus Torvalds%:: FORCE 4351da177e4SLinus Torvalds $(Q)$(MAKE) -C $(srctree) KBUILD_SRC= $@ 4361da177e4SLinus Torvalds 4371da177e4SLinus Torvaldselse 4381da177e4SLinus Torvaldsifeq ($(config-targets),1) 4391da177e4SLinus Torvalds# =========================================================================== 4401da177e4SLinus Torvalds# *config targets only - make sure prerequisites are updated, and descend 4411da177e4SLinus Torvalds# in scripts/kconfig to make the *config target 4421da177e4SLinus Torvalds 4431da177e4SLinus Torvalds# Read arch specific Makefile to set KBUILD_DEFCONFIG as needed. 4441da177e4SLinus Torvalds# KBUILD_DEFCONFIG may point out an alternative default configuration 4451da177e4SLinus Torvalds# used for 'make defconfig' 44674b469f2SSam Ravnborginclude $(srctree)/arch/$(SRCARCH)/Makefile 44761bee204SAl Viroexport KBUILD_DEFCONFIG KBUILD_KCONFIG 4481da177e4SLinus Torvalds 44931110ebbSSam Ravnborgconfig: scripts_basic outputmakefile FORCE 45031110ebbSSam Ravnborg $(Q)mkdir -p include/linux include/config 45131110ebbSSam Ravnborg $(Q)$(MAKE) $(build)=scripts/kconfig $@ 45231110ebbSSam Ravnborg 45331110ebbSSam Ravnborg%config: scripts_basic outputmakefile FORCE 454c955ccafSRoman Zippel $(Q)mkdir -p include/linux include/config 4551da177e4SLinus Torvalds $(Q)$(MAKE) $(build)=scripts/kconfig $@ 4561da177e4SLinus Torvalds 4571da177e4SLinus Torvaldselse 4581da177e4SLinus Torvalds# =========================================================================== 4591da177e4SLinus Torvalds# Build targets only - this includes vmlinux, arch specific targets, clean 4601da177e4SLinus Torvalds# targets and others. In general all targets except *config targets. 4611da177e4SLinus Torvalds 4621da177e4SLinus Torvaldsifeq ($(KBUILD_EXTMOD),) 4631da177e4SLinus Torvalds# Additional helpers built in scripts/ 4641da177e4SLinus Torvalds# Carefully list dependencies so we do not try to build scripts twice 465070b98bfSSam Ravnborg# in parallel 4664f193362SPaul SmithPHONY += scripts 4672e3646e5SRoman Zippelscripts: scripts_basic include/config/auto.conf 4681da177e4SLinus Torvalds $(Q)$(MAKE) $(build)=$(@) 4691da177e4SLinus Torvalds 4701da177e4SLinus Torvalds# Objects we will link into vmlinux / subdirs we need to visit 4711da177e4SLinus Torvaldsinit-y := init/ 4724d2acfbfSDavid Woodhousedrivers-y := drivers/ sound/ firmware/ 4731da177e4SLinus Torvaldsnet-y := net/ 4741da177e4SLinus Torvaldslibs-y := lib/ 4751da177e4SLinus Torvaldscore-y := usr/ 4761da177e4SLinus Torvaldsendif # KBUILD_EXTMOD 4771da177e4SLinus Torvalds 4781da177e4SLinus Torvaldsifeq ($(dot-config),1) 4799ee4e336SSam Ravnborg# Read in config 4809ee4e336SSam Ravnborg-include include/config/auto.conf 4811da177e4SLinus Torvalds 4829ee4e336SSam Ravnborgifeq ($(KBUILD_EXTMOD),) 4831da177e4SLinus Torvalds# Read in dependencies to all Kconfig* files, make sure to run 4841da177e4SLinus Torvalds# oldconfig if changes are detected. 485c955ccafSRoman Zippel-include include/config/auto.conf.cmd 4861da177e4SLinus Torvalds 4871da177e4SLinus Torvalds# To avoid any implicit rule to kick in, define an empty command 48814cdd3c4SRoman Zippel$(KCONFIG_CONFIG) include/config/auto.conf.cmd: ; 4891da177e4SLinus Torvalds 490c955ccafSRoman Zippel# If .config is newer than include/config/auto.conf, someone tinkered 491752625cfSSam Ravnborg# with it and forgot to run make oldconfig. 492070b98bfSSam Ravnborg# if auto.conf.cmd is missing then we are probably in a cleaned tree so 493752625cfSSam Ravnborg# we execute the config step to be sure to catch updated Kconfig files 49414cdd3c4SRoman Zippelinclude/config/auto.conf: $(KCONFIG_CONFIG) include/config/auto.conf.cmd 4951da177e4SLinus Torvalds $(Q)$(MAKE) -f $(srctree)/Makefile silentoldconfig 4961da177e4SLinus Torvaldselse 4979ee4e336SSam Ravnborg# external modules needs include/linux/autoconf.h and include/config/auto.conf 4989ee4e336SSam Ravnborg# but do not care if they are up-to-date. Use auto.conf to trigger the test 4999ee4e336SSam RavnborgPHONY += include/config/auto.conf 5009ee4e336SSam Ravnborg 5019ee4e336SSam Ravnborginclude/config/auto.conf: 5029ee4e336SSam Ravnborg $(Q)test -e include/linux/autoconf.h -a -e $@ || ( \ 5039ee4e336SSam Ravnborg echo; \ 5049ee4e336SSam Ravnborg echo " ERROR: Kernel configuration is invalid."; \ 5059ee4e336SSam Ravnborg echo " include/linux/autoconf.h or $@ are missing."; \ 5069ee4e336SSam Ravnborg echo " Run 'make oldconfig && make prepare' on kernel src to fix it."; \ 5079ee4e336SSam Ravnborg echo; \ 5089ee4e336SSam Ravnborg /bin/false) 5099ee4e336SSam Ravnborg 5109ee4e336SSam Ravnborgendif # KBUILD_EXTMOD 511c955ccafSRoman Zippel 5121da177e4SLinus Torvaldselse 5131da177e4SLinus Torvalds# Dummy target needed, because used as prerequisite 514c955ccafSRoman Zippelinclude/config/auto.conf: ; 5159ee4e336SSam Ravnborgendif # $(dot-config) 5161da177e4SLinus Torvalds 5171da177e4SLinus Torvalds# The all: target is the default when no target is given on the 5181da177e4SLinus Torvalds# command line. 5191da177e4SLinus Torvalds# This allow a user to issue only 'make' to build a kernel including modules 520070b98bfSSam Ravnborg# Defaults vmlinux but it is usually overridden in the arch makefile 5211da177e4SLinus Torvaldsall: vmlinux 5221da177e4SLinus Torvalds 5231da177e4SLinus Torvaldsifdef CONFIG_CC_OPTIMIZE_FOR_SIZE 524a0f97e06SSam RavnborgKBUILD_CFLAGS += -Os 5251da177e4SLinus Torvaldselse 526a0f97e06SSam RavnborgKBUILD_CFLAGS += -O2 5271da177e4SLinus Torvaldsendif 5281da177e4SLinus Torvalds 529bef5b54bSRalf Baechleinclude $(srctree)/arch/$(SRCARCH)/Makefile 530bef5b54bSRalf Baechle 53108f67461SMike Frysingerifneq ($(CONFIG_FRAME_WARN),0) 53235bb5b1eSAndi KleenKBUILD_CFLAGS += $(call cc-option,-Wframe-larger-than=${CONFIG_FRAME_WARN}) 53335bb5b1eSAndi Kleenendif 53435bb5b1eSAndi Kleen 535e06b8b98SSam Ravnborg# Force gcc to behave correct even for buggy distributions 5365d707e9cSTejun Heoifndef CONFIG_CC_STACKPROTECTOR 537e06b8b98SSam RavnborgKBUILD_CFLAGS += $(call cc-option, -fno-stack-protector) 5385d707e9cSTejun Heoendif 539e06b8b98SSam Ravnborg 5401da177e4SLinus Torvaldsifdef CONFIG_FRAME_POINTER 541a0f97e06SSam RavnborgKBUILD_CFLAGS += -fno-omit-frame-pointer -fno-optimize-sibling-calls 5421da177e4SLinus Torvaldselse 543a0f97e06SSam RavnborgKBUILD_CFLAGS += -fomit-frame-pointer 5441da177e4SLinus Torvaldsendif 5451da177e4SLinus Torvalds 5461da177e4SLinus Torvaldsifdef CONFIG_DEBUG_INFO 547a0f97e06SSam RavnborgKBUILD_CFLAGS += -g 548222d394dSSam RavnborgKBUILD_AFLAGS += -gdwarf-2 5491da177e4SLinus Torvaldsendif 5501da177e4SLinus Torvalds 551606576ceSSteven Rostedtifdef CONFIG_FUNCTION_TRACER 55216444a8aSArnaldo Carvalho de MeloKBUILD_CFLAGS += -pg 55316444a8aSArnaldo Carvalho de Meloendif 55416444a8aSArnaldo Carvalho de Melo 55591341d4bSSam Ravnborg# We trigger additional mismatches with less inlining 55691341d4bSSam Ravnborgifdef CONFIG_DEBUG_SECTION_MISMATCH 55791341d4bSSam RavnborgKBUILD_CFLAGS += $(call cc-option, -fno-inline-functions-called-once) 55891341d4bSSam Ravnborgendif 55991341d4bSSam Ravnborg 560e8e69931SSam Ravnborg# arch Makefile may override CC so keep this after arch Makefile is included 561e8f5bdb0SRik van RielNOSTDINC_FLAGS += -nostdinc -isystem $(shell $(CC) -print-file-name=include) 562e8e69931SSam RavnborgCHECKFLAGS += $(NOSTDINC_FLAGS) 563e8e69931SSam Ravnborg 5641da177e4SLinus Torvalds# warn about C99 declaration after statement 565a0f97e06SSam RavnborgKBUILD_CFLAGS += $(call cc-option,-Wdeclaration-after-statement,) 5661da177e4SLinus Torvalds 567070b98bfSSam Ravnborg# disable pointer signed / unsigned warnings in gcc 4.0 568a0f97e06SSam RavnborgKBUILD_CFLAGS += $(call cc-option,-Wno-pointer-sign,) 5691da177e4SLinus Torvalds 570fe8d0a41SKirill Smelkov# disable invalid "can't wrap" optimizations for signed / pointers 571a137802eSLinus TorvaldsKBUILD_CFLAGS += $(call cc-option,-fno-strict-overflow) 572d0115552SLinus Torvalds 57300308649SKyle McMartin# revert to pre-gcc-4.4 behaviour of .eh_frame 57400308649SKyle McMartinKBUILD_CFLAGS += $(call cc-option,-fno-dwarf2-cfi-asm) 57500308649SKyle McMartin 5768f7f5c9fSAndi Kleen# conserve stack if available 5778f7f5c9fSAndi KleenKBUILD_CFLAGS += $(call cc-option,-fconserve-stack) 5788f7f5c9fSAndi Kleen 57906c5040cSSam Ravnborg# Add user supplied CPPFLAGS, AFLAGS and CFLAGS as the last assignments 58069ee0b35SSam Ravnborg# But warn user when we do so 58169ee0b35SSam Ravnborgwarn-assign = \ 58269ee0b35SSam Ravnborg$(warning "WARNING: Appending $$K$(1) ($(K$(1))) from $(origin K$(1)) to kernel $$$(1)") 58369ee0b35SSam Ravnborg 58469ee0b35SSam Ravnborgifneq ($(KCPPFLAGS),) 58569ee0b35SSam Ravnborg $(call warn-assign,CPPFLAGS) 58669ee0b35SSam Ravnborg KBUILD_CPPFLAGS += $(KCPPFLAGS) 58769ee0b35SSam Ravnborgendif 58869ee0b35SSam Ravnborgifneq ($(KAFLAGS),) 58969ee0b35SSam Ravnborg $(call warn-assign,AFLAGS) 59069ee0b35SSam Ravnborg KBUILD_AFLAGS += $(KAFLAGS) 59169ee0b35SSam Ravnborgendif 59269ee0b35SSam Ravnborgifneq ($(KCFLAGS),) 59369ee0b35SSam Ravnborg $(call warn-assign,CFLAGS) 59469ee0b35SSam Ravnborg KBUILD_CFLAGS += $(KCFLAGS) 59569ee0b35SSam Ravnborgendif 59652bcc330SSam Ravnborg 59718991197SRoland McGrath# Use --build-id when available. 59818991197SRoland McGrathLDFLAGS_BUILD_ID = $(patsubst -Wl$(comma)%,%,\ 599f86fd306SSam Ravnborg $(call cc-ldoption, -Wl$(comma)--build-id,)) 60018991197SRoland McGrathLDFLAGS_MODULE += $(LDFLAGS_BUILD_ID) 60118991197SRoland McGrathLDFLAGS_vmlinux += $(LDFLAGS_BUILD_ID) 60218991197SRoland McGrath 6035d7d18f5SDavid Howellsifeq ($(CONFIG_STRIP_ASM_SYMS),y) 604d79a2719SAndi KleenLDFLAGS_vmlinux += $(call ld-option, -X,) 6055d7d18f5SDavid Howellsendif 6065d7d18f5SDavid Howells 6071da177e4SLinus Torvalds# Default kernel image to build when no specific target is given. 6081da177e4SLinus Torvalds# KBUILD_IMAGE may be overruled on the command line or 6091da177e4SLinus Torvalds# set in the environment 6101da177e4SLinus Torvalds# Also any assignments in arch/$(ARCH)/Makefile take precedence over 6111da177e4SLinus Torvalds# this default value 6121da177e4SLinus Torvaldsexport KBUILD_IMAGE ?= vmlinux 6131da177e4SLinus Torvalds 6141da177e4SLinus Torvalds# 6151da177e4SLinus Torvalds# INSTALL_PATH specifies where to place the updated kernel and system map 6161da177e4SLinus Torvalds# images. Default is /boot, but you can set it to other values 6171da177e4SLinus Torvaldsexport INSTALL_PATH ?= /boot 6181da177e4SLinus Torvalds 6191da177e4SLinus Torvalds# 6201da177e4SLinus Torvalds# INSTALL_MOD_PATH specifies a prefix to MODLIB for module directory 6211da177e4SLinus Torvalds# relocations required by build roots. This is not defined in the 622070b98bfSSam Ravnborg# makefile but the argument can be passed to make if needed. 6231da177e4SLinus Torvalds# 6241da177e4SLinus Torvalds 625df9df036SSam RavnborgMODLIB = $(INSTALL_MOD_PATH)/lib/modules/$(KERNELRELEASE) 6261da177e4SLinus Torvaldsexport MODLIB 6271da177e4SLinus Torvalds 628ac031f26STheodore Ts'o# 6292ea03891SSam Ravnborg# INSTALL_MOD_STRIP, if defined, will cause modules to be 6302ea03891SSam Ravnborg# stripped after they are installed. If INSTALL_MOD_STRIP is '1', then 6312ea03891SSam Ravnborg# the default option --strip-debug will be used. Otherwise, 6322ea03891SSam Ravnborg# INSTALL_MOD_STRIP will used as the options to the strip command. 6332ea03891SSam Ravnborg 634ac031f26STheodore Ts'oifdef INSTALL_MOD_STRIP 635ac031f26STheodore Ts'oifeq ($(INSTALL_MOD_STRIP),1) 6362ea03891SSam Ravnborgmod_strip_cmd = $(STRIP) --strip-debug 637ac031f26STheodore Ts'oelse 6382ea03891SSam Ravnborgmod_strip_cmd = $(STRIP) $(INSTALL_MOD_STRIP) 639ac031f26STheodore Ts'oendif # INSTALL_MOD_STRIP=1 640ac031f26STheodore Ts'oelse 6412ea03891SSam Ravnborgmod_strip_cmd = true 642ac031f26STheodore Ts'oendif # INSTALL_MOD_STRIP 643ac031f26STheodore Ts'oexport mod_strip_cmd 644ac031f26STheodore Ts'o 6451da177e4SLinus Torvalds 6461da177e4SLinus Torvaldsifeq ($(KBUILD_EXTMOD),) 6473a65dfe8SJens Axboecore-y += kernel/ mm/ fs/ ipc/ security/ crypto/ block/ 6481da177e4SLinus Torvalds 6491da177e4SLinus Torvaldsvmlinux-dirs := $(patsubst %/,%,$(filter %/, $(init-y) $(init-m) \ 6501da177e4SLinus Torvalds $(core-y) $(core-m) $(drivers-y) $(drivers-m) \ 6511da177e4SLinus Torvalds $(net-y) $(net-m) $(libs-y) $(libs-m))) 6521da177e4SLinus Torvalds 6531da177e4SLinus Torvaldsvmlinux-alldirs := $(sort $(vmlinux-dirs) $(patsubst %/,%,$(filter %/, \ 6541da177e4SLinus Torvalds $(init-n) $(init-) \ 6551da177e4SLinus Torvalds $(core-n) $(core-) $(drivers-n) $(drivers-) \ 6561da177e4SLinus Torvalds $(net-n) $(net-) $(libs-n) $(libs-)))) 6571da177e4SLinus Torvalds 6581da177e4SLinus Torvaldsinit-y := $(patsubst %/, %/built-in.o, $(init-y)) 6591da177e4SLinus Torvaldscore-y := $(patsubst %/, %/built-in.o, $(core-y)) 6601da177e4SLinus Torvaldsdrivers-y := $(patsubst %/, %/built-in.o, $(drivers-y)) 6611da177e4SLinus Torvaldsnet-y := $(patsubst %/, %/built-in.o, $(net-y)) 6621da177e4SLinus Torvaldslibs-y1 := $(patsubst %/, %/lib.a, $(libs-y)) 6631da177e4SLinus Torvaldslibs-y2 := $(patsubst %/, %/built-in.o, $(libs-y)) 6641da177e4SLinus Torvaldslibs-y := $(libs-y1) $(libs-y2) 6651da177e4SLinus Torvalds 6661da177e4SLinus Torvalds# Build vmlinux 6671da177e4SLinus Torvalds# --------------------------------------------------------------------------- 668070b98bfSSam Ravnborg# vmlinux is built from the objects selected by $(vmlinux-init) and 6691da177e4SLinus Torvalds# $(vmlinux-main). Most are built-in.o files from top-level directories 6702462566fSUwe Zeisberger# in the kernel tree, others are specified in arch/$(ARCH)/Makefile. 6711da177e4SLinus Torvalds# Ordering when linking is important, and $(vmlinux-init) must be first. 6721da177e4SLinus Torvalds# 6731da177e4SLinus Torvalds# vmlinux 6741da177e4SLinus Torvalds# ^ 6751da177e4SLinus Torvalds# | 6761da177e4SLinus Torvalds# +-< $(vmlinux-init) 6771da177e4SLinus Torvalds# | +--< init/version.o + more 6781da177e4SLinus Torvalds# | 6791da177e4SLinus Torvalds# +--< $(vmlinux-main) 6801da177e4SLinus Torvalds# | +--< driver/built-in.o mm/built-in.o + more 6811da177e4SLinus Torvalds# | 6821da177e4SLinus Torvalds# +-< kallsyms.o (see description in CONFIG_KALLSYMS section) 6831da177e4SLinus Torvalds# 6841da177e4SLinus Torvalds# vmlinux version (uname -v) cannot be updated during normal 6851da177e4SLinus Torvalds# descending-into-subdirs phase since we do not yet know if we need to 6861da177e4SLinus Torvalds# update vmlinux. 6871da177e4SLinus Torvalds# Therefore this step is delayed until just before final link of vmlinux - 6881da177e4SLinus Torvalds# except in the kallsyms case where it is done just before adding the 6891da177e4SLinus Torvalds# symbols to the kernel. 6901da177e4SLinus Torvalds# 6911da177e4SLinus Torvalds# System.map is generated to document addresses of all kernel symbols 6921da177e4SLinus Torvalds 6931da177e4SLinus Torvaldsvmlinux-init := $(head-y) $(init-y) 6941da177e4SLinus Torvaldsvmlinux-main := $(core-y) $(libs-y) $(drivers-y) $(net-y) 6951da177e4SLinus Torvaldsvmlinux-all := $(vmlinux-init) $(vmlinux-main) 6966752ed90SThomas Gleixnervmlinux-lds := arch/$(SRCARCH)/kernel/vmlinux.lds 69785bd2fddSSam Ravnborgexport KBUILD_VMLINUX_OBJS := $(vmlinux-all) 6981da177e4SLinus Torvalds 6991da177e4SLinus Torvalds# Rule to link vmlinux - also used during CONFIG_KALLSYMS 7001da177e4SLinus Torvalds# May be overridden by arch/$(ARCH)/Makefile 7011da177e4SLinus Torvaldsquiet_cmd_vmlinux__ ?= LD $@ 7021da177e4SLinus Torvalds cmd_vmlinux__ ?= $(LD) $(LDFLAGS) $(LDFLAGS_vmlinux) -o $@ \ 7031da177e4SLinus Torvalds -T $(vmlinux-lds) $(vmlinux-init) \ 7041da177e4SLinus Torvalds --start-group $(vmlinux-main) --end-group \ 705741f98feSSam Ravnborg $(filter-out $(vmlinux-lds) $(vmlinux-init) $(vmlinux-main) vmlinux.o FORCE ,$^) 7061da177e4SLinus Torvalds 7071da177e4SLinus Torvalds# Generate new vmlinux version 7081da177e4SLinus Torvaldsquiet_cmd_vmlinux_version = GEN .version 7091da177e4SLinus Torvalds cmd_vmlinux_version = set -e; \ 7104e25d8bbSJan Beulich if [ ! -r .version ]; then \ 7114e25d8bbSJan Beulich rm -f .version; \ 7124e25d8bbSJan Beulich echo 1 >.version; \ 7134e25d8bbSJan Beulich else \ 7144e25d8bbSJan Beulich mv .version .old_version; \ 7154e25d8bbSJan Beulich expr 0$$(cat .old_version) + 1 >.version; \ 7164e25d8bbSJan Beulich fi; \ 7171da177e4SLinus Torvalds $(MAKE) $(build)=init 7181da177e4SLinus Torvalds 7191da177e4SLinus Torvalds# Generate System.map 7201da177e4SLinus Torvaldsquiet_cmd_sysmap = SYSMAP 7211da177e4SLinus Torvalds cmd_sysmap = $(CONFIG_SHELL) $(srctree)/scripts/mksysmap 7221da177e4SLinus Torvalds 7231da177e4SLinus Torvalds# Link of vmlinux 7241da177e4SLinus Torvalds# If CONFIG_KALLSYMS is set .version is already updated 7251da177e4SLinus Torvalds# Generate System.map and verify that the content is consistent 72639ca371cSMark Rustad# Use + in front of the vmlinux_version rule to silent warning with make -j2 72739ca371cSMark Rustad# First command is ':' to allow us to use + in front of the rule 7281da177e4SLinus Torvaldsdefine rule_vmlinux__ 72939ca371cSMark Rustad : 7301da177e4SLinus Torvalds $(if $(CONFIG_KALLSYMS),,+$(call cmd,vmlinux_version)) 7311da177e4SLinus Torvalds 7321da177e4SLinus Torvalds $(call cmd,vmlinux__) 7331da177e4SLinus Torvalds $(Q)echo 'cmd_$@ := $(cmd_vmlinux__)' > $(@D)/.$(@F).cmd 7341da177e4SLinus Torvalds 7351da177e4SLinus Torvalds $(Q)$(if $($(quiet)cmd_sysmap), \ 7361da177e4SLinus Torvalds echo ' $($(quiet)cmd_sysmap) System.map' &&) \ 7371da177e4SLinus Torvalds $(cmd_sysmap) $@ System.map; \ 7381da177e4SLinus Torvalds if [ $$? -ne 0 ]; then \ 7391da177e4SLinus Torvalds rm -f $@; \ 7401da177e4SLinus Torvalds /bin/false; \ 7411da177e4SLinus Torvalds fi; 7421da177e4SLinus Torvalds $(verify_kallsyms) 7431da177e4SLinus Torvaldsendef 7441da177e4SLinus Torvalds 7451da177e4SLinus Torvalds 7461da177e4SLinus Torvaldsifdef CONFIG_KALLSYMS 7471da177e4SLinus Torvalds# Generate section listing all symbols and add it into vmlinux $(kallsyms.o) 7481da177e4SLinus Torvalds# It's a three stage process: 7491da177e4SLinus Torvalds# o .tmp_vmlinux1 has all symbols and sections, but __kallsyms is 7501da177e4SLinus Torvalds# empty 7511da177e4SLinus Torvalds# Running kallsyms on that gives us .tmp_kallsyms1.o with 7521da177e4SLinus Torvalds# the right size - vmlinux version (uname -v) is updated during this step 7531da177e4SLinus Torvalds# o .tmp_vmlinux2 now has a __kallsyms section of the right size, 7541da177e4SLinus Torvalds# but due to the added section, some addresses have shifted. 7551da177e4SLinus Torvalds# From here, we generate a correct .tmp_kallsyms2.o 7561da177e4SLinus Torvalds# o The correct .tmp_kallsyms2.o is linked into the final vmlinux. 7571da177e4SLinus Torvalds# o Verify that the System.map from vmlinux matches the map from 7581da177e4SLinus Torvalds# .tmp_vmlinux2, just in case we did not generate kallsyms correctly. 7591da177e4SLinus Torvalds# o If CONFIG_KALLSYMS_EXTRA_PASS is set, do an extra pass using 7601da177e4SLinus Torvalds# .tmp_vmlinux3 and .tmp_kallsyms3.o. This is only meant as a 7611da177e4SLinus Torvalds# temporary bypass to allow the kernel to be built while the 7621da177e4SLinus Torvalds# maintainers work out what went wrong with kallsyms. 7631da177e4SLinus Torvalds 7641da177e4SLinus Torvaldsifdef CONFIG_KALLSYMS_EXTRA_PASS 7651da177e4SLinus Torvaldslast_kallsyms := 3 7661da177e4SLinus Torvaldselse 7671da177e4SLinus Torvaldslast_kallsyms := 2 7681da177e4SLinus Torvaldsendif 7691da177e4SLinus Torvalds 7701da177e4SLinus Torvaldskallsyms.o := .tmp_kallsyms$(last_kallsyms).o 7711da177e4SLinus Torvalds 7721da177e4SLinus Torvaldsdefine verify_kallsyms 7731da177e4SLinus Torvalds $(Q)$(if $($(quiet)cmd_sysmap), \ 7741da177e4SLinus Torvalds echo ' $($(quiet)cmd_sysmap) .tmp_System.map' &&) \ 7751da177e4SLinus Torvalds $(cmd_sysmap) .tmp_vmlinux$(last_kallsyms) .tmp_System.map 7761da177e4SLinus Torvalds $(Q)cmp -s System.map .tmp_System.map || \ 7771da177e4SLinus Torvalds (echo Inconsistent kallsyms data; \ 7781da177e4SLinus Torvalds echo Try setting CONFIG_KALLSYMS_EXTRA_PASS; \ 7791da177e4SLinus Torvalds rm .tmp_kallsyms* ; /bin/false ) 7801da177e4SLinus Torvaldsendef 7811da177e4SLinus Torvalds 7821da177e4SLinus Torvalds# Update vmlinux version before link 7831da177e4SLinus Torvalds# Use + in front of this rule to silent warning about make -j1 78472ba47c1SSam Ravnborg# First command is ':' to allow us to use + in front of this rule 7851da177e4SLinus Torvaldscmd_ksym_ld = $(cmd_vmlinux__) 7861da177e4SLinus Torvaldsdefine rule_ksym_ld 78772ba47c1SSam Ravnborg : 7881da177e4SLinus Torvalds +$(call cmd,vmlinux_version) 7891da177e4SLinus Torvalds $(call cmd,vmlinux__) 7901da177e4SLinus Torvalds $(Q)echo 'cmd_$@ := $(cmd_vmlinux__)' > $(@D)/.$(@F).cmd 7911da177e4SLinus Torvaldsendef 7921da177e4SLinus Torvalds 7931da177e4SLinus Torvalds# Generate .S file with all kernel symbols 7941da177e4SLinus Torvaldsquiet_cmd_kallsyms = KSYM $@ 7952ea03891SSam Ravnborg cmd_kallsyms = $(NM) -n $< | $(KALLSYMS) \ 7962ea03891SSam Ravnborg $(if $(CONFIG_KALLSYMS_ALL),--all-symbols) > $@ 7971da177e4SLinus Torvalds 7982ea03891SSam Ravnborg.tmp_kallsyms1.o .tmp_kallsyms2.o .tmp_kallsyms3.o: %.o: %.S scripts FORCE 7991da177e4SLinus Torvalds $(call if_changed_dep,as_o_S) 8001da177e4SLinus Torvalds 8012ea03891SSam Ravnborg.tmp_kallsyms%.S: .tmp_vmlinux% $(KALLSYMS) 8021da177e4SLinus Torvalds $(call cmd,kallsyms) 8031da177e4SLinus Torvalds 8041da177e4SLinus Torvalds# .tmp_vmlinux1 must be complete except kallsyms, so update vmlinux version 8052ea03891SSam Ravnborg.tmp_vmlinux1: $(vmlinux-lds) $(vmlinux-all) FORCE 8062ea03891SSam Ravnborg $(call if_changed_rule,ksym_ld) 8071da177e4SLinus Torvalds 8082ea03891SSam Ravnborg.tmp_vmlinux2: $(vmlinux-lds) $(vmlinux-all) .tmp_kallsyms1.o FORCE 8092ea03891SSam Ravnborg $(call if_changed,vmlinux__) 8101da177e4SLinus Torvalds 8112ea03891SSam Ravnborg.tmp_vmlinux3: $(vmlinux-lds) $(vmlinux-all) .tmp_kallsyms2.o FORCE 8122ea03891SSam Ravnborg $(call if_changed,vmlinux__) 8131da177e4SLinus Torvalds 8141da177e4SLinus Torvalds# Needs to visit scripts/ before $(KALLSYMS) can be used. 8151da177e4SLinus Torvalds$(KALLSYMS): scripts ; 8161da177e4SLinus Torvalds 81733bc25eaSSam Ravnborg# Generate some data for debugging strange kallsyms problems 81833bc25eaSSam Ravnborgdebug_kallsyms: .tmp_map$(last_kallsyms) 81933bc25eaSSam Ravnborg 82033bc25eaSSam Ravnborg.tmp_map%: .tmp_vmlinux% FORCE 82133bc25eaSSam Ravnborg ($(OBJDUMP) -h $< | $(AWK) '/^ +[0-9]/{print $$4 " 0 " $$2}'; $(NM) $<) | sort > $@ 82233bc25eaSSam Ravnborg 82333bc25eaSSam Ravnborg.tmp_map3: .tmp_map2 82433bc25eaSSam Ravnborg 82533bc25eaSSam Ravnborg.tmp_map2: .tmp_map1 82633bc25eaSSam Ravnborg 8271da177e4SLinus Torvaldsendif # ifdef CONFIG_KALLSYMS 8281da177e4SLinus Torvalds 829741f98feSSam Ravnborg# Do modpost on a prelinked vmlinux. The finally linked vmlinux has 830741f98feSSam Ravnborg# relevant sections renamed as per the linker script. 831741f98feSSam Ravnborgquiet_cmd_vmlinux-modpost = LD $@ 832741f98feSSam Ravnborg cmd_vmlinux-modpost = $(LD) $(LDFLAGS) -r -o $@ \ 833741f98feSSam Ravnborg $(vmlinux-init) --start-group $(vmlinux-main) --end-group \ 83490ebd878SSam Ravnborg $(filter-out $(vmlinux-init) $(vmlinux-main) FORCE ,$^) 835741f98feSSam Ravnborgdefine rule_vmlinux-modpost 836741f98feSSam Ravnborg : 837741f98feSSam Ravnborg +$(call cmd,vmlinux-modpost) 838741f98feSSam Ravnborg $(Q)$(MAKE) -f $(srctree)/scripts/Makefile.modpost $@ 839741f98feSSam Ravnborg $(Q)echo 'cmd_$@ := $(cmd_vmlinux-modpost)' > $(dot-target).cmd 840741f98feSSam Ravnborgendef 841741f98feSSam Ravnborg 8421da177e4SLinus Torvalds# vmlinux image - including updated kernel symbols 843310f8243SSam Ravnborgvmlinux: $(vmlinux-lds) $(vmlinux-init) $(vmlinux-main) vmlinux.o $(kallsyms.o) FORCE 8440f836e5fSDavid Woodhouseifdef CONFIG_HEADERS_CHECK 8450e7af8d0SDavid Woodhouse $(Q)$(MAKE) -f $(srctree)/Makefile headers_check 8460f836e5fSDavid Woodhouseendif 847267c4025SMathieu Desnoyersifdef CONFIG_SAMPLES 848267c4025SMathieu Desnoyers $(Q)$(MAKE) $(build)=samples 849267c4025SMathieu Desnoyersendif 8503794f3e8SRandy Dunlapifdef CONFIG_BUILD_DOCSRC 8513794f3e8SRandy Dunlap $(Q)$(MAKE) $(build)=Documentation 8523794f3e8SRandy Dunlapendif 853741f98feSSam Ravnborg $(call vmlinux-modpost) 8541da177e4SLinus Torvalds $(call if_changed_rule,vmlinux__) 8554e25d8bbSJan Beulich $(Q)rm -f .old_version 8561da177e4SLinus Torvalds 857310f8243SSam Ravnborg# build vmlinux.o first to catch section mismatch errors early 858cf87dcd1SSam Ravnborgifdef CONFIG_KALLSYMS 859cf87dcd1SSam Ravnborg.tmp_vmlinux1: vmlinux.o 860cf87dcd1SSam Ravnborgendif 86190ebd878SSam Ravnborg 86290ebd878SSam Ravnborgmodpost-init := $(filter-out init/built-in.o, $(vmlinux-init)) 86390ebd878SSam Ravnborgvmlinux.o: $(modpost-init) $(vmlinux-main) FORCE 864741f98feSSam Ravnborg $(call if_changed_rule,vmlinux-modpost) 865741f98feSSam Ravnborg 8661da177e4SLinus Torvalds# The actual objects are generated when descending, 8671da177e4SLinus Torvalds# make sure no implicit rule kicks in 8681da177e4SLinus Torvalds$(sort $(vmlinux-init) $(vmlinux-main)) $(vmlinux-lds): $(vmlinux-dirs) ; 8691da177e4SLinus Torvalds 8701da177e4SLinus Torvalds# Handle descending into subdirectories listed in $(vmlinux-dirs) 8711da177e4SLinus Torvalds# Preset locale variables to speed up the build process. Limit locale 8721da177e4SLinus Torvalds# tweaks to this spot to avoid wrong language settings when running 8731da177e4SLinus Torvalds# make menuconfig etc. 8741da177e4SLinus Torvalds# Error messages still appears in the original language 8751da177e4SLinus Torvalds 8764f193362SPaul SmithPHONY += $(vmlinux-dirs) 8775bb78269SSam Ravnborg$(vmlinux-dirs): prepare scripts 8781da177e4SLinus Torvalds $(Q)$(MAKE) $(build)=$@ 8791da177e4SLinus Torvalds 880cb58455cSSam Ravnborg# Build the kernel release string 881cb58455cSSam Ravnborg# 8821ef98856SRobert P. J. Day# The KERNELRELEASE value built here is stored in the file 8831ef98856SRobert P. J. Day# include/config/kernel.release, and is used when executing several 8841ef98856SRobert P. J. Day# make targets, such as "make install" or "make modules_install." 8851ef98856SRobert P. J. Day# 8861ef98856SRobert P. J. Day# The eventual kernel release string consists of the following fields, 8871ef98856SRobert P. J. Day# shown in a hierarchical format to show how smaller parts are concatenated 8881ef98856SRobert P. J. Day# to form the larger and final value, with values coming from places like 8891ef98856SRobert P. J. Day# the Makefile, kernel config options, make command line options and/or 8901ef98856SRobert P. J. Day# SCM tag information. 8911ef98856SRobert P. J. Day# 8921ef98856SRobert P. J. Day# $(KERNELVERSION) 8931ef98856SRobert P. J. Day# $(VERSION) eg, 2 8941ef98856SRobert P. J. Day# $(PATCHLEVEL) eg, 6 8951ef98856SRobert P. J. Day# $(SUBLEVEL) eg, 18 8961ef98856SRobert P. J. Day# $(EXTRAVERSION) eg, -rc6 8971ef98856SRobert P. J. Day# $(localver-full) 8981ef98856SRobert P. J. Day# $(localver) 89976c32956SOleg Verych# localversion* (files without backups, containing '~') 9001ef98856SRobert P. J. Day# $(CONFIG_LOCALVERSION) (from kernel config setting) 9011ef98856SRobert P. J. Day# $(localver-auto) (only if CONFIG_LOCALVERSION_AUTO is set) 9021ef98856SRobert P. J. Day# ./scripts/setlocalversion (SCM tag, if one exists) 9031ef98856SRobert P. J. Day# $(LOCALVERSION) (from make command line if provided) 9041ef98856SRobert P. J. Day# 9051ef98856SRobert P. J. Day# Note how the final $(localver-auto) string is included *only* if the 9061ef98856SRobert P. J. Day# kernel config option CONFIG_LOCALVERSION_AUTO is selected. Also, at the 9071ef98856SRobert P. J. Day# moment, only git is supported but other SCMs can edit the script 9081ef98856SRobert P. J. Day# scripts/setlocalversion and add the appropriate checks as needed. 909cb58455cSSam Ravnborg 91076c32956SOleg Verychpattern = ".*/localversion[^~]*" 91176c32956SOleg Verychstring = $(shell cat /dev/null \ 912fd19e44fSLinus Torvalds `find $(objtree) $(srctree) -maxdepth 1 -regex $(pattern) | sort -u`) 913cb58455cSSam Ravnborg 91476c32956SOleg Verychlocalver = $(subst $(space),, $(string) \ 915cb58455cSSam Ravnborg $(patsubst "%",%,$(CONFIG_LOCALVERSION))) 916cb58455cSSam Ravnborg 917cb58455cSSam Ravnborg# If CONFIG_LOCALVERSION_AUTO is set scripts/setlocalversion is called 918cb58455cSSam Ravnborg# and if the SCM is know a tag from the SCM is appended. 919070b98bfSSam Ravnborg# The appended tag is determined by the SCM used. 920cb58455cSSam Ravnborg# 921b925dbfeSJosh Hunt# .scmversion is used when generating rpm packages so we do not loose 922b925dbfeSJosh Hunt# the version information from the SCM when we do the build of the kernel 923b925dbfeSJosh Hunt# from the copied source 924cb58455cSSam Ravnborgifdef CONFIG_LOCALVERSION_AUTO 925b925dbfeSJosh Hunt 926b925dbfeSJosh Huntifeq ($(wildcard .scmversion),) 927cb58455cSSam Ravnborg _localver-auto = $(shell $(CONFIG_SHELL) \ 928cb58455cSSam Ravnborg $(srctree)/scripts/setlocalversion $(srctree)) 929b925dbfeSJosh Huntelse 930b925dbfeSJosh Hunt _localver-auto = $(shell cat .scmversion 2> /dev/null) 931b925dbfeSJosh Huntendif 932b925dbfeSJosh Hunt 933cb58455cSSam Ravnborg localver-auto = $(LOCALVERSION)$(_localver-auto) 934cb58455cSSam Ravnborgendif 935cb58455cSSam Ravnborg 936cb58455cSSam Ravnborglocalver-full = $(localver)$(localver-auto) 937cb58455cSSam Ravnborg 938f1d28fb0SRoman Zippel# Store (new) KERNELRELASE string in include/config/kernel.release 9392244cbd8SSam Ravnborgkernelrelease = $(KERNELVERSION)$(localver-full) 940f1d28fb0SRoman Zippelinclude/config/kernel.release: include/config/auto.conf FORCE 9412244cbd8SSam Ravnborg $(Q)rm -f $@ 9422244cbd8SSam Ravnborg $(Q)echo $(kernelrelease) > $@ 943cb58455cSSam Ravnborg 944cb58455cSSam Ravnborg 9451da177e4SLinus Torvalds# Things we need to do before we recursively start building the kernel 9465bb78269SSam Ravnborg# or the modules are listed in "prepare". 9475bb78269SSam Ravnborg# A multi level approach is used. prepareN is processed before prepareN-1. 9485bb78269SSam Ravnborg# archprepare is used in arch Makefiles and when processed asm symlink, 9495bb78269SSam Ravnborg# version.h and scripts_basic is processed / created. 9501da177e4SLinus Torvalds 9515bb78269SSam Ravnborg# Listed in dependency order 9524f193362SPaul SmithPHONY += prepare archprepare prepare0 prepare1 prepare2 prepare3 9535bb78269SSam Ravnborg 95486feeaa8SSam Ravnborg# prepare3 is used to check if we are building in a separate output directory, 9551da177e4SLinus Torvalds# and if so do: 9561da177e4SLinus Torvalds# 1) Check that make has not been executed in the kernel src $(srctree) 9571da177e4SLinus Torvalds# 2) Create the include2 directory, used for the second asm symlink 958f1d28fb0SRoman Zippelprepare3: include/config/kernel.release 9591da177e4SLinus Torvaldsifneq ($(KBUILD_SRC),) 960fd54f502SMike Frysinger @$(kecho) ' Using $(srctree) as source for kernel' 961c955ccafSRoman Zippel $(Q)if [ -f $(srctree)/.config -o -d $(srctree)/include/config ]; then \ 9621da177e4SLinus Torvalds echo " $(srctree) is not clean, please run 'make mrproper'";\ 9631da177e4SLinus Torvalds echo " in the '$(srctree)' directory.";\ 9641da177e4SLinus Torvalds /bin/false; \ 9651da177e4SLinus Torvalds fi; 9667a48bdd0SSam Ravnborg $(Q)if [ ! -d include2 ]; then \ 9677a48bdd0SSam Ravnborg mkdir -p include2; \ 9682e57d051SSam Ravnborg ln -fsn $(srctree)/include/asm-$(SRCARCH) include2/asm; \ 9692e57d051SSam Ravnborg fi 9701da177e4SLinus Torvaldsendif 9711da177e4SLinus Torvalds 97286feeaa8SSam Ravnborg# prepare2 creates a makefile if using a separate output directory 97386feeaa8SSam Ravnborgprepare2: prepare3 outputmakefile 9741da177e4SLinus Torvalds 9753eb3c740SRoman Zippelprepare1: prepare2 include/linux/version.h include/linux/utsrelease.h \ 9763eb3c740SRoman Zippel include/asm include/config/auto.conf 9777bb9d092SSam Ravnborg $(cmd_crmodverdir) 9781da177e4SLinus Torvalds 9795bb78269SSam Ravnborgarchprepare: prepare1 scripts_basic 9805bb78269SSam Ravnborg 9815bb78269SSam Ravnborgprepare0: archprepare FORCE 9828d36a623SSam Ravnborg $(Q)$(MAKE) $(build)=. 983c53aeca0SSam Ravnborg $(Q)$(MAKE) $(build)=. missing-syscalls 98486feeaa8SSam Ravnborg 9851da177e4SLinus Torvalds# All the preparing.. 986d395efb5SRobert P. J. Dayprepare: prepare0 9871da177e4SLinus Torvalds 988fc333b2dSSam Ravnborg# The asm symlink changes when $(ARCH) changes. 989fc333b2dSSam Ravnborg# Detect this and ask user to run make mrproper 990dcc2da1aSSam Ravnborg# If asm is a stale symlink (point to dir that does not exist) remove it 9912e57d051SSam Ravnborgdefine check-symlink 9922e57d051SSam Ravnborg set -e; \ 993fc333b2dSSam Ravnborg if [ -L include/asm ]; then \ 9942e57d051SSam Ravnborg asmlink=`readlink include/asm | cut -d '-' -f 2`; \ 995fc333b2dSSam Ravnborg if [ "$$asmlink" != "$(SRCARCH)" ]; then \ 996fc333b2dSSam Ravnborg echo "ERROR: the symlink $@ points to asm-$$asmlink but asm-$(SRCARCH) was expected"; \ 997fc333b2dSSam Ravnborg echo " set ARCH or save .config and run 'make mrproper' to fix it"; \ 998fc333b2dSSam Ravnborg exit 1; \ 999fc333b2dSSam Ravnborg fi; \ 1000dcc2da1aSSam Ravnborg test -e $$asmlink || rm include/asm; \ 1001dcc2da1aSSam Ravnborg elif [ -d include/asm ]; then \ 1002dcc2da1aSSam Ravnborg echo "ERROR: $@ is a directory but a symlink was expected";\ 1003dcc2da1aSSam Ravnborg exit 1; \ 10042e57d051SSam Ravnborg fi 10052e57d051SSam Ravnborgendef 10062e57d051SSam Ravnborg 10072e57d051SSam Ravnborg# We create the target directory of the symlink if it does 10085a9e67b1SAnisse Astier# not exist so the test in check-symlink works and we have a 10092e57d051SSam Ravnborg# directory for generated filesas used by some architectures. 10102e57d051SSam Ravnborgdefine create-symlink 10112e57d051SSam Ravnborg if [ ! -L include/asm ]; then \ 1012fd54f502SMike Frysinger $(kecho) ' SYMLINK $@ -> include/asm-$(SRCARCH)'; \ 10132e57d051SSam Ravnborg if [ ! -d include/asm-$(SRCARCH) ]; then \ 10142e57d051SSam Ravnborg mkdir -p include/asm-$(SRCARCH); \ 1015fc333b2dSSam Ravnborg fi; \ 1016fc333b2dSSam Ravnborg ln -fsn asm-$(SRCARCH) $@; \ 1017fc333b2dSSam Ravnborg fi 10182e57d051SSam Ravnborgendef 10192e57d051SSam Ravnborg 10202e57d051SSam Ravnborginclude/asm: FORCE 10212e57d051SSam Ravnborg $(Q)$(check-symlink) 10222e57d051SSam Ravnborg $(Q)$(create-symlink) 10231da177e4SLinus Torvalds 10241da177e4SLinus Torvalds# Generate some files 10251da177e4SLinus Torvalds# --------------------------------------------------------------------------- 10261da177e4SLinus Torvalds 10271da177e4SLinus Torvalds# KERNELRELEASE can change from a few different places, meaning version.h 10281da177e4SLinus Torvalds# needs to be updated, so this check is forced on all builds 10291da177e4SLinus Torvalds 10301da177e4SLinus Torvaldsuts_len := 64 103163104eecSSam Ravnborgdefine filechk_utsrelease.h 10321da177e4SLinus Torvalds if [ `echo -n "$(KERNELRELEASE)" | wc -c ` -gt $(uts_len) ]; then \ 10331da177e4SLinus Torvalds echo '"$(KERNELRELEASE)" exceeds $(uts_len) characters' >&2; \ 10341da177e4SLinus Torvalds exit 1; \ 10351da177e4SLinus Torvalds fi; \ 103663104eecSSam Ravnborg (echo \#define UTS_RELEASE \"$(KERNELRELEASE)\";) 10371da177e4SLinus Torvaldsendef 10381da177e4SLinus Torvalds 103963104eecSSam Ravnborgdefine filechk_version.h 104063104eecSSam Ravnborg (echo \#define LINUX_VERSION_CODE $(shell \ 104163104eecSSam Ravnborg expr $(VERSION) \* 65536 + $(PATCHLEVEL) \* 256 + $(SUBLEVEL)); \ 104263104eecSSam Ravnborg echo '#define KERNEL_VERSION(a,b,c) (((a) << 16) + ((b) << 8) + (c))';) 104363104eecSSam Ravnborgendef 104463104eecSSam Ravnborg 104563104eecSSam Ravnborginclude/linux/version.h: $(srctree)/Makefile FORCE 10461da177e4SLinus Torvalds $(call filechk,version.h) 10471da177e4SLinus Torvalds 104863104eecSSam Ravnborginclude/linux/utsrelease.h: include/config/kernel.release FORCE 104963104eecSSam Ravnborg $(call filechk,utsrelease.h) 105063104eecSSam Ravnborg 1051179efcb4SVegard NossumPHONY += headerdep 1052179efcb4SVegard Nossumheaderdep: 1053179efcb4SVegard Nossum $(Q)find include/ -name '*.h' | xargs --max-args 1 scripts/headerdep.pl 1054179efcb4SVegard Nossum 10551da177e4SLinus Torvalds# --------------------------------------------------------------------------- 10561da177e4SLinus Torvalds 10574f193362SPaul SmithPHONY += depend dep 10581da177e4SLinus Torvaldsdepend dep: 10591da177e4SLinus Torvalds @echo '*** Warning: make $@ is unnecessary now.' 10601da177e4SLinus Torvalds 10611da177e4SLinus Torvalds# --------------------------------------------------------------------------- 106288ecf814SDavid Woodhouse# Firmware install 106388ecf814SDavid WoodhouseINSTALL_FW_PATH=$(INSTALL_MOD_PATH)/lib/firmware 106488ecf814SDavid Woodhouseexport INSTALL_FW_PATH 106588ecf814SDavid Woodhouse 106688ecf814SDavid WoodhousePHONY += firmware_install 106788ecf814SDavid Woodhousefirmware_install: FORCE 106888ecf814SDavid Woodhouse @mkdir -p $(objtree)/firmware 106988ecf814SDavid Woodhouse $(Q)$(MAKE) -f $(srctree)/scripts/Makefile.fwinst obj=firmware __fw_install 107088ecf814SDavid Woodhouse 107188ecf814SDavid Woodhouse# --------------------------------------------------------------------------- 10728d730cfbSDavid Woodhouse# Kernel headers 10738d730cfbSDavid Woodhouse 1074e6883b18SSam Ravnborg#Default location for installed headers 1075e6883b18SSam Ravnborgexport INSTALL_HDR_PATH = $(objtree)/usr 1076e6883b18SSam Ravnborg 1077e6883b18SSam Ravnborghdr-inst := -rR -f $(srctree)/scripts/Makefile.headersinst obj 10782fb9b1bdSSam Ravnborg# Find out where the Kbuild file is located to support 10792fb9b1bdSSam Ravnborg# arch/$(ARCH)/include/asm 10802fb9b1bdSSam Ravnborghdr-dir = $(strip \ 10812fb9b1bdSSam Ravnborg $(if $(wildcard $(srctree)/arch/$(hdr-arch)/include/asm/Kbuild), \ 10822fb9b1bdSSam Ravnborg arch/$(hdr-arch)/include/asm, include/asm-$(hdr-arch))) 10832fb9b1bdSSam Ravnborg 10842fb9b1bdSSam Ravnborg# If we do an all arch process set dst to asm-$(hdr-arch) 10852fb9b1bdSSam Ravnborghdr-dst = $(if $(KBUILD_HEADERS), dst=include/asm-$(hdr-arch), dst=include/asm) 1086e6883b18SSam Ravnborg 1087e6883b18SSam RavnborgPHONY += __headers 1088e6883b18SSam Ravnborg__headers: include/linux/version.h scripts_basic FORCE 1089e6883b18SSam Ravnborg $(Q)$(MAKE) $(build)=scripts scripts/unifdef 10906d716275SDavid Woodhouse 10916d716275SDavid WoodhousePHONY += headers_install_all 10922fb9b1bdSSam Ravnborgheaders_install_all: 10932fb9b1bdSSam Ravnborg $(Q)$(CONFIG_SHELL) $(srctree)/scripts/headers.sh install 10946d716275SDavid Woodhouse 10958d730cfbSDavid WoodhousePHONY += headers_install 1096e6883b18SSam Ravnborgheaders_install: __headers 10972fb9b1bdSSam Ravnborg $(if $(wildcard $(srctree)/$(hdr-dir)/Kbuild),, \ 10982fb9b1bdSSam Ravnborg $(error Headers not exportable for the $(SRCARCH) architecture)) 109988181ec3SSam Ravnborg $(Q)$(MAKE) $(hdr-inst)=include 11002fb9b1bdSSam Ravnborg $(Q)$(MAKE) $(hdr-inst)=$(hdr-dir) $(hdr-dst) 11018d730cfbSDavid Woodhouse 11021f85712eSMike FrysingerPHONY += headers_check_all 11031f85712eSMike Frysingerheaders_check_all: headers_install_all 11042fb9b1bdSSam Ravnborg $(Q)$(CONFIG_SHELL) $(srctree)/scripts/headers.sh check 11051f85712eSMike Frysinger 110668475359SDavid WoodhousePHONY += headers_check 110768475359SDavid Woodhouseheaders_check: headers_install 110888181ec3SSam Ravnborg $(Q)$(MAKE) $(hdr-inst)=include HDRCHECK=1 11092fb9b1bdSSam Ravnborg $(Q)$(MAKE) $(hdr-inst)=$(hdr-dir) $(hdr-dst) HDRCHECK=1 111068475359SDavid Woodhouse 11118d730cfbSDavid Woodhouse# --------------------------------------------------------------------------- 11121da177e4SLinus Torvalds# Modules 11131da177e4SLinus Torvalds 11141da177e4SLinus Torvaldsifdef CONFIG_MODULES 11151da177e4SLinus Torvalds 11161da177e4SLinus Torvalds# By default, build modules as well 11171da177e4SLinus Torvalds 11181da177e4SLinus Torvaldsall: modules 11191da177e4SLinus Torvalds 11201da177e4SLinus Torvalds# Build modules 1121551559e1STejun Heo# 1122551559e1STejun Heo# A module can be listed more than once in obj-m resulting in 1123551559e1STejun Heo# duplicate lines in modules.order files. Those are removed 1124551559e1STejun Heo# using awk while concatenating to the final file. 11251da177e4SLinus Torvalds 11264f193362SPaul SmithPHONY += modules 11271da177e4SLinus Torvaldsmodules: $(vmlinux-dirs) $(if $(KBUILD_BUILTIN),vmlinux) 1128551559e1STejun Heo $(Q)$(AWK) '!x[$$0]++' $(vmlinux-dirs:%=$(objtree)/%/modules.order) > $(objtree)/modules.order 1129fd54f502SMike Frysinger @$(kecho) ' Building modules, stage 2.'; 1130b805aa0eSSam Ravnborg $(Q)$(MAKE) -f $(srctree)/scripts/Makefile.modpost 113144463f7dSDavid Woodhouse $(Q)$(MAKE) -f $(srctree)/scripts/Makefile.fwinst obj=firmware __fw_modbuild 11321da177e4SLinus Torvalds 11331da177e4SLinus Torvalds 11341da177e4SLinus Torvalds# Target to prepare building external modules 11354f193362SPaul SmithPHONY += modules_prepare 11365bb78269SSam Ravnborgmodules_prepare: prepare scripts 11371da177e4SLinus Torvalds 11381da177e4SLinus Torvalds# Target to install modules 11394f193362SPaul SmithPHONY += modules_install 11401da177e4SLinus Torvaldsmodules_install: _modinst_ _modinst_post 11411da177e4SLinus Torvalds 11424f193362SPaul SmithPHONY += _modinst_ 11431da177e4SLinus Torvalds_modinst_: 1144ce454d4dSTom Rini @if [ -z "`$(DEPMOD) -V 2>/dev/null | grep module-init-tools`" ]; then \ 11451da177e4SLinus Torvalds echo "Warning: you may need to install module-init-tools"; \ 11461da177e4SLinus Torvalds echo "See http://www.codemonkey.org.uk/docs/post-halloween-2.6.txt";\ 11471da177e4SLinus Torvalds sleep 1; \ 11481da177e4SLinus Torvalds fi 11491da177e4SLinus Torvalds @rm -rf $(MODLIB)/kernel 11501da177e4SLinus Torvalds @rm -f $(MODLIB)/source 11511da177e4SLinus Torvalds @mkdir -p $(MODLIB)/kernel 11521da177e4SLinus Torvalds @ln -s $(srctree) $(MODLIB)/source 11531da177e4SLinus Torvalds @if [ ! $(objtree) -ef $(MODLIB)/build ]; then \ 11541da177e4SLinus Torvalds rm -f $(MODLIB)/build ; \ 11551da177e4SLinus Torvalds ln -s $(objtree) $(MODLIB)/build ; \ 11561da177e4SLinus Torvalds fi 1157551559e1STejun Heo @cp -f $(objtree)/modules.order $(MODLIB)/ 1158b805aa0eSSam Ravnborg $(Q)$(MAKE) -f $(srctree)/scripts/Makefile.modinst 11591da177e4SLinus Torvalds 116050a8ec31SSam Ravnborg# This depmod is only for convenience to give the initial 11611da177e4SLinus Torvalds# boot a modules.dep even before / is mounted read-write. However the 11621da177e4SLinus Torvalds# boot script depmod is the master version. 11634f193362SPaul SmithPHONY += _modinst_post 11641da177e4SLinus Torvalds_modinst_post: _modinst_ 116588ecf814SDavid Woodhouse $(Q)$(MAKE) -f $(srctree)/scripts/Makefile.fwinst obj=firmware __fw_modinst 116650a8ec31SSam Ravnborg $(call cmd,depmod) 11671da177e4SLinus Torvalds 11681da177e4SLinus Torvaldselse # CONFIG_MODULES 11691da177e4SLinus Torvalds 11701da177e4SLinus Torvalds# Modules not configured 11711da177e4SLinus Torvalds# --------------------------------------------------------------------------- 11721da177e4SLinus Torvalds 11731da177e4SLinus Torvaldsmodules modules_install: FORCE 11741da177e4SLinus Torvalds @echo 11751da177e4SLinus Torvalds @echo "The present kernel configuration has modules disabled." 11761da177e4SLinus Torvalds @echo "Type 'make config' and enable loadable module support." 11771da177e4SLinus Torvalds @echo "Then build a kernel with module support enabled." 11781da177e4SLinus Torvalds @echo 11791da177e4SLinus Torvalds @exit 1 11801da177e4SLinus Torvalds 11811da177e4SLinus Torvaldsendif # CONFIG_MODULES 11821da177e4SLinus Torvalds 11831da177e4SLinus Torvalds### 11841da177e4SLinus Torvalds# Cleaning is done on three levels. 11851da177e4SLinus Torvalds# make clean Delete most generated files 11861da177e4SLinus Torvalds# Leave enough to build external modules 11871da177e4SLinus Torvalds# make mrproper Delete the current configuration, and all generated files 11881da177e4SLinus Torvalds# make distclean Remove editor backup files, patch leftover files and the like 11891da177e4SLinus Torvalds 11901da177e4SLinus Torvalds# Directories & files removed with 'make clean' 11911da177e4SLinus TorvaldsCLEAN_DIRS += $(MODVERDIR) 11921da177e4SLinus TorvaldsCLEAN_FILES += vmlinux System.map \ 11931da177e4SLinus Torvalds .tmp_kallsyms* .tmp_version .tmp_vmlinux* .tmp_System.map 11941da177e4SLinus Torvalds 11951da177e4SLinus Torvalds# Directories & files removed with 'make mrproper' 1196f14875a3SSam RavnborgMRPROPER_DIRS += include/config include2 usr/include include/generated 119750aa88e2STore AndersonMRPROPER_FILES += .config .config.old include/asm .version .old_version \ 11983eb3c740SRoman Zippel include/linux/autoconf.h include/linux/version.h \ 11993eb3c740SRoman Zippel include/linux/utsrelease.h \ 12007d3cc8b6SJan Blunck include/linux/bounds.h include/asm*/asm-offsets.h \ 1201c28ca3aaSAlexey Dobriyan Module.symvers Module.markers tags TAGS cscope* 12021da177e4SLinus Torvalds 12031da177e4SLinus Torvalds# clean - Delete most, but leave enough to build external modules 12041da177e4SLinus Torvalds# 12051da177e4SLinus Torvaldsclean: rm-dirs := $(CLEAN_DIRS) 12061da177e4SLinus Torvaldsclean: rm-files := $(CLEAN_FILES) 12073794f3e8SRandy Dunlapclean-dirs := $(addprefix _clean_,$(srctree) $(vmlinux-alldirs) Documentation) 12081da177e4SLinus Torvalds 12094f193362SPaul SmithPHONY += $(clean-dirs) clean archclean 12101da177e4SLinus Torvalds$(clean-dirs): 12111da177e4SLinus Torvalds $(Q)$(MAKE) $(clean)=$(patsubst _clean_%,%,$@) 12121da177e4SLinus Torvalds 12131da177e4SLinus Torvaldsclean: archclean $(clean-dirs) 12141da177e4SLinus Torvalds $(call cmd,rmdirs) 12151da177e4SLinus Torvalds $(call cmd,rmfiles) 12161da177e4SLinus Torvalds @find . $(RCS_FIND_IGNORE) \ 12171da177e4SLinus Torvalds \( -name '*.[oas]' -o -name '*.ko' -o -name '.*.cmd' \ 121815fde675SAndreas Gruenbacher -o -name '.*.d' -o -name '.*.tmp' -o -name '*.mod.c' \ 1219d35cb360SMathieu Desnoyers -o -name '*.symtypes' -o -name 'modules.order' \ 12202521f2c2SPeter Oberparleiter -o -name 'Module.markers' -o -name '.tmp_*.o.*' \ 12212521f2c2SPeter Oberparleiter -o -name '*.gcno' \) -type f -print | xargs rm -f 12221da177e4SLinus Torvalds 12231da177e4SLinus Torvalds# mrproper - Delete all generated files, including .config 12241da177e4SLinus Torvalds# 12251da177e4SLinus Torvaldsmrproper: rm-dirs := $(wildcard $(MRPROPER_DIRS)) 12261da177e4SLinus Torvaldsmrproper: rm-files := $(wildcard $(MRPROPER_FILES)) 12271da177e4SLinus Torvaldsmrproper-dirs := $(addprefix _mrproper_,Documentation/DocBook scripts) 12281da177e4SLinus Torvalds 12294f193362SPaul SmithPHONY += $(mrproper-dirs) mrproper archmrproper 12301da177e4SLinus Torvalds$(mrproper-dirs): 12311da177e4SLinus Torvalds $(Q)$(MAKE) $(clean)=$(patsubst _mrproper_%,%,$@) 12321da177e4SLinus Torvalds 12331da177e4SLinus Torvaldsmrproper: clean archmrproper $(mrproper-dirs) 12341da177e4SLinus Torvalds $(call cmd,rmdirs) 12351da177e4SLinus Torvalds $(call cmd,rmfiles) 12361da177e4SLinus Torvalds 12371da177e4SLinus Torvalds# distclean 12381da177e4SLinus Torvalds# 12394f193362SPaul SmithPHONY += distclean 12401da177e4SLinus Torvalds 12411da177e4SLinus Torvaldsdistclean: mrproper 12421da177e4SLinus Torvalds @find $(srctree) $(RCS_FIND_IGNORE) \ 12431da177e4SLinus Torvalds \( -name '*.orig' -o -name '*.rej' -o -name '*~' \ 12441da177e4SLinus Torvalds -o -name '*.bak' -o -name '#*#' -o -name '.*.orig' \ 12451da177e4SLinus Torvalds -o -name '.*.rej' -o -size 0 \ 12461da177e4SLinus Torvalds -o -name '*%' -o -name '.*.cmd' -o -name 'core' \) \ 12471da177e4SLinus Torvalds -type f -print | xargs rm -f 12481da177e4SLinus Torvalds 12491da177e4SLinus Torvalds 12501da177e4SLinus Torvalds# Packaging of the kernel to various formats 12511da177e4SLinus Torvalds# --------------------------------------------------------------------------- 12521da177e4SLinus Torvalds# rpm target kept for backward compatibility 12531da177e4SLinus Torvaldspackage-dir := $(srctree)/scripts/package 12541da177e4SLinus Torvalds 1255031ecc6dSZach Brown%pkg: include/config/kernel.release FORCE 12566c2133e1SSam Ravnborg $(Q)$(MAKE) $(build)=$(package-dir) $@ 1257031ecc6dSZach Brownrpm: include/config/kernel.release FORCE 12586c2133e1SSam Ravnborg $(Q)$(MAKE) $(build)=$(package-dir) $@ 12591da177e4SLinus Torvalds 12601da177e4SLinus Torvalds 12611da177e4SLinus Torvalds# Brief documentation of the typical targets used 12621da177e4SLinus Torvalds# --------------------------------------------------------------------------- 12631da177e4SLinus Torvalds 12645dffbe81SSegher Boessenkoolboards := $(wildcard $(srctree)/arch/$(SRCARCH)/configs/*_defconfig) 12651da177e4SLinus Torvaldsboards := $(notdir $(boards)) 12665dffbe81SSegher Boessenkoolboard-dirs := $(dir $(wildcard $(srctree)/arch/$(SRCARCH)/configs/*/*_defconfig)) 12675dffbe81SSegher Boessenkoolboard-dirs := $(sort $(notdir $(board-dirs:/=))) 12681da177e4SLinus Torvalds 12691da177e4SLinus Torvaldshelp: 12701da177e4SLinus Torvalds @echo 'Cleaning targets:' 12715ea084efSSamuel Tardieu @echo ' clean - Remove most generated files but keep the config and' 12725cc8d246SJesper Juhl @echo ' enough build support to build external modules' 12735ea084efSSamuel Tardieu @echo ' mrproper - Remove all generated files + config + various backup files' 12745cc8d246SJesper Juhl @echo ' distclean - mrproper + remove editor backup and patch files' 12751da177e4SLinus Torvalds @echo '' 12761da177e4SLinus Torvalds @echo 'Configuration targets:' 12771da177e4SLinus Torvalds @$(MAKE) -f $(srctree)/scripts/kconfig/Makefile help 12781da177e4SLinus Torvalds @echo '' 12791da177e4SLinus Torvalds @echo 'Other generic targets:' 12801da177e4SLinus Torvalds @echo ' all - Build all targets marked with [*]' 12811da177e4SLinus Torvalds @echo '* vmlinux - Build the bare kernel' 12821da177e4SLinus Torvalds @echo '* modules - Build all modules' 12839cc5d74cSBodo Eggert @echo ' modules_install - Install all modules to INSTALL_MOD_PATH (default: /)' 128488ecf814SDavid Woodhouse @echo ' firmware_install- Install all firmware to INSTALL_FW_PATH' 128588ecf814SDavid Woodhouse @echo ' (default: $$(INSTALL_MOD_PATH)/lib/firmware)' 12861da177e4SLinus Torvalds @echo ' dir/ - Build all files in dir and below' 12871da177e4SLinus Torvalds @echo ' dir/file.[ois] - Build specified target only' 1288155ad605SSam Ravnborg @echo ' dir/file.ko - Build module including final link' 1289c4d5ee67SRobert P. J. Day @echo ' modules_prepare - Set up for building external modules' 12901da177e4SLinus Torvalds @echo ' tags/TAGS - Generate tags file for editors' 12911da177e4SLinus Torvalds @echo ' cscope - Generate cscope index' 12926d128842SZach Brown @echo ' kernelrelease - Output the release version string' 1293cb58455cSSam Ravnborg @echo ' kernelversion - Output the version stored in Makefile' 12942fb9b1bdSSam Ravnborg @echo ' headers_install - Install sanitised kernel headers to INSTALL_HDR_PATH'; \ 129559df3230SGeert Uytterhoeven echo ' (default: $(INSTALL_HDR_PATH))'; \ 12962fb9b1bdSSam Ravnborg echo '' 12971da177e4SLinus Torvalds @echo 'Static analysers' 12981da177e4SLinus Torvalds @echo ' checkstack - Generate a list of stack hogs' 12991da177e4SLinus Torvalds @echo ' namespacecheck - Name space analysis on compiled kernel' 1300aa025e7dSSam Ravnborg @echo ' versioncheck - Sanity check on version.h usage' 1301ec2d987fSRandy Dunlap @echo ' includecheck - Check for duplicate included header files' 1302295ac051SAdrian Bunk @echo ' export_report - List the usages of all exported symbols' 1303179efcb4SVegard Nossum @echo ' headers_check - Sanity check on exported headers' 1304179efcb4SVegard Nossum @echo ' headerdep - Detect inclusion cycles in headers'; \ 13052fb9b1bdSSam Ravnborg echo '' 13061da177e4SLinus Torvalds @echo 'Kernel packaging:' 13076c2133e1SSam Ravnborg @$(MAKE) $(build)=$(package-dir) help 13081da177e4SLinus Torvalds @echo '' 13091da177e4SLinus Torvalds @echo 'Documentation targets:' 13101da177e4SLinus Torvalds @$(MAKE) -f $(srctree)/Documentation/DocBook/Makefile dochelp 13111da177e4SLinus Torvalds @echo '' 131201dee188SAndres Salomon @echo 'Architecture specific targets ($(SRCARCH)):' 13131da177e4SLinus Torvalds @$(if $(archhelp),$(archhelp),\ 131401dee188SAndres Salomon echo ' No architecture specific help defined for $(SRCARCH)') 13151da177e4SLinus Torvalds @echo '' 13161da177e4SLinus Torvalds @$(if $(boards), \ 13171da177e4SLinus Torvalds $(foreach b, $(boards), \ 13181da177e4SLinus Torvalds printf " %-24s - Build for %s\\n" $(b) $(subst _defconfig,,$(b));) \ 13191da177e4SLinus Torvalds echo '') 13205dffbe81SSegher Boessenkool @$(if $(board-dirs), \ 13215dffbe81SSegher Boessenkool $(foreach b, $(board-dirs), \ 13225dffbe81SSegher Boessenkool printf " %-16s - Show %s-specific targets\\n" help-$(b) $(b);) \ 13235dffbe81SSegher Boessenkool printf " %-16s - Show all of the above\\n" help-boards; \ 13245dffbe81SSegher Boessenkool echo '') 13251da177e4SLinus Torvalds 13261da177e4SLinus Torvalds @echo ' make V=0|1 [targets] 0 => quiet build (default), 1 => verbose build' 132745d506bdSSam Ravnborg @echo ' make V=2 [targets] 2 => give reason for rebuild of target' 13281da177e4SLinus Torvalds @echo ' make O=dir [targets] Locate all output files in "dir", including .config' 1329701842e3SDustin Kirkland @echo ' make C=1 [targets] Check all c source with $$CHECK (sparse by default)' 1330701842e3SDustin Kirkland @echo ' make C=2 [targets] Force check of all c source with $$CHECK' 13311da177e4SLinus Torvalds @echo '' 13321da177e4SLinus Torvalds @echo 'Execute "make" or "make all" to build all targets marked with [*] ' 13331da177e4SLinus Torvalds @echo 'For further info see the ./README file' 13341da177e4SLinus Torvalds 13351da177e4SLinus Torvalds 13365dffbe81SSegher Boessenkoolhelp-board-dirs := $(addprefix help-,$(board-dirs)) 13375dffbe81SSegher Boessenkool 13385dffbe81SSegher Boessenkoolhelp-boards: $(help-board-dirs) 13395dffbe81SSegher Boessenkool 13405dffbe81SSegher Boessenkoolboards-per-dir = $(notdir $(wildcard $(srctree)/arch/$(SRCARCH)/configs/$*/*_defconfig)) 13415dffbe81SSegher Boessenkool 13425dffbe81SSegher Boessenkool$(help-board-dirs): help-%: 13435dffbe81SSegher Boessenkool @echo 'Architecture specific targets ($(SRCARCH) $*):' 13445dffbe81SSegher Boessenkool @$(if $(boards-per-dir), \ 13455dffbe81SSegher Boessenkool $(foreach b, $(boards-per-dir), \ 13465dffbe81SSegher Boessenkool printf " %-24s - Build for %s\\n" $*/$(b) $(subst _defconfig,,$(b));) \ 13475dffbe81SSegher Boessenkool echo '') 13485dffbe81SSegher Boessenkool 13495dffbe81SSegher Boessenkool 13501da177e4SLinus Torvalds# Documentation targets 13511da177e4SLinus Torvalds# --------------------------------------------------------------------------- 13521da177e4SLinus Torvalds%docs: scripts_basic FORCE 13531da177e4SLinus Torvalds $(Q)$(MAKE) $(build)=Documentation/DocBook $@ 13541da177e4SLinus Torvalds 13551da177e4SLinus Torvaldselse # KBUILD_EXTMOD 13561da177e4SLinus Torvalds 13571da177e4SLinus Torvalds### 13581da177e4SLinus Torvalds# External module support. 13591da177e4SLinus Torvalds# When building external modules the kernel used as basis is considered 13601da177e4SLinus Torvalds# read-only, and no consistency checks are made and the make 13611da177e4SLinus Torvalds# system is not used on the basis kernel. If updates are required 13621da177e4SLinus Torvalds# in the basis kernel ordinary make commands (without M=...) must 13631da177e4SLinus Torvalds# be used. 13641da177e4SLinus Torvalds# 13651da177e4SLinus Torvalds# The following are the only valid targets when building external 13661da177e4SLinus Torvalds# modules. 13671da177e4SLinus Torvalds# make M=dir clean Delete all automatically generated files 13681da177e4SLinus Torvalds# make M=dir modules Make all modules in specified dir 13691da177e4SLinus Torvalds# make M=dir Same as 'make M=dir modules' 13701da177e4SLinus Torvalds# make M=dir modules_install 1371070b98bfSSam Ravnborg# Install the modules built in the module directory 13721da177e4SLinus Torvalds# Assumes install directory is already created 13731da177e4SLinus Torvalds 13741da177e4SLinus Torvalds# We are always building modules 13751da177e4SLinus TorvaldsKBUILD_MODULES := 1 13764f193362SPaul SmithPHONY += crmodverdir 13771da177e4SLinus Torvaldscrmodverdir: 13787bb9d092SSam Ravnborg $(cmd_crmodverdir) 13791da177e4SLinus Torvalds 13804f193362SPaul SmithPHONY += $(objtree)/Module.symvers 13811da177e4SLinus Torvalds$(objtree)/Module.symvers: 13821da177e4SLinus Torvalds @test -e $(objtree)/Module.symvers || ( \ 13831da177e4SLinus Torvalds echo; \ 13841da177e4SLinus Torvalds echo " WARNING: Symbol version dump $(objtree)/Module.symvers"; \ 13851da177e4SLinus Torvalds echo " is missing; modules will have no dependencies and modversions."; \ 13861da177e4SLinus Torvalds echo ) 13871da177e4SLinus Torvalds 13881da177e4SLinus Torvaldsmodule-dirs := $(addprefix _module_,$(KBUILD_EXTMOD)) 13894f193362SPaul SmithPHONY += $(module-dirs) modules 13901da177e4SLinus Torvalds$(module-dirs): crmodverdir $(objtree)/Module.symvers 13911da177e4SLinus Torvalds $(Q)$(MAKE) $(build)=$(patsubst _module_%,%,$@) 13921da177e4SLinus Torvalds 13931da177e4SLinus Torvaldsmodules: $(module-dirs) 1394fd54f502SMike Frysinger @$(kecho) ' Building modules, stage 2.'; 1395b805aa0eSSam Ravnborg $(Q)$(MAKE) -f $(srctree)/scripts/Makefile.modpost 13961da177e4SLinus Torvalds 13974f193362SPaul SmithPHONY += modules_install 1398a67dc21aSSam Ravnborgmodules_install: _emodinst_ _emodinst_post 1399a67dc21aSSam Ravnborg 1400a67dc21aSSam Ravnborginstall-dir := $(if $(INSTALL_MOD_DIR),$(INSTALL_MOD_DIR),extra) 14014f193362SPaul SmithPHONY += _emodinst_ 1402a67dc21aSSam Ravnborg_emodinst_: 1403a67dc21aSSam Ravnborg $(Q)mkdir -p $(MODLIB)/$(install-dir) 1404b805aa0eSSam Ravnborg $(Q)$(MAKE) -f $(srctree)/scripts/Makefile.modinst 14051da177e4SLinus Torvalds 14064f193362SPaul SmithPHONY += _emodinst_post 1407a67dc21aSSam Ravnborg_emodinst_post: _emodinst_ 1408a67dc21aSSam Ravnborg $(call cmd,depmod) 1409a67dc21aSSam Ravnborg 14101da177e4SLinus Torvaldsclean-dirs := $(addprefix _clean_,$(KBUILD_EXTMOD)) 14111da177e4SLinus Torvalds 14124f193362SPaul SmithPHONY += $(clean-dirs) clean 14131da177e4SLinus Torvalds$(clean-dirs): 14141da177e4SLinus Torvalds $(Q)$(MAKE) $(clean)=$(patsubst _clean_%,%,$@) 14151da177e4SLinus Torvalds 14161da177e4SLinus Torvaldsclean: rm-dirs := $(MODVERDIR) 14170c56042aSFrédéric Brièreclean: rm-files := $(KBUILD_EXTMOD)/Module.symvers \ 14180c56042aSFrédéric Brière $(KBUILD_EXTMOD)/Module.markers \ 14190c56042aSFrédéric Brière $(KBUILD_EXTMOD)/modules.order 14201da177e4SLinus Torvaldsclean: $(clean-dirs) 14211da177e4SLinus Torvalds $(call cmd,rmdirs) 1422c34114f4SMike Frysinger $(call cmd,rmfiles) 14231da177e4SLinus Torvalds @find $(KBUILD_EXTMOD) $(RCS_FIND_IGNORE) \ 14241da177e4SLinus Torvalds \( -name '*.[oas]' -o -name '*.ko' -o -name '.*.cmd' \ 14252521f2c2SPeter Oberparleiter -o -name '.*.d' -o -name '.*.tmp' -o -name '*.mod.c' \ 14262521f2c2SPeter Oberparleiter -o -name '*.gcno' \) -type f -print | xargs rm -f 14271da177e4SLinus Torvalds 14281da177e4SLinus Torvaldshelp: 14291da177e4SLinus Torvalds @echo ' Building external modules.' 14301da177e4SLinus Torvalds @echo ' Syntax: make -C path/to/kernel/src M=$$PWD target' 14311da177e4SLinus Torvalds @echo '' 14321da177e4SLinus Torvalds @echo ' modules - default target, build the module(s)' 14331da177e4SLinus Torvalds @echo ' modules_install - install the module' 14341da177e4SLinus Torvalds @echo ' clean - remove generated files in module directory only' 14351da177e4SLinus Torvalds @echo '' 143606300b21SSam Ravnborg 143706300b21SSam Ravnborg# Dummies... 14384f193362SPaul SmithPHONY += prepare scripts 143906300b21SSam Ravnborgprepare: ; 144006300b21SSam Ravnborgscripts: ; 14411da177e4SLinus Torvaldsendif # KBUILD_EXTMOD 14421da177e4SLinus Torvalds 14431da177e4SLinus Torvalds# Generate tags for editors 14441da177e4SLinus Torvalds# --------------------------------------------------------------------------- 1445a680eedcSSam Ravnborgquiet_cmd_tags = GEN $@ 1446a680eedcSSam Ravnborg cmd_tags = $(CONFIG_SHELL) $(srctree)/scripts/tags.sh $@ 14471da177e4SLinus Torvalds 1448a680eedcSSam Ravnborgtags TAGS cscope: FORCE 14491da177e4SLinus Torvalds $(call cmd,tags) 14501da177e4SLinus Torvalds 14511da177e4SLinus Torvalds# Scripts to check various things for consistency 14521da177e4SLinus Torvalds# --------------------------------------------------------------------------- 14531da177e4SLinus Torvalds 14541da177e4SLinus Torvaldsincludecheck: 14551da177e4SLinus Torvalds find * $(RCS_FIND_IGNORE) \ 14561da177e4SLinus Torvalds -name '*.[hcS]' -type f -print | sort \ 145780007434SGeert Uytterhoeven | xargs $(PERL) -w $(srctree)/scripts/checkincludes.pl 14581da177e4SLinus Torvalds 14591da177e4SLinus Torvaldsversioncheck: 14601da177e4SLinus Torvalds find * $(RCS_FIND_IGNORE) \ 14611da177e4SLinus Torvalds -name '*.[hcS]' -type f -print | sort \ 146280007434SGeert Uytterhoeven | xargs $(PERL) -w $(srctree)/scripts/checkversion.pl 14631da177e4SLinus Torvalds 14641da177e4SLinus Torvaldsnamespacecheck: 14651da177e4SLinus Torvalds $(PERL) $(srctree)/scripts/namespace.pl 14661da177e4SLinus Torvalds 1467295ac051SAdrian Bunkexport_report: 1468295ac051SAdrian Bunk $(PERL) $(srctree)/scripts/export_report.pl 1469295ac051SAdrian Bunk 14701da177e4SLinus Torvaldsendif #ifeq ($(config-targets),1) 14711da177e4SLinus Torvaldsendif #ifeq ($(mixed-targets),1) 14721da177e4SLinus Torvalds 1473c30a02e0SRoman ZippelPHONY += checkstack kernelrelease kernelversion 1474e3ccf6e3SJeff Dike 1475011e3a9aSJeff Dike# UML needs a little special treatment here. It wants to use the host 1476011e3a9aSJeff Dike# toolchain, so needs $(SUBARCH) passed to checkstack.pl. Everyone 1477011e3a9aSJeff Dike# else wants $(ARCH), including people doing cross-builds, which means 1478011e3a9aSJeff Dike# that $(SUBARCH) doesn't work here. 1479011e3a9aSJeff Dikeifeq ($(ARCH), um) 1480011e3a9aSJeff DikeCHECKSTACK_ARCH := $(SUBARCH) 1481011e3a9aSJeff Dikeelse 1482011e3a9aSJeff DikeCHECKSTACK_ARCH := $(ARCH) 1483011e3a9aSJeff Dikeendif 14841da177e4SLinus Torvaldscheckstack: 14851da177e4SLinus Torvalds $(OBJDUMP) -d vmlinux $$(find . -name '*.ko') | \ 1486011e3a9aSJeff Dike $(PERL) $(src)/scripts/checkstack.pl $(CHECKSTACK_ARCH) 14871da177e4SLinus Torvalds 14881da177e4SLinus Torvaldskernelrelease: 1489f1d28fb0SRoman Zippel $(if $(wildcard include/config/kernel.release), $(Q)echo $(KERNELRELEASE), \ 1490f1d28fb0SRoman Zippel $(error kernelrelease not valid - run 'make prepare' to update it)) 1491cb58455cSSam Ravnborgkernelversion: 14922244cbd8SSam Ravnborg @echo $(KERNELVERSION) 14931da177e4SLinus Torvalds 149406300b21SSam Ravnborg# Single targets 149506300b21SSam Ravnborg# --------------------------------------------------------------------------- 1496bc2546a6SSam Ravnborg# Single targets are compatible with: 1497e1b8513dSRobert P. J. Day# - build with mixed source and output 1498bc2546a6SSam Ravnborg# - build with separate output dir 'make O=...' 1499bc2546a6SSam Ravnborg# - external modules 1500bc2546a6SSam Ravnborg# 1501bc2546a6SSam Ravnborg# target-dir => where to store outputfile 1502bc2546a6SSam Ravnborg# build-dir => directory in kernel source tree to use 150306300b21SSam Ravnborg 150406300b21SSam Ravnborgifeq ($(KBUILD_EXTMOD),) 1505aa360879SSam Ravnborg build-dir = $(patsubst %/,%,$(dir $@)) 1506bc2546a6SSam Ravnborg target-dir = $(dir $@) 150706300b21SSam Ravnborgelse 150806300b21SSam Ravnborg zap-slash=$(filter-out .,$(patsubst %/,%,$(dir $@))) 1509bc2546a6SSam Ravnborg build-dir = $(KBUILD_EXTMOD)$(if $(zap-slash),/$(zap-slash)) 1510bc2546a6SSam Ravnborg target-dir = $(if $(KBUILD_EXTMOD),$(dir $<),$(dir $@)) 151106300b21SSam Ravnborgendif 151206300b21SSam Ravnborg 1513bc2546a6SSam Ravnborg%.s: %.c prepare scripts FORCE 1514bc2546a6SSam Ravnborg $(Q)$(MAKE) $(build)=$(build-dir) $(target-dir)$(notdir $@) 1515bc2546a6SSam Ravnborg%.i: %.c prepare scripts FORCE 1516bc2546a6SSam Ravnborg $(Q)$(MAKE) $(build)=$(build-dir) $(target-dir)$(notdir $@) 1517bc2546a6SSam Ravnborg%.o: %.c prepare scripts FORCE 1518bc2546a6SSam Ravnborg $(Q)$(MAKE) $(build)=$(build-dir) $(target-dir)$(notdir $@) 1519bc2546a6SSam Ravnborg%.lst: %.c prepare scripts FORCE 1520bc2546a6SSam Ravnborg $(Q)$(MAKE) $(build)=$(build-dir) $(target-dir)$(notdir $@) 1521bc2546a6SSam Ravnborg%.s: %.S prepare scripts FORCE 1522bc2546a6SSam Ravnborg $(Q)$(MAKE) $(build)=$(build-dir) $(target-dir)$(notdir $@) 1523bc2546a6SSam Ravnborg%.o: %.S prepare scripts FORCE 1524bc2546a6SSam Ravnborg $(Q)$(MAKE) $(build)=$(build-dir) $(target-dir)$(notdir $@) 152515fde675SAndreas Gruenbacher%.symtypes: %.c prepare scripts FORCE 152615fde675SAndreas Gruenbacher $(Q)$(MAKE) $(build)=$(build-dir) $(target-dir)$(notdir $@) 1527bc2546a6SSam Ravnborg 1528bc2546a6SSam Ravnborg# Modules 152931110ebbSSam Ravnborg/: prepare scripts FORCE 153031110ebbSSam Ravnborg $(cmd_crmodverdir) 153131110ebbSSam Ravnborg $(Q)$(MAKE) KBUILD_MODULES=$(if $(CONFIG_MODULES),1) \ 153231110ebbSSam Ravnborg $(build)=$(build-dir) 153331110ebbSSam Ravnborg%/: prepare scripts FORCE 15347bb9d092SSam Ravnborg $(cmd_crmodverdir) 153506300b21SSam Ravnborg $(Q)$(MAKE) KBUILD_MODULES=$(if $(CONFIG_MODULES),1) \ 1536bc2546a6SSam Ravnborg $(build)=$(build-dir) 1537bc2546a6SSam Ravnborg%.ko: prepare scripts FORCE 15387bb9d092SSam Ravnborg $(cmd_crmodverdir) 153906300b21SSam Ravnborg $(Q)$(MAKE) KBUILD_MODULES=$(if $(CONFIG_MODULES),1) \ 1540bc2546a6SSam Ravnborg $(build)=$(build-dir) $(@:.ko=.o) 1541b805aa0eSSam Ravnborg $(Q)$(MAKE) -f $(srctree)/scripts/Makefile.modpost 154206300b21SSam Ravnborg 15431da177e4SLinus Torvalds# FIXME Should go into a make.lib or something 15441da177e4SLinus Torvalds# =========================================================================== 15451da177e4SLinus Torvalds 15461da177e4SLinus Torvaldsquiet_cmd_rmdirs = $(if $(wildcard $(rm-dirs)),CLEAN $(wildcard $(rm-dirs))) 15471da177e4SLinus Torvalds cmd_rmdirs = rm -rf $(rm-dirs) 15481da177e4SLinus Torvalds 15491da177e4SLinus Torvaldsquiet_cmd_rmfiles = $(if $(wildcard $(rm-files)),CLEAN $(wildcard $(rm-files))) 15501da177e4SLinus Torvalds cmd_rmfiles = rm -f $(rm-files) 15511da177e4SLinus Torvalds 1552bc3c26feSUwe Kleine-König# Run depmod only if we have System.map and depmod is executable 155350a8ec31SSam Ravnborgquiet_cmd_depmod = DEPMOD $(KERNELRELEASE) 155450a8ec31SSam Ravnborg cmd_depmod = \ 1555d8d2e78aSSam Ravnborg if [ -r System.map -a -x $(DEPMOD) ]; then \ 155650a8ec31SSam Ravnborg $(DEPMOD) -ae -F System.map \ 155775bccd88SGilles Espinasse $(if $(strip $(INSTALL_MOD_PATH)), -b $(INSTALL_MOD_PATH) ) \ 155850a8ec31SSam Ravnborg $(KERNELRELEASE); \ 155950a8ec31SSam Ravnborg fi 156050a8ec31SSam Ravnborg 15617bb9d092SSam Ravnborg# Create temporary dir for module support files 1562ab19f879SSam Ravnborg# clean it up only when building all modules 1563ab19f879SSam Ravnborgcmd_crmodverdir = $(Q)mkdir -p $(MODVERDIR) \ 1564ab19f879SSam Ravnborg $(if $(KBUILD_MODULES),; rm -f $(MODVERDIR)/*) 15651da177e4SLinus Torvalds 1566222d394dSSam Ravnborga_flags = -Wp,-MD,$(depfile) $(KBUILD_AFLAGS) $(AFLAGS_KERNEL) \ 1567d8672b40SSam Ravnborg $(NOSTDINC_FLAGS) $(LINUXINCLUDE) $(KBUILD_CPPFLAGS) \ 15685e8d780dSSam Ravnborg $(modkern_aflags) $(EXTRA_AFLAGS) $(AFLAGS_$(basetarget).o) 15691da177e4SLinus Torvalds 15701da177e4SLinus Torvaldsquiet_cmd_as_o_S = AS $@ 15711da177e4SLinus Torvaldscmd_as_o_S = $(CC) $(a_flags) -c -o $@ $< 15721da177e4SLinus Torvalds 15731da177e4SLinus Torvalds# read all saved command lines 15741da177e4SLinus Torvalds 15751da177e4SLinus Torvaldstargets := $(wildcard $(sort $(targets))) 15761da177e4SLinus Torvaldscmd_files := $(wildcard .*.cmd $(foreach f,$(targets),$(dir $(f)).$(notdir $(f)).cmd)) 15771da177e4SLinus Torvalds 15781da177e4SLinus Torvaldsifneq ($(cmd_files),) 15791da177e4SLinus Torvalds $(cmd_files): ; # Do not try to update included dependency files 15801da177e4SLinus Torvalds include $(cmd_files) 15811da177e4SLinus Torvaldsendif 15821da177e4SLinus Torvalds 15831da177e4SLinus Torvalds# Shorthand for $(Q)$(MAKE) -f scripts/Makefile.clean obj=dir 15841da177e4SLinus Torvalds# Usage: 15851da177e4SLinus Torvalds# $(Q)$(MAKE) $(clean)=dir 15861da177e4SLinus Torvaldsclean := -f $(if $(KBUILD_SRC),$(srctree)/)scripts/Makefile.clean obj 15871da177e4SLinus Torvalds 15881da177e4SLinus Torvaldsendif # skip-makefile 15891da177e4SLinus Torvalds 15904f193362SPaul SmithPHONY += FORCE 15911da177e4SLinus TorvaldsFORCE: 15924f193362SPaul Smith 15934f193362SPaul Smith# Declare the contents of the .PHONY variable as phony. We keep that 1594fe8d0a41SKirill Smelkov# information in a variable so we can use it in if_changed and friends. 15954f193362SPaul Smith.PHONY: $(PHONY) 1596