11da177e4SLinus TorvaldsVERSION = 2 21da177e4SLinus TorvaldsPATCHLEVEL = 6 328d0325cSLinus TorvaldsSUBLEVEL = 31 428d0325cSLinus TorvaldsEXTRAVERSION = -rc1 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 149*11294235SAmerigo 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) 1831da177e4SLinus TorvaldsARCH ?= $(SUBARCH) 1841da177e4SLinus TorvaldsCROSS_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++ 2241da177e4SLinus TorvaldsHOSTCFLAGS = -Wall -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 3181da177e4SLinus TorvaldsDEPMOD = /sbin/depmod 3191da177e4SLinus TorvaldsKALLSYMS = scripts/kallsyms 3201da177e4SLinus TorvaldsPERL = perl 3211da177e4SLinus TorvaldsCHECK = sparse 3221da177e4SLinus Torvalds 32380a7d1d9SHannes EderCHECKFLAGS := -D__linux__ -Dlinux -D__STDC__ -Dunix -D__unix__ \ 32480a7d1d9SHannes Eder -Wbitwise -Wno-return-void $(CF) 3251da177e4SLinus TorvaldsMODFLAGS = -DMODULE 3261da177e4SLinus TorvaldsCFLAGS_MODULE = $(MODFLAGS) 3271da177e4SLinus TorvaldsAFLAGS_MODULE = $(MODFLAGS) 328114f5157SRoland McGrathLDFLAGS_MODULE = 3291da177e4SLinus TorvaldsCFLAGS_KERNEL = 3301da177e4SLinus TorvaldsAFLAGS_KERNEL = 3312521f2c2SPeter OberparleiterCFLAGS_GCOV = -fprofile-arcs -ftest-coverage 3321da177e4SLinus Torvalds 3331da177e4SLinus Torvalds 3341da177e4SLinus Torvalds# Use LINUXINCLUDE when you must reference the include/ directory. 3351da177e4SLinus Torvalds# Needed to be compatible with the O= option 3361da177e4SLinus TorvaldsLINUXINCLUDE := -Iinclude \ 3372dd34b48SRussell King $(if $(KBUILD_SRC),-Iinclude2 -I$(srctree)/include) \ 3385e4786f7SSam Ravnborg -I$(srctree)/arch/$(hdr-arch)/include \ 339e623a3b8SZachary Amsden -include include/linux/autoconf.h 3401da177e4SLinus Torvalds 341d8672b40SSam RavnborgKBUILD_CPPFLAGS := -D__KERNEL__ 3421da177e4SLinus Torvalds 343a0f97e06SSam RavnborgKBUILD_CFLAGS := -Wall -Wundef -Wstrict-prototypes -Wno-trigraphs \ 34494bed2a9SDave Jones -fno-strict-aliasing -fno-common \ 345a8735821SFloris Kraak -Werror-implicit-function-declaration \ 346a8735821SFloris Kraak -Wno-format-security 347222d394dSSam RavnborgKBUILD_AFLAGS := -D__ASSEMBLY__ 3481da177e4SLinus Torvalds 349f1d28fb0SRoman Zippel# Read KERNELRELEASE from include/config/kernel.release (if it exists) 350f1d28fb0SRoman ZippelKERNELRELEASE = $(shell cat include/config/kernel.release 2> /dev/null) 3512244cbd8SSam RavnborgKERNELVERSION = $(VERSION).$(PATCHLEVEL).$(SUBLEVEL)$(EXTRAVERSION) 352cb58455cSSam Ravnborg 353070b98bfSSam Ravnborgexport VERSION PATCHLEVEL SUBLEVEL KERNELRELEASE KERNELVERSION 35480ef88d6SSam Ravnborgexport ARCH SRCARCH CONFIG_SHELL HOSTCC HOSTCFLAGS CROSS_COMPILE AS LD CC 355070b98bfSSam Ravnborgexport CPP AR NM STRIP OBJCOPY OBJDUMP MAKE AWK GENKSYMS PERL UTS_MACHINE 356070b98bfSSam Ravnborgexport HOSTCXX HOSTCXXFLAGS LDFLAGS_MODULE CHECK CHECKFLAGS 3571da177e4SLinus Torvalds 35806c5040cSSam Ravnborgexport KBUILD_CPPFLAGS NOSTDINC_FLAGS LINUXINCLUDE OBJCOPYFLAGS LDFLAGS 3592521f2c2SPeter Oberparleiterexport KBUILD_CFLAGS CFLAGS_KERNEL CFLAGS_MODULE CFLAGS_GCOV 360222d394dSSam Ravnborgexport KBUILD_AFLAGS AFLAGS_KERNEL AFLAGS_MODULE 3611da177e4SLinus Torvalds 3621da177e4SLinus Torvalds# When compiling out-of-tree modules, put MODVERDIR in the module 3631da177e4SLinus Torvalds# tree rather than in the kernel tree. The kernel tree might 3641da177e4SLinus Torvalds# even be read-only. 3651da177e4SLinus Torvaldsexport MODVERDIR := $(if $(KBUILD_EXTMOD),$(firstword $(KBUILD_EXTMOD))/).tmp_versions 3661da177e4SLinus Torvalds 3671da177e4SLinus Torvalds# Files to ignore in find ... statements 3681da177e4SLinus Torvalds 369406119f4STrond 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 370406119f4STrond Myklebustexport RCS_TAR_IGNORE := --exclude SCCS --exclude BitKeeper --exclude .svn --exclude CVS --exclude .pc --exclude .hg --exclude .git 3711da177e4SLinus Torvalds 3721da177e4SLinus Torvalds# =========================================================================== 3731da177e4SLinus Torvalds# Rules shared between *config targets and build targets 3741da177e4SLinus Torvalds 3751da177e4SLinus Torvalds# Basic helpers built in scripts/ 3764f193362SPaul SmithPHONY += scripts_basic 3771da177e4SLinus Torvaldsscripts_basic: 3781da177e4SLinus Torvalds $(Q)$(MAKE) $(build)=scripts/basic 3791da177e4SLinus Torvalds 380cd05e6bdSJan Beulich# To avoid any implicit rule to kick in, define an empty command. 381cd05e6bdSJan Beulichscripts/basic/%: scripts_basic ; 382cd05e6bdSJan Beulich 3834f193362SPaul SmithPHONY += outputmakefile 384fd5f0cd6SJan Beulich# outputmakefile generates a Makefile in the output directory, if using a 385fd5f0cd6SJan Beulich# separate output directory. This allows convenient use of make in the 386fd5f0cd6SJan Beulich# output directory. 3871da177e4SLinus Torvaldsoutputmakefile: 388fd5f0cd6SJan Beulichifneq ($(KBUILD_SRC),) 38992979997SAndi Kleen $(Q)ln -fsn $(srctree) source 390fd5f0cd6SJan Beulich $(Q)$(CONFIG_SHELL) $(srctree)/scripts/mkmakefile \ 391fd5f0cd6SJan Beulich $(srctree) $(objtree) $(VERSION) $(PATCHLEVEL) 392fd5f0cd6SJan Beulichendif 3931da177e4SLinus Torvalds 3941da177e4SLinus Torvalds# To make sure we do not include .config for any of the *config targets 3951da177e4SLinus Torvalds# catch them early, and hand them over to scripts/kconfig/Makefile 3961da177e4SLinus Torvalds# It is allowed to specify more targets when calling make, including 3971da177e4SLinus Torvalds# mixing *config targets and build targets. 3981da177e4SLinus Torvalds# For example 'make oldconfig all'. 3991da177e4SLinus Torvalds# Detect when mixed targets is specified, and make a second invocation 4001da177e4SLinus Torvalds# of make so .config is not included in this case either (for *config). 4011da177e4SLinus Torvalds 4023eb3c740SRoman Zippelno-dot-config-targets := clean mrproper distclean \ 403c30a02e0SRoman Zippel cscope TAGS tags help %docs check% \ 4043eb3c740SRoman Zippel include/linux/version.h headers_% \ 4053eb3c740SRoman Zippel kernelrelease kernelversion 4061da177e4SLinus Torvalds 4071da177e4SLinus Torvaldsconfig-targets := 0 4081da177e4SLinus Torvaldsmixed-targets := 0 4091da177e4SLinus Torvaldsdot-config := 1 4101da177e4SLinus Torvalds 4111da177e4SLinus Torvaldsifneq ($(filter $(no-dot-config-targets), $(MAKECMDGOALS)),) 4121da177e4SLinus Torvalds ifeq ($(filter-out $(no-dot-config-targets), $(MAKECMDGOALS)),) 4131da177e4SLinus Torvalds dot-config := 0 4141da177e4SLinus Torvalds endif 4151da177e4SLinus Torvaldsendif 4161da177e4SLinus Torvalds 4171da177e4SLinus Torvaldsifeq ($(KBUILD_EXTMOD),) 4181da177e4SLinus Torvalds ifneq ($(filter config %config,$(MAKECMDGOALS)),) 4191da177e4SLinus Torvalds config-targets := 1 4201da177e4SLinus Torvalds ifneq ($(filter-out config %config,$(MAKECMDGOALS)),) 4211da177e4SLinus Torvalds mixed-targets := 1 4221da177e4SLinus Torvalds endif 4231da177e4SLinus Torvalds endif 4241da177e4SLinus Torvaldsendif 4251da177e4SLinus Torvalds 4261da177e4SLinus Torvaldsifeq ($(mixed-targets),1) 4271da177e4SLinus Torvalds# =========================================================================== 4281da177e4SLinus Torvalds# We're called with mixed targets (*config and build targets). 4291da177e4SLinus Torvalds# Handle them one by one. 4301da177e4SLinus Torvalds 4311da177e4SLinus Torvalds%:: FORCE 4321da177e4SLinus Torvalds $(Q)$(MAKE) -C $(srctree) KBUILD_SRC= $@ 4331da177e4SLinus Torvalds 4341da177e4SLinus Torvaldselse 4351da177e4SLinus Torvaldsifeq ($(config-targets),1) 4361da177e4SLinus Torvalds# =========================================================================== 4371da177e4SLinus Torvalds# *config targets only - make sure prerequisites are updated, and descend 4381da177e4SLinus Torvalds# in scripts/kconfig to make the *config target 4391da177e4SLinus Torvalds 4401da177e4SLinus Torvalds# Read arch specific Makefile to set KBUILD_DEFCONFIG as needed. 4411da177e4SLinus Torvalds# KBUILD_DEFCONFIG may point out an alternative default configuration 4421da177e4SLinus Torvalds# used for 'make defconfig' 44374b469f2SSam Ravnborginclude $(srctree)/arch/$(SRCARCH)/Makefile 44461bee204SAl Viroexport KBUILD_DEFCONFIG KBUILD_KCONFIG 4451da177e4SLinus Torvalds 44631110ebbSSam Ravnborgconfig: scripts_basic outputmakefile FORCE 44731110ebbSSam Ravnborg $(Q)mkdir -p include/linux include/config 44831110ebbSSam Ravnborg $(Q)$(MAKE) $(build)=scripts/kconfig $@ 44931110ebbSSam Ravnborg 45031110ebbSSam Ravnborg%config: scripts_basic outputmakefile FORCE 451c955ccafSRoman Zippel $(Q)mkdir -p include/linux include/config 4521da177e4SLinus Torvalds $(Q)$(MAKE) $(build)=scripts/kconfig $@ 4531da177e4SLinus Torvalds 4541da177e4SLinus Torvaldselse 4551da177e4SLinus Torvalds# =========================================================================== 4561da177e4SLinus Torvalds# Build targets only - this includes vmlinux, arch specific targets, clean 4571da177e4SLinus Torvalds# targets and others. In general all targets except *config targets. 4581da177e4SLinus Torvalds 4591da177e4SLinus Torvaldsifeq ($(KBUILD_EXTMOD),) 4601da177e4SLinus Torvalds# Additional helpers built in scripts/ 4611da177e4SLinus Torvalds# Carefully list dependencies so we do not try to build scripts twice 462070b98bfSSam Ravnborg# in parallel 4634f193362SPaul SmithPHONY += scripts 4642e3646e5SRoman Zippelscripts: scripts_basic include/config/auto.conf 4651da177e4SLinus Torvalds $(Q)$(MAKE) $(build)=$(@) 4661da177e4SLinus Torvalds 4671da177e4SLinus Torvalds# Objects we will link into vmlinux / subdirs we need to visit 4681da177e4SLinus Torvaldsinit-y := init/ 4694d2acfbfSDavid Woodhousedrivers-y := drivers/ sound/ firmware/ 4701da177e4SLinus Torvaldsnet-y := net/ 4711da177e4SLinus Torvaldslibs-y := lib/ 4721da177e4SLinus Torvaldscore-y := usr/ 4731da177e4SLinus Torvaldsendif # KBUILD_EXTMOD 4741da177e4SLinus Torvalds 4751da177e4SLinus Torvaldsifeq ($(dot-config),1) 4769ee4e336SSam Ravnborg# Read in config 4779ee4e336SSam Ravnborg-include include/config/auto.conf 4781da177e4SLinus Torvalds 4799ee4e336SSam Ravnborgifeq ($(KBUILD_EXTMOD),) 4801da177e4SLinus Torvalds# Read in dependencies to all Kconfig* files, make sure to run 4811da177e4SLinus Torvalds# oldconfig if changes are detected. 482c955ccafSRoman Zippel-include include/config/auto.conf.cmd 4831da177e4SLinus Torvalds 4841da177e4SLinus Torvalds# To avoid any implicit rule to kick in, define an empty command 48514cdd3c4SRoman Zippel$(KCONFIG_CONFIG) include/config/auto.conf.cmd: ; 4861da177e4SLinus Torvalds 487c955ccafSRoman Zippel# If .config is newer than include/config/auto.conf, someone tinkered 488752625cfSSam Ravnborg# with it and forgot to run make oldconfig. 489070b98bfSSam Ravnborg# if auto.conf.cmd is missing then we are probably in a cleaned tree so 490752625cfSSam Ravnborg# we execute the config step to be sure to catch updated Kconfig files 49114cdd3c4SRoman Zippelinclude/config/auto.conf: $(KCONFIG_CONFIG) include/config/auto.conf.cmd 4921da177e4SLinus Torvalds $(Q)$(MAKE) -f $(srctree)/Makefile silentoldconfig 4931da177e4SLinus Torvaldselse 4949ee4e336SSam Ravnborg# external modules needs include/linux/autoconf.h and include/config/auto.conf 4959ee4e336SSam Ravnborg# but do not care if they are up-to-date. Use auto.conf to trigger the test 4969ee4e336SSam RavnborgPHONY += include/config/auto.conf 4979ee4e336SSam Ravnborg 4989ee4e336SSam Ravnborginclude/config/auto.conf: 4999ee4e336SSam Ravnborg $(Q)test -e include/linux/autoconf.h -a -e $@ || ( \ 5009ee4e336SSam Ravnborg echo; \ 5019ee4e336SSam Ravnborg echo " ERROR: Kernel configuration is invalid."; \ 5029ee4e336SSam Ravnborg echo " include/linux/autoconf.h or $@ are missing."; \ 5039ee4e336SSam Ravnborg echo " Run 'make oldconfig && make prepare' on kernel src to fix it."; \ 5049ee4e336SSam Ravnborg echo; \ 5059ee4e336SSam Ravnborg /bin/false) 5069ee4e336SSam Ravnborg 5079ee4e336SSam Ravnborgendif # KBUILD_EXTMOD 508c955ccafSRoman Zippel 5091da177e4SLinus Torvaldselse 5101da177e4SLinus Torvalds# Dummy target needed, because used as prerequisite 511c955ccafSRoman Zippelinclude/config/auto.conf: ; 5129ee4e336SSam Ravnborgendif # $(dot-config) 5131da177e4SLinus Torvalds 5141da177e4SLinus Torvalds# The all: target is the default when no target is given on the 5151da177e4SLinus Torvalds# command line. 5161da177e4SLinus Torvalds# This allow a user to issue only 'make' to build a kernel including modules 517070b98bfSSam Ravnborg# Defaults vmlinux but it is usually overridden in the arch makefile 5181da177e4SLinus Torvaldsall: vmlinux 5191da177e4SLinus Torvalds 5201da177e4SLinus Torvaldsifdef CONFIG_CC_OPTIMIZE_FOR_SIZE 521a0f97e06SSam RavnborgKBUILD_CFLAGS += -Os 5221da177e4SLinus Torvaldselse 523a0f97e06SSam RavnborgKBUILD_CFLAGS += -O2 5241da177e4SLinus Torvaldsendif 5251da177e4SLinus Torvalds 526bef5b54bSRalf Baechleinclude $(srctree)/arch/$(SRCARCH)/Makefile 527bef5b54bSRalf Baechle 52808f67461SMike Frysingerifneq ($(CONFIG_FRAME_WARN),0) 52935bb5b1eSAndi KleenKBUILD_CFLAGS += $(call cc-option,-Wframe-larger-than=${CONFIG_FRAME_WARN}) 53035bb5b1eSAndi Kleenendif 53135bb5b1eSAndi Kleen 532e06b8b98SSam Ravnborg# Force gcc to behave correct even for buggy distributions 5335d707e9cSTejun Heoifndef CONFIG_CC_STACKPROTECTOR 534e06b8b98SSam RavnborgKBUILD_CFLAGS += $(call cc-option, -fno-stack-protector) 5355d707e9cSTejun Heoendif 536e06b8b98SSam Ravnborg 5371da177e4SLinus Torvaldsifdef CONFIG_FRAME_POINTER 538a0f97e06SSam RavnborgKBUILD_CFLAGS += -fno-omit-frame-pointer -fno-optimize-sibling-calls 5391da177e4SLinus Torvaldselse 540a0f97e06SSam RavnborgKBUILD_CFLAGS += -fomit-frame-pointer 5411da177e4SLinus Torvaldsendif 5421da177e4SLinus Torvalds 5431da177e4SLinus Torvaldsifdef CONFIG_DEBUG_INFO 544a0f97e06SSam RavnborgKBUILD_CFLAGS += -g 545222d394dSSam RavnborgKBUILD_AFLAGS += -gdwarf-2 5461da177e4SLinus Torvaldsendif 5471da177e4SLinus Torvalds 548606576ceSSteven Rostedtifdef CONFIG_FUNCTION_TRACER 54916444a8aSArnaldo Carvalho de MeloKBUILD_CFLAGS += -pg 55016444a8aSArnaldo Carvalho de Meloendif 55116444a8aSArnaldo Carvalho de Melo 55291341d4bSSam Ravnborg# We trigger additional mismatches with less inlining 55391341d4bSSam Ravnborgifdef CONFIG_DEBUG_SECTION_MISMATCH 55491341d4bSSam RavnborgKBUILD_CFLAGS += $(call cc-option, -fno-inline-functions-called-once) 55591341d4bSSam Ravnborgendif 55691341d4bSSam Ravnborg 557e8e69931SSam Ravnborg# arch Makefile may override CC so keep this after arch Makefile is included 558e8f5bdb0SRik van RielNOSTDINC_FLAGS += -nostdinc -isystem $(shell $(CC) -print-file-name=include) 559e8e69931SSam RavnborgCHECKFLAGS += $(NOSTDINC_FLAGS) 560e8e69931SSam Ravnborg 5611da177e4SLinus Torvalds# warn about C99 declaration after statement 562a0f97e06SSam RavnborgKBUILD_CFLAGS += $(call cc-option,-Wdeclaration-after-statement,) 5631da177e4SLinus Torvalds 564070b98bfSSam Ravnborg# disable pointer signed / unsigned warnings in gcc 4.0 565a0f97e06SSam RavnborgKBUILD_CFLAGS += $(call cc-option,-Wno-pointer-sign,) 5661da177e4SLinus Torvalds 567fe8d0a41SKirill Smelkov# disable invalid "can't wrap" optimizations for signed / pointers 568d0115552SLinus TorvaldsKBUILD_CFLAGS += $(call cc-option,-fwrapv) 569d0115552SLinus Torvalds 57000308649SKyle McMartin# revert to pre-gcc-4.4 behaviour of .eh_frame 57100308649SKyle McMartinKBUILD_CFLAGS += $(call cc-option,-fno-dwarf2-cfi-asm) 57200308649SKyle McMartin 57306c5040cSSam Ravnborg# Add user supplied CPPFLAGS, AFLAGS and CFLAGS as the last assignments 57469ee0b35SSam Ravnborg# But warn user when we do so 57569ee0b35SSam Ravnborgwarn-assign = \ 57669ee0b35SSam Ravnborg$(warning "WARNING: Appending $$K$(1) ($(K$(1))) from $(origin K$(1)) to kernel $$$(1)") 57769ee0b35SSam Ravnborg 57869ee0b35SSam Ravnborgifneq ($(KCPPFLAGS),) 57969ee0b35SSam Ravnborg $(call warn-assign,CPPFLAGS) 58069ee0b35SSam Ravnborg KBUILD_CPPFLAGS += $(KCPPFLAGS) 58169ee0b35SSam Ravnborgendif 58269ee0b35SSam Ravnborgifneq ($(KAFLAGS),) 58369ee0b35SSam Ravnborg $(call warn-assign,AFLAGS) 58469ee0b35SSam Ravnborg KBUILD_AFLAGS += $(KAFLAGS) 58569ee0b35SSam Ravnborgendif 58669ee0b35SSam Ravnborgifneq ($(KCFLAGS),) 58769ee0b35SSam Ravnborg $(call warn-assign,CFLAGS) 58869ee0b35SSam Ravnborg KBUILD_CFLAGS += $(KCFLAGS) 58969ee0b35SSam Ravnborgendif 59052bcc330SSam Ravnborg 59118991197SRoland McGrath# Use --build-id when available. 59218991197SRoland McGrathLDFLAGS_BUILD_ID = $(patsubst -Wl$(comma)%,%,\ 59318991197SRoland McGrath $(call ld-option, -Wl$(comma)--build-id,)) 59418991197SRoland McGrathLDFLAGS_MODULE += $(LDFLAGS_BUILD_ID) 59518991197SRoland McGrathLDFLAGS_vmlinux += $(LDFLAGS_BUILD_ID) 59618991197SRoland McGrath 5975d7d18f5SDavid Howellsifeq ($(CONFIG_STRIP_ASM_SYMS),y) 5985d7d18f5SDavid HowellsLDFLAGS_vmlinux += -X 5995d7d18f5SDavid Howellsendif 6005d7d18f5SDavid Howells 6011da177e4SLinus Torvalds# Default kernel image to build when no specific target is given. 6021da177e4SLinus Torvalds# KBUILD_IMAGE may be overruled on the command line or 6031da177e4SLinus Torvalds# set in the environment 6041da177e4SLinus Torvalds# Also any assignments in arch/$(ARCH)/Makefile take precedence over 6051da177e4SLinus Torvalds# this default value 6061da177e4SLinus Torvaldsexport KBUILD_IMAGE ?= vmlinux 6071da177e4SLinus Torvalds 6081da177e4SLinus Torvalds# 6091da177e4SLinus Torvalds# INSTALL_PATH specifies where to place the updated kernel and system map 6101da177e4SLinus Torvalds# images. Default is /boot, but you can set it to other values 6111da177e4SLinus Torvaldsexport INSTALL_PATH ?= /boot 6121da177e4SLinus Torvalds 6131da177e4SLinus Torvalds# 6141da177e4SLinus Torvalds# INSTALL_MOD_PATH specifies a prefix to MODLIB for module directory 6151da177e4SLinus Torvalds# relocations required by build roots. This is not defined in the 616070b98bfSSam Ravnborg# makefile but the argument can be passed to make if needed. 6171da177e4SLinus Torvalds# 6181da177e4SLinus Torvalds 619df9df036SSam RavnborgMODLIB = $(INSTALL_MOD_PATH)/lib/modules/$(KERNELRELEASE) 6201da177e4SLinus Torvaldsexport MODLIB 6211da177e4SLinus Torvalds 622ac031f26STheodore Ts'o# 6232ea03891SSam Ravnborg# INSTALL_MOD_STRIP, if defined, will cause modules to be 6242ea03891SSam Ravnborg# stripped after they are installed. If INSTALL_MOD_STRIP is '1', then 6252ea03891SSam Ravnborg# the default option --strip-debug will be used. Otherwise, 6262ea03891SSam Ravnborg# INSTALL_MOD_STRIP will used as the options to the strip command. 6272ea03891SSam Ravnborg 628ac031f26STheodore Ts'oifdef INSTALL_MOD_STRIP 629ac031f26STheodore Ts'oifeq ($(INSTALL_MOD_STRIP),1) 6302ea03891SSam Ravnborgmod_strip_cmd = $(STRIP) --strip-debug 631ac031f26STheodore Ts'oelse 6322ea03891SSam Ravnborgmod_strip_cmd = $(STRIP) $(INSTALL_MOD_STRIP) 633ac031f26STheodore Ts'oendif # INSTALL_MOD_STRIP=1 634ac031f26STheodore Ts'oelse 6352ea03891SSam Ravnborgmod_strip_cmd = true 636ac031f26STheodore Ts'oendif # INSTALL_MOD_STRIP 637ac031f26STheodore Ts'oexport mod_strip_cmd 638ac031f26STheodore Ts'o 6391da177e4SLinus Torvalds 6401da177e4SLinus Torvaldsifeq ($(KBUILD_EXTMOD),) 6413a65dfe8SJens Axboecore-y += kernel/ mm/ fs/ ipc/ security/ crypto/ block/ 6421da177e4SLinus Torvalds 6431da177e4SLinus Torvaldsvmlinux-dirs := $(patsubst %/,%,$(filter %/, $(init-y) $(init-m) \ 6441da177e4SLinus Torvalds $(core-y) $(core-m) $(drivers-y) $(drivers-m) \ 6451da177e4SLinus Torvalds $(net-y) $(net-m) $(libs-y) $(libs-m))) 6461da177e4SLinus Torvalds 6471da177e4SLinus Torvaldsvmlinux-alldirs := $(sort $(vmlinux-dirs) $(patsubst %/,%,$(filter %/, \ 6481da177e4SLinus Torvalds $(init-n) $(init-) \ 6491da177e4SLinus Torvalds $(core-n) $(core-) $(drivers-n) $(drivers-) \ 6501da177e4SLinus Torvalds $(net-n) $(net-) $(libs-n) $(libs-)))) 6511da177e4SLinus Torvalds 6521da177e4SLinus Torvaldsinit-y := $(patsubst %/, %/built-in.o, $(init-y)) 6531da177e4SLinus Torvaldscore-y := $(patsubst %/, %/built-in.o, $(core-y)) 6541da177e4SLinus Torvaldsdrivers-y := $(patsubst %/, %/built-in.o, $(drivers-y)) 6551da177e4SLinus Torvaldsnet-y := $(patsubst %/, %/built-in.o, $(net-y)) 6561da177e4SLinus Torvaldslibs-y1 := $(patsubst %/, %/lib.a, $(libs-y)) 6571da177e4SLinus Torvaldslibs-y2 := $(patsubst %/, %/built-in.o, $(libs-y)) 6581da177e4SLinus Torvaldslibs-y := $(libs-y1) $(libs-y2) 6591da177e4SLinus Torvalds 6601da177e4SLinus Torvalds# Build vmlinux 6611da177e4SLinus Torvalds# --------------------------------------------------------------------------- 662070b98bfSSam Ravnborg# vmlinux is built from the objects selected by $(vmlinux-init) and 6631da177e4SLinus Torvalds# $(vmlinux-main). Most are built-in.o files from top-level directories 6642462566fSUwe Zeisberger# in the kernel tree, others are specified in arch/$(ARCH)/Makefile. 6651da177e4SLinus Torvalds# Ordering when linking is important, and $(vmlinux-init) must be first. 6661da177e4SLinus Torvalds# 6671da177e4SLinus Torvalds# vmlinux 6681da177e4SLinus Torvalds# ^ 6691da177e4SLinus Torvalds# | 6701da177e4SLinus Torvalds# +-< $(vmlinux-init) 6711da177e4SLinus Torvalds# | +--< init/version.o + more 6721da177e4SLinus Torvalds# | 6731da177e4SLinus Torvalds# +--< $(vmlinux-main) 6741da177e4SLinus Torvalds# | +--< driver/built-in.o mm/built-in.o + more 6751da177e4SLinus Torvalds# | 6761da177e4SLinus Torvalds# +-< kallsyms.o (see description in CONFIG_KALLSYMS section) 6771da177e4SLinus Torvalds# 6781da177e4SLinus Torvalds# vmlinux version (uname -v) cannot be updated during normal 6791da177e4SLinus Torvalds# descending-into-subdirs phase since we do not yet know if we need to 6801da177e4SLinus Torvalds# update vmlinux. 6811da177e4SLinus Torvalds# Therefore this step is delayed until just before final link of vmlinux - 6821da177e4SLinus Torvalds# except in the kallsyms case where it is done just before adding the 6831da177e4SLinus Torvalds# symbols to the kernel. 6841da177e4SLinus Torvalds# 6851da177e4SLinus Torvalds# System.map is generated to document addresses of all kernel symbols 6861da177e4SLinus Torvalds 6871da177e4SLinus Torvaldsvmlinux-init := $(head-y) $(init-y) 6881da177e4SLinus Torvaldsvmlinux-main := $(core-y) $(libs-y) $(drivers-y) $(net-y) 6891da177e4SLinus Torvaldsvmlinux-all := $(vmlinux-init) $(vmlinux-main) 6906752ed90SThomas Gleixnervmlinux-lds := arch/$(SRCARCH)/kernel/vmlinux.lds 69185bd2fddSSam Ravnborgexport KBUILD_VMLINUX_OBJS := $(vmlinux-all) 6921da177e4SLinus Torvalds 6931da177e4SLinus Torvalds# Rule to link vmlinux - also used during CONFIG_KALLSYMS 6941da177e4SLinus Torvalds# May be overridden by arch/$(ARCH)/Makefile 6951da177e4SLinus Torvaldsquiet_cmd_vmlinux__ ?= LD $@ 6961da177e4SLinus Torvalds cmd_vmlinux__ ?= $(LD) $(LDFLAGS) $(LDFLAGS_vmlinux) -o $@ \ 6971da177e4SLinus Torvalds -T $(vmlinux-lds) $(vmlinux-init) \ 6981da177e4SLinus Torvalds --start-group $(vmlinux-main) --end-group \ 699741f98feSSam Ravnborg $(filter-out $(vmlinux-lds) $(vmlinux-init) $(vmlinux-main) vmlinux.o FORCE ,$^) 7001da177e4SLinus Torvalds 7011da177e4SLinus Torvalds# Generate new vmlinux version 7021da177e4SLinus Torvaldsquiet_cmd_vmlinux_version = GEN .version 7031da177e4SLinus Torvalds cmd_vmlinux_version = set -e; \ 7044e25d8bbSJan Beulich if [ ! -r .version ]; then \ 7054e25d8bbSJan Beulich rm -f .version; \ 7064e25d8bbSJan Beulich echo 1 >.version; \ 7074e25d8bbSJan Beulich else \ 7084e25d8bbSJan Beulich mv .version .old_version; \ 7094e25d8bbSJan Beulich expr 0$$(cat .old_version) + 1 >.version; \ 7104e25d8bbSJan Beulich fi; \ 7111da177e4SLinus Torvalds $(MAKE) $(build)=init 7121da177e4SLinus Torvalds 7131da177e4SLinus Torvalds# Generate System.map 7141da177e4SLinus Torvaldsquiet_cmd_sysmap = SYSMAP 7151da177e4SLinus Torvalds cmd_sysmap = $(CONFIG_SHELL) $(srctree)/scripts/mksysmap 7161da177e4SLinus Torvalds 7171da177e4SLinus Torvalds# Link of vmlinux 7181da177e4SLinus Torvalds# If CONFIG_KALLSYMS is set .version is already updated 7191da177e4SLinus Torvalds# Generate System.map and verify that the content is consistent 72039ca371cSMark Rustad# Use + in front of the vmlinux_version rule to silent warning with make -j2 72139ca371cSMark Rustad# First command is ':' to allow us to use + in front of the rule 7221da177e4SLinus Torvaldsdefine rule_vmlinux__ 72339ca371cSMark Rustad : 7241da177e4SLinus Torvalds $(if $(CONFIG_KALLSYMS),,+$(call cmd,vmlinux_version)) 7251da177e4SLinus Torvalds 7261da177e4SLinus Torvalds $(call cmd,vmlinux__) 7271da177e4SLinus Torvalds $(Q)echo 'cmd_$@ := $(cmd_vmlinux__)' > $(@D)/.$(@F).cmd 7281da177e4SLinus Torvalds 7291da177e4SLinus Torvalds $(Q)$(if $($(quiet)cmd_sysmap), \ 7301da177e4SLinus Torvalds echo ' $($(quiet)cmd_sysmap) System.map' &&) \ 7311da177e4SLinus Torvalds $(cmd_sysmap) $@ System.map; \ 7321da177e4SLinus Torvalds if [ $$? -ne 0 ]; then \ 7331da177e4SLinus Torvalds rm -f $@; \ 7341da177e4SLinus Torvalds /bin/false; \ 7351da177e4SLinus Torvalds fi; 7361da177e4SLinus Torvalds $(verify_kallsyms) 7371da177e4SLinus Torvaldsendef 7381da177e4SLinus Torvalds 7391da177e4SLinus Torvalds 7401da177e4SLinus Torvaldsifdef CONFIG_KALLSYMS 7411da177e4SLinus Torvalds# Generate section listing all symbols and add it into vmlinux $(kallsyms.o) 7421da177e4SLinus Torvalds# It's a three stage process: 7431da177e4SLinus Torvalds# o .tmp_vmlinux1 has all symbols and sections, but __kallsyms is 7441da177e4SLinus Torvalds# empty 7451da177e4SLinus Torvalds# Running kallsyms on that gives us .tmp_kallsyms1.o with 7461da177e4SLinus Torvalds# the right size - vmlinux version (uname -v) is updated during this step 7471da177e4SLinus Torvalds# o .tmp_vmlinux2 now has a __kallsyms section of the right size, 7481da177e4SLinus Torvalds# but due to the added section, some addresses have shifted. 7491da177e4SLinus Torvalds# From here, we generate a correct .tmp_kallsyms2.o 7501da177e4SLinus Torvalds# o The correct .tmp_kallsyms2.o is linked into the final vmlinux. 7511da177e4SLinus Torvalds# o Verify that the System.map from vmlinux matches the map from 7521da177e4SLinus Torvalds# .tmp_vmlinux2, just in case we did not generate kallsyms correctly. 7531da177e4SLinus Torvalds# o If CONFIG_KALLSYMS_EXTRA_PASS is set, do an extra pass using 7541da177e4SLinus Torvalds# .tmp_vmlinux3 and .tmp_kallsyms3.o. This is only meant as a 7551da177e4SLinus Torvalds# temporary bypass to allow the kernel to be built while the 7561da177e4SLinus Torvalds# maintainers work out what went wrong with kallsyms. 7571da177e4SLinus Torvalds 7581da177e4SLinus Torvaldsifdef CONFIG_KALLSYMS_EXTRA_PASS 7591da177e4SLinus Torvaldslast_kallsyms := 3 7601da177e4SLinus Torvaldselse 7611da177e4SLinus Torvaldslast_kallsyms := 2 7621da177e4SLinus Torvaldsendif 7631da177e4SLinus Torvalds 7641da177e4SLinus Torvaldskallsyms.o := .tmp_kallsyms$(last_kallsyms).o 7651da177e4SLinus Torvalds 7661da177e4SLinus Torvaldsdefine verify_kallsyms 7671da177e4SLinus Torvalds $(Q)$(if $($(quiet)cmd_sysmap), \ 7681da177e4SLinus Torvalds echo ' $($(quiet)cmd_sysmap) .tmp_System.map' &&) \ 7691da177e4SLinus Torvalds $(cmd_sysmap) .tmp_vmlinux$(last_kallsyms) .tmp_System.map 7701da177e4SLinus Torvalds $(Q)cmp -s System.map .tmp_System.map || \ 7711da177e4SLinus Torvalds (echo Inconsistent kallsyms data; \ 7721da177e4SLinus Torvalds echo Try setting CONFIG_KALLSYMS_EXTRA_PASS; \ 7731da177e4SLinus Torvalds rm .tmp_kallsyms* ; /bin/false ) 7741da177e4SLinus Torvaldsendef 7751da177e4SLinus Torvalds 7761da177e4SLinus Torvalds# Update vmlinux version before link 7771da177e4SLinus Torvalds# Use + in front of this rule to silent warning about make -j1 77872ba47c1SSam Ravnborg# First command is ':' to allow us to use + in front of this rule 7791da177e4SLinus Torvaldscmd_ksym_ld = $(cmd_vmlinux__) 7801da177e4SLinus Torvaldsdefine rule_ksym_ld 78172ba47c1SSam Ravnborg : 7821da177e4SLinus Torvalds +$(call cmd,vmlinux_version) 7831da177e4SLinus Torvalds $(call cmd,vmlinux__) 7841da177e4SLinus Torvalds $(Q)echo 'cmd_$@ := $(cmd_vmlinux__)' > $(@D)/.$(@F).cmd 7851da177e4SLinus Torvaldsendef 7861da177e4SLinus Torvalds 7871da177e4SLinus Torvalds# Generate .S file with all kernel symbols 7881da177e4SLinus Torvaldsquiet_cmd_kallsyms = KSYM $@ 7892ea03891SSam Ravnborg cmd_kallsyms = $(NM) -n $< | $(KALLSYMS) \ 7902ea03891SSam Ravnborg $(if $(CONFIG_KALLSYMS_ALL),--all-symbols) > $@ 7911da177e4SLinus Torvalds 7922ea03891SSam Ravnborg.tmp_kallsyms1.o .tmp_kallsyms2.o .tmp_kallsyms3.o: %.o: %.S scripts FORCE 7931da177e4SLinus Torvalds $(call if_changed_dep,as_o_S) 7941da177e4SLinus Torvalds 7952ea03891SSam Ravnborg.tmp_kallsyms%.S: .tmp_vmlinux% $(KALLSYMS) 7961da177e4SLinus Torvalds $(call cmd,kallsyms) 7971da177e4SLinus Torvalds 7981da177e4SLinus Torvalds# .tmp_vmlinux1 must be complete except kallsyms, so update vmlinux version 7992ea03891SSam Ravnborg.tmp_vmlinux1: $(vmlinux-lds) $(vmlinux-all) FORCE 8002ea03891SSam Ravnborg $(call if_changed_rule,ksym_ld) 8011da177e4SLinus Torvalds 8022ea03891SSam Ravnborg.tmp_vmlinux2: $(vmlinux-lds) $(vmlinux-all) .tmp_kallsyms1.o FORCE 8032ea03891SSam Ravnborg $(call if_changed,vmlinux__) 8041da177e4SLinus Torvalds 8052ea03891SSam Ravnborg.tmp_vmlinux3: $(vmlinux-lds) $(vmlinux-all) .tmp_kallsyms2.o FORCE 8062ea03891SSam Ravnborg $(call if_changed,vmlinux__) 8071da177e4SLinus Torvalds 8081da177e4SLinus Torvalds# Needs to visit scripts/ before $(KALLSYMS) can be used. 8091da177e4SLinus Torvalds$(KALLSYMS): scripts ; 8101da177e4SLinus Torvalds 81133bc25eaSSam Ravnborg# Generate some data for debugging strange kallsyms problems 81233bc25eaSSam Ravnborgdebug_kallsyms: .tmp_map$(last_kallsyms) 81333bc25eaSSam Ravnborg 81433bc25eaSSam Ravnborg.tmp_map%: .tmp_vmlinux% FORCE 81533bc25eaSSam Ravnborg ($(OBJDUMP) -h $< | $(AWK) '/^ +[0-9]/{print $$4 " 0 " $$2}'; $(NM) $<) | sort > $@ 81633bc25eaSSam Ravnborg 81733bc25eaSSam Ravnborg.tmp_map3: .tmp_map2 81833bc25eaSSam Ravnborg 81933bc25eaSSam Ravnborg.tmp_map2: .tmp_map1 82033bc25eaSSam Ravnborg 8211da177e4SLinus Torvaldsendif # ifdef CONFIG_KALLSYMS 8221da177e4SLinus Torvalds 823741f98feSSam Ravnborg# Do modpost on a prelinked vmlinux. The finally linked vmlinux has 824741f98feSSam Ravnborg# relevant sections renamed as per the linker script. 825741f98feSSam Ravnborgquiet_cmd_vmlinux-modpost = LD $@ 826741f98feSSam Ravnborg cmd_vmlinux-modpost = $(LD) $(LDFLAGS) -r -o $@ \ 827741f98feSSam Ravnborg $(vmlinux-init) --start-group $(vmlinux-main) --end-group \ 82890ebd878SSam Ravnborg $(filter-out $(vmlinux-init) $(vmlinux-main) FORCE ,$^) 829741f98feSSam Ravnborgdefine rule_vmlinux-modpost 830741f98feSSam Ravnborg : 831741f98feSSam Ravnborg +$(call cmd,vmlinux-modpost) 832741f98feSSam Ravnborg $(Q)$(MAKE) -f $(srctree)/scripts/Makefile.modpost $@ 833741f98feSSam Ravnborg $(Q)echo 'cmd_$@ := $(cmd_vmlinux-modpost)' > $(dot-target).cmd 834741f98feSSam Ravnborgendef 835741f98feSSam Ravnborg 8361da177e4SLinus Torvalds# vmlinux image - including updated kernel symbols 837310f8243SSam Ravnborgvmlinux: $(vmlinux-lds) $(vmlinux-init) $(vmlinux-main) vmlinux.o $(kallsyms.o) FORCE 8380f836e5fSDavid Woodhouseifdef CONFIG_HEADERS_CHECK 8390e7af8d0SDavid Woodhouse $(Q)$(MAKE) -f $(srctree)/Makefile headers_check 8400f836e5fSDavid Woodhouseendif 841267c4025SMathieu Desnoyersifdef CONFIG_SAMPLES 842267c4025SMathieu Desnoyers $(Q)$(MAKE) $(build)=samples 843267c4025SMathieu Desnoyersendif 8443794f3e8SRandy Dunlapifdef CONFIG_BUILD_DOCSRC 8453794f3e8SRandy Dunlap $(Q)$(MAKE) $(build)=Documentation 8463794f3e8SRandy Dunlapendif 847741f98feSSam Ravnborg $(call vmlinux-modpost) 8481da177e4SLinus Torvalds $(call if_changed_rule,vmlinux__) 8494e25d8bbSJan Beulich $(Q)rm -f .old_version 8501da177e4SLinus Torvalds 851310f8243SSam Ravnborg# build vmlinux.o first to catch section mismatch errors early 852cf87dcd1SSam Ravnborgifdef CONFIG_KALLSYMS 853cf87dcd1SSam Ravnborg.tmp_vmlinux1: vmlinux.o 854cf87dcd1SSam Ravnborgendif 85590ebd878SSam Ravnborg 85690ebd878SSam Ravnborgmodpost-init := $(filter-out init/built-in.o, $(vmlinux-init)) 85790ebd878SSam Ravnborgvmlinux.o: $(modpost-init) $(vmlinux-main) FORCE 858741f98feSSam Ravnborg $(call if_changed_rule,vmlinux-modpost) 859741f98feSSam Ravnborg 8601da177e4SLinus Torvalds# The actual objects are generated when descending, 8611da177e4SLinus Torvalds# make sure no implicit rule kicks in 8621da177e4SLinus Torvalds$(sort $(vmlinux-init) $(vmlinux-main)) $(vmlinux-lds): $(vmlinux-dirs) ; 8631da177e4SLinus Torvalds 8641da177e4SLinus Torvalds# Handle descending into subdirectories listed in $(vmlinux-dirs) 8651da177e4SLinus Torvalds# Preset locale variables to speed up the build process. Limit locale 8661da177e4SLinus Torvalds# tweaks to this spot to avoid wrong language settings when running 8671da177e4SLinus Torvalds# make menuconfig etc. 8681da177e4SLinus Torvalds# Error messages still appears in the original language 8691da177e4SLinus Torvalds 8704f193362SPaul SmithPHONY += $(vmlinux-dirs) 8715bb78269SSam Ravnborg$(vmlinux-dirs): prepare scripts 8721da177e4SLinus Torvalds $(Q)$(MAKE) $(build)=$@ 8731da177e4SLinus Torvalds 874cb58455cSSam Ravnborg# Build the kernel release string 875cb58455cSSam Ravnborg# 8761ef98856SRobert P. J. Day# The KERNELRELEASE value built here is stored in the file 8771ef98856SRobert P. J. Day# include/config/kernel.release, and is used when executing several 8781ef98856SRobert P. J. Day# make targets, such as "make install" or "make modules_install." 8791ef98856SRobert P. J. Day# 8801ef98856SRobert P. J. Day# The eventual kernel release string consists of the following fields, 8811ef98856SRobert P. J. Day# shown in a hierarchical format to show how smaller parts are concatenated 8821ef98856SRobert P. J. Day# to form the larger and final value, with values coming from places like 8831ef98856SRobert P. J. Day# the Makefile, kernel config options, make command line options and/or 8841ef98856SRobert P. J. Day# SCM tag information. 8851ef98856SRobert P. J. Day# 8861ef98856SRobert P. J. Day# $(KERNELVERSION) 8871ef98856SRobert P. J. Day# $(VERSION) eg, 2 8881ef98856SRobert P. J. Day# $(PATCHLEVEL) eg, 6 8891ef98856SRobert P. J. Day# $(SUBLEVEL) eg, 18 8901ef98856SRobert P. J. Day# $(EXTRAVERSION) eg, -rc6 8911ef98856SRobert P. J. Day# $(localver-full) 8921ef98856SRobert P. J. Day# $(localver) 89376c32956SOleg Verych# localversion* (files without backups, containing '~') 8941ef98856SRobert P. J. Day# $(CONFIG_LOCALVERSION) (from kernel config setting) 8951ef98856SRobert P. J. Day# $(localver-auto) (only if CONFIG_LOCALVERSION_AUTO is set) 8961ef98856SRobert P. J. Day# ./scripts/setlocalversion (SCM tag, if one exists) 8971ef98856SRobert P. J. Day# $(LOCALVERSION) (from make command line if provided) 8981ef98856SRobert P. J. Day# 8991ef98856SRobert P. J. Day# Note how the final $(localver-auto) string is included *only* if the 9001ef98856SRobert P. J. Day# kernel config option CONFIG_LOCALVERSION_AUTO is selected. Also, at the 9011ef98856SRobert P. J. Day# moment, only git is supported but other SCMs can edit the script 9021ef98856SRobert P. J. Day# scripts/setlocalversion and add the appropriate checks as needed. 903cb58455cSSam Ravnborg 90476c32956SOleg Verychpattern = ".*/localversion[^~]*" 90576c32956SOleg Verychstring = $(shell cat /dev/null \ 906fd19e44fSLinus Torvalds `find $(objtree) $(srctree) -maxdepth 1 -regex $(pattern) | sort -u`) 907cb58455cSSam Ravnborg 90876c32956SOleg Verychlocalver = $(subst $(space),, $(string) \ 909cb58455cSSam Ravnborg $(patsubst "%",%,$(CONFIG_LOCALVERSION))) 910cb58455cSSam Ravnborg 911cb58455cSSam Ravnborg# If CONFIG_LOCALVERSION_AUTO is set scripts/setlocalversion is called 912cb58455cSSam Ravnborg# and if the SCM is know a tag from the SCM is appended. 913070b98bfSSam Ravnborg# The appended tag is determined by the SCM used. 914cb58455cSSam Ravnborg# 915b925dbfeSJosh Hunt# .scmversion is used when generating rpm packages so we do not loose 916b925dbfeSJosh Hunt# the version information from the SCM when we do the build of the kernel 917b925dbfeSJosh Hunt# from the copied source 918cb58455cSSam Ravnborgifdef CONFIG_LOCALVERSION_AUTO 919b925dbfeSJosh Hunt 920b925dbfeSJosh Huntifeq ($(wildcard .scmversion),) 921cb58455cSSam Ravnborg _localver-auto = $(shell $(CONFIG_SHELL) \ 922cb58455cSSam Ravnborg $(srctree)/scripts/setlocalversion $(srctree)) 923b925dbfeSJosh Huntelse 924b925dbfeSJosh Hunt _localver-auto = $(shell cat .scmversion 2> /dev/null) 925b925dbfeSJosh Huntendif 926b925dbfeSJosh Hunt 927cb58455cSSam Ravnborg localver-auto = $(LOCALVERSION)$(_localver-auto) 928cb58455cSSam Ravnborgendif 929cb58455cSSam Ravnborg 930cb58455cSSam Ravnborglocalver-full = $(localver)$(localver-auto) 931cb58455cSSam Ravnborg 932f1d28fb0SRoman Zippel# Store (new) KERNELRELASE string in include/config/kernel.release 9332244cbd8SSam Ravnborgkernelrelease = $(KERNELVERSION)$(localver-full) 934f1d28fb0SRoman Zippelinclude/config/kernel.release: include/config/auto.conf FORCE 9352244cbd8SSam Ravnborg $(Q)rm -f $@ 9362244cbd8SSam Ravnborg $(Q)echo $(kernelrelease) > $@ 937cb58455cSSam Ravnborg 938cb58455cSSam Ravnborg 9391da177e4SLinus Torvalds# Things we need to do before we recursively start building the kernel 9405bb78269SSam Ravnborg# or the modules are listed in "prepare". 9415bb78269SSam Ravnborg# A multi level approach is used. prepareN is processed before prepareN-1. 9425bb78269SSam Ravnborg# archprepare is used in arch Makefiles and when processed asm symlink, 9435bb78269SSam Ravnborg# version.h and scripts_basic is processed / created. 9441da177e4SLinus Torvalds 9455bb78269SSam Ravnborg# Listed in dependency order 9464f193362SPaul SmithPHONY += prepare archprepare prepare0 prepare1 prepare2 prepare3 9475bb78269SSam Ravnborg 94886feeaa8SSam Ravnborg# prepare3 is used to check if we are building in a separate output directory, 9491da177e4SLinus Torvalds# and if so do: 9501da177e4SLinus Torvalds# 1) Check that make has not been executed in the kernel src $(srctree) 9511da177e4SLinus Torvalds# 2) Create the include2 directory, used for the second asm symlink 952f1d28fb0SRoman Zippelprepare3: include/config/kernel.release 9531da177e4SLinus Torvaldsifneq ($(KBUILD_SRC),) 954fd54f502SMike Frysinger @$(kecho) ' Using $(srctree) as source for kernel' 955c955ccafSRoman Zippel $(Q)if [ -f $(srctree)/.config -o -d $(srctree)/include/config ]; then \ 9561da177e4SLinus Torvalds echo " $(srctree) is not clean, please run 'make mrproper'";\ 9571da177e4SLinus Torvalds echo " in the '$(srctree)' directory.";\ 9581da177e4SLinus Torvalds /bin/false; \ 9591da177e4SLinus Torvalds fi; 9607a48bdd0SSam Ravnborg $(Q)if [ ! -d include2 ]; then \ 9617a48bdd0SSam Ravnborg mkdir -p include2; \ 9622e57d051SSam Ravnborg ln -fsn $(srctree)/include/asm-$(SRCARCH) include2/asm; \ 9632e57d051SSam Ravnborg fi 9641da177e4SLinus Torvaldsendif 9651da177e4SLinus Torvalds 96686feeaa8SSam Ravnborg# prepare2 creates a makefile if using a separate output directory 96786feeaa8SSam Ravnborgprepare2: prepare3 outputmakefile 9681da177e4SLinus Torvalds 9693eb3c740SRoman Zippelprepare1: prepare2 include/linux/version.h include/linux/utsrelease.h \ 9703eb3c740SRoman Zippel include/asm include/config/auto.conf 9717bb9d092SSam Ravnborg $(cmd_crmodverdir) 9721da177e4SLinus Torvalds 9735bb78269SSam Ravnborgarchprepare: prepare1 scripts_basic 9745bb78269SSam Ravnborg 9755bb78269SSam Ravnborgprepare0: archprepare FORCE 9768d36a623SSam Ravnborg $(Q)$(MAKE) $(build)=. 977c53aeca0SSam Ravnborg $(Q)$(MAKE) $(build)=. missing-syscalls 97886feeaa8SSam Ravnborg 9791da177e4SLinus Torvalds# All the preparing.. 980d395efb5SRobert P. J. Dayprepare: prepare0 9811da177e4SLinus Torvalds 9821da177e4SLinus Torvalds# Leave this as default for preprocessing vmlinux.lds.S, which is now 9831da177e4SLinus Torvalds# done in arch/$(ARCH)/kernel/Makefile 9841da177e4SLinus Torvalds 9851da177e4SLinus Torvaldsexport CPPFLAGS_vmlinux.lds += -P -C -U$(ARCH) 9861da177e4SLinus Torvalds 987fc333b2dSSam Ravnborg# The asm symlink changes when $(ARCH) changes. 988fc333b2dSSam Ravnborg# Detect this and ask user to run make mrproper 989dcc2da1aSSam Ravnborg# If asm is a stale symlink (point to dir that does not exist) remove it 9902e57d051SSam Ravnborgdefine check-symlink 9912e57d051SSam Ravnborg set -e; \ 992fc333b2dSSam Ravnborg if [ -L include/asm ]; then \ 9932e57d051SSam Ravnborg asmlink=`readlink include/asm | cut -d '-' -f 2`; \ 994fc333b2dSSam Ravnborg if [ "$$asmlink" != "$(SRCARCH)" ]; then \ 995fc333b2dSSam Ravnborg echo "ERROR: the symlink $@ points to asm-$$asmlink but asm-$(SRCARCH) was expected"; \ 996fc333b2dSSam Ravnborg echo " set ARCH or save .config and run 'make mrproper' to fix it"; \ 997fc333b2dSSam Ravnborg exit 1; \ 998fc333b2dSSam Ravnborg fi; \ 999dcc2da1aSSam Ravnborg test -e $$asmlink || rm include/asm; \ 1000dcc2da1aSSam Ravnborg elif [ -d include/asm ]; then \ 1001dcc2da1aSSam Ravnborg echo "ERROR: $@ is a directory but a symlink was expected";\ 1002dcc2da1aSSam Ravnborg exit 1; \ 10032e57d051SSam Ravnborg fi 10042e57d051SSam Ravnborgendef 10052e57d051SSam Ravnborg 10062e57d051SSam Ravnborg# We create the target directory of the symlink if it does 10075a9e67b1SAnisse Astier# not exist so the test in check-symlink works and we have a 10082e57d051SSam Ravnborg# directory for generated filesas used by some architectures. 10092e57d051SSam Ravnborgdefine create-symlink 10102e57d051SSam Ravnborg if [ ! -L include/asm ]; then \ 1011fd54f502SMike Frysinger $(kecho) ' SYMLINK $@ -> include/asm-$(SRCARCH)'; \ 10122e57d051SSam Ravnborg if [ ! -d include/asm-$(SRCARCH) ]; then \ 10132e57d051SSam Ravnborg mkdir -p include/asm-$(SRCARCH); \ 1014fc333b2dSSam Ravnborg fi; \ 1015fc333b2dSSam Ravnborg ln -fsn asm-$(SRCARCH) $@; \ 1016fc333b2dSSam Ravnborg fi 10172e57d051SSam Ravnborgendef 10182e57d051SSam Ravnborg 10192e57d051SSam Ravnborginclude/asm: FORCE 10202e57d051SSam Ravnborg $(Q)$(check-symlink) 10212e57d051SSam Ravnborg $(Q)$(create-symlink) 10221da177e4SLinus Torvalds 10231da177e4SLinus Torvalds# Generate some files 10241da177e4SLinus Torvalds# --------------------------------------------------------------------------- 10251da177e4SLinus Torvalds 10261da177e4SLinus Torvalds# KERNELRELEASE can change from a few different places, meaning version.h 10271da177e4SLinus Torvalds# needs to be updated, so this check is forced on all builds 10281da177e4SLinus Torvalds 10291da177e4SLinus Torvaldsuts_len := 64 103063104eecSSam Ravnborgdefine filechk_utsrelease.h 10311da177e4SLinus Torvalds if [ `echo -n "$(KERNELRELEASE)" | wc -c ` -gt $(uts_len) ]; then \ 10321da177e4SLinus Torvalds echo '"$(KERNELRELEASE)" exceeds $(uts_len) characters' >&2; \ 10331da177e4SLinus Torvalds exit 1; \ 10341da177e4SLinus Torvalds fi; \ 103563104eecSSam Ravnborg (echo \#define UTS_RELEASE \"$(KERNELRELEASE)\";) 10361da177e4SLinus Torvaldsendef 10371da177e4SLinus Torvalds 103863104eecSSam Ravnborgdefine filechk_version.h 103963104eecSSam Ravnborg (echo \#define LINUX_VERSION_CODE $(shell \ 104063104eecSSam Ravnborg expr $(VERSION) \* 65536 + $(PATCHLEVEL) \* 256 + $(SUBLEVEL)); \ 104163104eecSSam Ravnborg echo '#define KERNEL_VERSION(a,b,c) (((a) << 16) + ((b) << 8) + (c))';) 104263104eecSSam Ravnborgendef 104363104eecSSam Ravnborg 104463104eecSSam Ravnborginclude/linux/version.h: $(srctree)/Makefile FORCE 10451da177e4SLinus Torvalds $(call filechk,version.h) 10461da177e4SLinus Torvalds 104763104eecSSam Ravnborginclude/linux/utsrelease.h: include/config/kernel.release FORCE 104863104eecSSam Ravnborg $(call filechk,utsrelease.h) 104963104eecSSam Ravnborg 1050179efcb4SVegard NossumPHONY += headerdep 1051179efcb4SVegard Nossumheaderdep: 1052179efcb4SVegard Nossum $(Q)find include/ -name '*.h' | xargs --max-args 1 scripts/headerdep.pl 1053179efcb4SVegard Nossum 10541da177e4SLinus Torvalds# --------------------------------------------------------------------------- 10551da177e4SLinus Torvalds 10564f193362SPaul SmithPHONY += depend dep 10571da177e4SLinus Torvaldsdepend dep: 10581da177e4SLinus Torvalds @echo '*** Warning: make $@ is unnecessary now.' 10591da177e4SLinus Torvalds 10601da177e4SLinus Torvalds# --------------------------------------------------------------------------- 106188ecf814SDavid Woodhouse# Firmware install 106288ecf814SDavid WoodhouseINSTALL_FW_PATH=$(INSTALL_MOD_PATH)/lib/firmware 106388ecf814SDavid Woodhouseexport INSTALL_FW_PATH 106488ecf814SDavid Woodhouse 106588ecf814SDavid WoodhousePHONY += firmware_install 106688ecf814SDavid Woodhousefirmware_install: FORCE 106788ecf814SDavid Woodhouse @mkdir -p $(objtree)/firmware 106888ecf814SDavid Woodhouse $(Q)$(MAKE) -f $(srctree)/scripts/Makefile.fwinst obj=firmware __fw_install 106988ecf814SDavid Woodhouse 107088ecf814SDavid Woodhouse# --------------------------------------------------------------------------- 10718d730cfbSDavid Woodhouse# Kernel headers 10728d730cfbSDavid Woodhouse 1073e6883b18SSam Ravnborg#Default location for installed headers 1074e6883b18SSam Ravnborgexport INSTALL_HDR_PATH = $(objtree)/usr 1075e6883b18SSam Ravnborg 1076e6883b18SSam Ravnborghdr-inst := -rR -f $(srctree)/scripts/Makefile.headersinst obj 10772fb9b1bdSSam Ravnborg# Find out where the Kbuild file is located to support 10782fb9b1bdSSam Ravnborg# arch/$(ARCH)/include/asm 10792fb9b1bdSSam Ravnborghdr-dir = $(strip \ 10802fb9b1bdSSam Ravnborg $(if $(wildcard $(srctree)/arch/$(hdr-arch)/include/asm/Kbuild), \ 10812fb9b1bdSSam Ravnborg arch/$(hdr-arch)/include/asm, include/asm-$(hdr-arch))) 10822fb9b1bdSSam Ravnborg 10832fb9b1bdSSam Ravnborg# If we do an all arch process set dst to asm-$(hdr-arch) 10842fb9b1bdSSam Ravnborghdr-dst = $(if $(KBUILD_HEADERS), dst=include/asm-$(hdr-arch), dst=include/asm) 1085e6883b18SSam Ravnborg 1086e6883b18SSam RavnborgPHONY += __headers 1087e6883b18SSam Ravnborg__headers: include/linux/version.h scripts_basic FORCE 1088e6883b18SSam Ravnborg $(Q)$(MAKE) $(build)=scripts scripts/unifdef 10896d716275SDavid Woodhouse 10906d716275SDavid WoodhousePHONY += headers_install_all 10912fb9b1bdSSam Ravnborgheaders_install_all: 10922fb9b1bdSSam Ravnborg $(Q)$(CONFIG_SHELL) $(srctree)/scripts/headers.sh install 10936d716275SDavid Woodhouse 10948d730cfbSDavid WoodhousePHONY += headers_install 1095e6883b18SSam Ravnborgheaders_install: __headers 10962fb9b1bdSSam Ravnborg $(if $(wildcard $(srctree)/$(hdr-dir)/Kbuild),, \ 10972fb9b1bdSSam Ravnborg $(error Headers not exportable for the $(SRCARCH) architecture)) 109888181ec3SSam Ravnborg $(Q)$(MAKE) $(hdr-inst)=include 10992fb9b1bdSSam Ravnborg $(Q)$(MAKE) $(hdr-inst)=$(hdr-dir) $(hdr-dst) 11008d730cfbSDavid Woodhouse 11011f85712eSMike FrysingerPHONY += headers_check_all 11021f85712eSMike Frysingerheaders_check_all: headers_install_all 11032fb9b1bdSSam Ravnborg $(Q)$(CONFIG_SHELL) $(srctree)/scripts/headers.sh check 11041f85712eSMike Frysinger 110568475359SDavid WoodhousePHONY += headers_check 110668475359SDavid Woodhouseheaders_check: headers_install 110788181ec3SSam Ravnborg $(Q)$(MAKE) $(hdr-inst)=include HDRCHECK=1 11082fb9b1bdSSam Ravnborg $(Q)$(MAKE) $(hdr-inst)=$(hdr-dir) $(hdr-dst) HDRCHECK=1 110968475359SDavid Woodhouse 11108d730cfbSDavid Woodhouse# --------------------------------------------------------------------------- 11111da177e4SLinus Torvalds# Modules 11121da177e4SLinus Torvalds 11131da177e4SLinus Torvaldsifdef CONFIG_MODULES 11141da177e4SLinus Torvalds 11151da177e4SLinus Torvalds# By default, build modules as well 11161da177e4SLinus Torvalds 11171da177e4SLinus Torvaldsall: modules 11181da177e4SLinus Torvalds 11191da177e4SLinus Torvalds# Build modules 1120551559e1STejun Heo# 1121551559e1STejun Heo# A module can be listed more than once in obj-m resulting in 1122551559e1STejun Heo# duplicate lines in modules.order files. Those are removed 1123551559e1STejun Heo# using awk while concatenating to the final file. 11241da177e4SLinus Torvalds 11254f193362SPaul SmithPHONY += modules 11261da177e4SLinus Torvaldsmodules: $(vmlinux-dirs) $(if $(KBUILD_BUILTIN),vmlinux) 1127551559e1STejun Heo $(Q)$(AWK) '!x[$$0]++' $(vmlinux-dirs:%=$(objtree)/%/modules.order) > $(objtree)/modules.order 1128fd54f502SMike Frysinger @$(kecho) ' Building modules, stage 2.'; 1129b805aa0eSSam Ravnborg $(Q)$(MAKE) -f $(srctree)/scripts/Makefile.modpost 113044463f7dSDavid Woodhouse $(Q)$(MAKE) -f $(srctree)/scripts/Makefile.fwinst obj=firmware __fw_modbuild 11311da177e4SLinus Torvalds 11321da177e4SLinus Torvalds 11331da177e4SLinus Torvalds# Target to prepare building external modules 11344f193362SPaul SmithPHONY += modules_prepare 11355bb78269SSam Ravnborgmodules_prepare: prepare scripts 11361da177e4SLinus Torvalds 11371da177e4SLinus Torvalds# Target to install modules 11384f193362SPaul SmithPHONY += modules_install 11391da177e4SLinus Torvaldsmodules_install: _modinst_ _modinst_post 11401da177e4SLinus Torvalds 11414f193362SPaul SmithPHONY += _modinst_ 11421da177e4SLinus Torvalds_modinst_: 1143ce454d4dSTom Rini @if [ -z "`$(DEPMOD) -V 2>/dev/null | grep module-init-tools`" ]; then \ 11441da177e4SLinus Torvalds echo "Warning: you may need to install module-init-tools"; \ 11451da177e4SLinus Torvalds echo "See http://www.codemonkey.org.uk/docs/post-halloween-2.6.txt";\ 11461da177e4SLinus Torvalds sleep 1; \ 11471da177e4SLinus Torvalds fi 11481da177e4SLinus Torvalds @rm -rf $(MODLIB)/kernel 11491da177e4SLinus Torvalds @rm -f $(MODLIB)/source 11501da177e4SLinus Torvalds @mkdir -p $(MODLIB)/kernel 11511da177e4SLinus Torvalds @ln -s $(srctree) $(MODLIB)/source 11521da177e4SLinus Torvalds @if [ ! $(objtree) -ef $(MODLIB)/build ]; then \ 11531da177e4SLinus Torvalds rm -f $(MODLIB)/build ; \ 11541da177e4SLinus Torvalds ln -s $(objtree) $(MODLIB)/build ; \ 11551da177e4SLinus Torvalds fi 1156551559e1STejun Heo @cp -f $(objtree)/modules.order $(MODLIB)/ 1157b805aa0eSSam Ravnborg $(Q)$(MAKE) -f $(srctree)/scripts/Makefile.modinst 11581da177e4SLinus Torvalds 115950a8ec31SSam Ravnborg# This depmod is only for convenience to give the initial 11601da177e4SLinus Torvalds# boot a modules.dep even before / is mounted read-write. However the 11611da177e4SLinus Torvalds# boot script depmod is the master version. 11624f193362SPaul SmithPHONY += _modinst_post 11631da177e4SLinus Torvalds_modinst_post: _modinst_ 116488ecf814SDavid Woodhouse $(Q)$(MAKE) -f $(srctree)/scripts/Makefile.fwinst obj=firmware __fw_modinst 116550a8ec31SSam Ravnborg $(call cmd,depmod) 11661da177e4SLinus Torvalds 11671da177e4SLinus Torvaldselse # CONFIG_MODULES 11681da177e4SLinus Torvalds 11691da177e4SLinus Torvalds# Modules not configured 11701da177e4SLinus Torvalds# --------------------------------------------------------------------------- 11711da177e4SLinus Torvalds 11721da177e4SLinus Torvaldsmodules modules_install: FORCE 11731da177e4SLinus Torvalds @echo 11741da177e4SLinus Torvalds @echo "The present kernel configuration has modules disabled." 11751da177e4SLinus Torvalds @echo "Type 'make config' and enable loadable module support." 11761da177e4SLinus Torvalds @echo "Then build a kernel with module support enabled." 11771da177e4SLinus Torvalds @echo 11781da177e4SLinus Torvalds @exit 1 11791da177e4SLinus Torvalds 11801da177e4SLinus Torvaldsendif # CONFIG_MODULES 11811da177e4SLinus Torvalds 11821da177e4SLinus Torvalds### 11831da177e4SLinus Torvalds# Cleaning is done on three levels. 11841da177e4SLinus Torvalds# make clean Delete most generated files 11851da177e4SLinus Torvalds# Leave enough to build external modules 11861da177e4SLinus Torvalds# make mrproper Delete the current configuration, and all generated files 11871da177e4SLinus Torvalds# make distclean Remove editor backup files, patch leftover files and the like 11881da177e4SLinus Torvalds 11891da177e4SLinus Torvalds# Directories & files removed with 'make clean' 11901da177e4SLinus TorvaldsCLEAN_DIRS += $(MODVERDIR) 11911da177e4SLinus TorvaldsCLEAN_FILES += vmlinux System.map \ 11921da177e4SLinus Torvalds .tmp_kallsyms* .tmp_version .tmp_vmlinux* .tmp_System.map 11931da177e4SLinus Torvalds 11941da177e4SLinus Torvalds# Directories & files removed with 'make mrproper' 1195f14875a3SSam RavnborgMRPROPER_DIRS += include/config include2 usr/include include/generated 119650aa88e2STore AndersonMRPROPER_FILES += .config .config.old include/asm .version .old_version \ 11973eb3c740SRoman Zippel include/linux/autoconf.h include/linux/version.h \ 11983eb3c740SRoman Zippel include/linux/utsrelease.h \ 11997d3cc8b6SJan Blunck include/linux/bounds.h include/asm*/asm-offsets.h \ 1200c28ca3aaSAlexey Dobriyan Module.symvers Module.markers tags TAGS cscope* 12011da177e4SLinus Torvalds 12021da177e4SLinus Torvalds# clean - Delete most, but leave enough to build external modules 12031da177e4SLinus Torvalds# 12041da177e4SLinus Torvaldsclean: rm-dirs := $(CLEAN_DIRS) 12051da177e4SLinus Torvaldsclean: rm-files := $(CLEAN_FILES) 12063794f3e8SRandy Dunlapclean-dirs := $(addprefix _clean_,$(srctree) $(vmlinux-alldirs) Documentation) 12071da177e4SLinus Torvalds 12084f193362SPaul SmithPHONY += $(clean-dirs) clean archclean 12091da177e4SLinus Torvalds$(clean-dirs): 12101da177e4SLinus Torvalds $(Q)$(MAKE) $(clean)=$(patsubst _clean_%,%,$@) 12111da177e4SLinus Torvalds 12121da177e4SLinus Torvaldsclean: archclean $(clean-dirs) 12131da177e4SLinus Torvalds $(call cmd,rmdirs) 12141da177e4SLinus Torvalds $(call cmd,rmfiles) 12151da177e4SLinus Torvalds @find . $(RCS_FIND_IGNORE) \ 12161da177e4SLinus Torvalds \( -name '*.[oas]' -o -name '*.ko' -o -name '.*.cmd' \ 121715fde675SAndreas Gruenbacher -o -name '.*.d' -o -name '.*.tmp' -o -name '*.mod.c' \ 1218d35cb360SMathieu Desnoyers -o -name '*.symtypes' -o -name 'modules.order' \ 12192521f2c2SPeter Oberparleiter -o -name 'Module.markers' -o -name '.tmp_*.o.*' \ 12202521f2c2SPeter Oberparleiter -o -name '*.gcno' \) -type f -print | xargs rm -f 12211da177e4SLinus Torvalds 12221da177e4SLinus Torvalds# mrproper - Delete all generated files, including .config 12231da177e4SLinus Torvalds# 12241da177e4SLinus Torvaldsmrproper: rm-dirs := $(wildcard $(MRPROPER_DIRS)) 12251da177e4SLinus Torvaldsmrproper: rm-files := $(wildcard $(MRPROPER_FILES)) 12261da177e4SLinus Torvaldsmrproper-dirs := $(addprefix _mrproper_,Documentation/DocBook scripts) 12271da177e4SLinus Torvalds 12284f193362SPaul SmithPHONY += $(mrproper-dirs) mrproper archmrproper 12291da177e4SLinus Torvalds$(mrproper-dirs): 12301da177e4SLinus Torvalds $(Q)$(MAKE) $(clean)=$(patsubst _mrproper_%,%,$@) 12311da177e4SLinus Torvalds 12321da177e4SLinus Torvaldsmrproper: clean archmrproper $(mrproper-dirs) 12331da177e4SLinus Torvalds $(call cmd,rmdirs) 12341da177e4SLinus Torvalds $(call cmd,rmfiles) 12351da177e4SLinus Torvalds 12361da177e4SLinus Torvalds# distclean 12371da177e4SLinus Torvalds# 12384f193362SPaul SmithPHONY += distclean 12391da177e4SLinus Torvalds 12401da177e4SLinus Torvaldsdistclean: mrproper 12411da177e4SLinus Torvalds @find $(srctree) $(RCS_FIND_IGNORE) \ 12421da177e4SLinus Torvalds \( -name '*.orig' -o -name '*.rej' -o -name '*~' \ 12431da177e4SLinus Torvalds -o -name '*.bak' -o -name '#*#' -o -name '.*.orig' \ 12441da177e4SLinus Torvalds -o -name '.*.rej' -o -size 0 \ 12451da177e4SLinus Torvalds -o -name '*%' -o -name '.*.cmd' -o -name 'core' \) \ 12461da177e4SLinus Torvalds -type f -print | xargs rm -f 12471da177e4SLinus Torvalds 12481da177e4SLinus Torvalds 12491da177e4SLinus Torvalds# Packaging of the kernel to various formats 12501da177e4SLinus Torvalds# --------------------------------------------------------------------------- 12511da177e4SLinus Torvalds# rpm target kept for backward compatibility 12521da177e4SLinus Torvaldspackage-dir := $(srctree)/scripts/package 12531da177e4SLinus Torvalds 1254031ecc6dSZach Brown%pkg: include/config/kernel.release FORCE 12556c2133e1SSam Ravnborg $(Q)$(MAKE) $(build)=$(package-dir) $@ 1256031ecc6dSZach Brownrpm: include/config/kernel.release FORCE 12576c2133e1SSam Ravnborg $(Q)$(MAKE) $(build)=$(package-dir) $@ 12581da177e4SLinus Torvalds 12591da177e4SLinus Torvalds 12601da177e4SLinus Torvalds# Brief documentation of the typical targets used 12611da177e4SLinus Torvalds# --------------------------------------------------------------------------- 12621da177e4SLinus Torvalds 12635dffbe81SSegher Boessenkoolboards := $(wildcard $(srctree)/arch/$(SRCARCH)/configs/*_defconfig) 12641da177e4SLinus Torvaldsboards := $(notdir $(boards)) 12655dffbe81SSegher Boessenkoolboard-dirs := $(dir $(wildcard $(srctree)/arch/$(SRCARCH)/configs/*/*_defconfig)) 12665dffbe81SSegher Boessenkoolboard-dirs := $(sort $(notdir $(board-dirs:/=))) 12671da177e4SLinus Torvalds 12681da177e4SLinus Torvaldshelp: 12691da177e4SLinus Torvalds @echo 'Cleaning targets:' 12705ea084efSSamuel Tardieu @echo ' clean - Remove most generated files but keep the config and' 12715cc8d246SJesper Juhl @echo ' enough build support to build external modules' 12725ea084efSSamuel Tardieu @echo ' mrproper - Remove all generated files + config + various backup files' 12735cc8d246SJesper Juhl @echo ' distclean - mrproper + remove editor backup and patch files' 12741da177e4SLinus Torvalds @echo '' 12751da177e4SLinus Torvalds @echo 'Configuration targets:' 12761da177e4SLinus Torvalds @$(MAKE) -f $(srctree)/scripts/kconfig/Makefile help 12771da177e4SLinus Torvalds @echo '' 12781da177e4SLinus Torvalds @echo 'Other generic targets:' 12791da177e4SLinus Torvalds @echo ' all - Build all targets marked with [*]' 12801da177e4SLinus Torvalds @echo '* vmlinux - Build the bare kernel' 12811da177e4SLinus Torvalds @echo '* modules - Build all modules' 12829cc5d74cSBodo Eggert @echo ' modules_install - Install all modules to INSTALL_MOD_PATH (default: /)' 128388ecf814SDavid Woodhouse @echo ' firmware_install- Install all firmware to INSTALL_FW_PATH' 128488ecf814SDavid Woodhouse @echo ' (default: $$(INSTALL_MOD_PATH)/lib/firmware)' 12851da177e4SLinus Torvalds @echo ' dir/ - Build all files in dir and below' 12861da177e4SLinus Torvalds @echo ' dir/file.[ois] - Build specified target only' 1287155ad605SSam Ravnborg @echo ' dir/file.ko - Build module including final link' 1288c4d5ee67SRobert P. J. Day @echo ' modules_prepare - Set up for building external modules' 12891da177e4SLinus Torvalds @echo ' tags/TAGS - Generate tags file for editors' 12901da177e4SLinus Torvalds @echo ' cscope - Generate cscope index' 12916d128842SZach Brown @echo ' kernelrelease - Output the release version string' 1292cb58455cSSam Ravnborg @echo ' kernelversion - Output the version stored in Makefile' 12932fb9b1bdSSam Ravnborg @echo ' headers_install - Install sanitised kernel headers to INSTALL_HDR_PATH'; \ 129459df3230SGeert Uytterhoeven echo ' (default: $(INSTALL_HDR_PATH))'; \ 12952fb9b1bdSSam Ravnborg echo '' 12961da177e4SLinus Torvalds @echo 'Static analysers' 12971da177e4SLinus Torvalds @echo ' checkstack - Generate a list of stack hogs' 12981da177e4SLinus Torvalds @echo ' namespacecheck - Name space analysis on compiled kernel' 1299aa025e7dSSam Ravnborg @echo ' versioncheck - Sanity check on version.h usage' 1300ec2d987fSRandy Dunlap @echo ' includecheck - Check for duplicate included header files' 1301295ac051SAdrian Bunk @echo ' export_report - List the usages of all exported symbols' 1302179efcb4SVegard Nossum @echo ' headers_check - Sanity check on exported headers' 1303179efcb4SVegard Nossum @echo ' headerdep - Detect inclusion cycles in headers'; \ 13042fb9b1bdSSam Ravnborg echo '' 13051da177e4SLinus Torvalds @echo 'Kernel packaging:' 13066c2133e1SSam Ravnborg @$(MAKE) $(build)=$(package-dir) help 13071da177e4SLinus Torvalds @echo '' 13081da177e4SLinus Torvalds @echo 'Documentation targets:' 13091da177e4SLinus Torvalds @$(MAKE) -f $(srctree)/Documentation/DocBook/Makefile dochelp 13101da177e4SLinus Torvalds @echo '' 131101dee188SAndres Salomon @echo 'Architecture specific targets ($(SRCARCH)):' 13121da177e4SLinus Torvalds @$(if $(archhelp),$(archhelp),\ 131301dee188SAndres Salomon echo ' No architecture specific help defined for $(SRCARCH)') 13141da177e4SLinus Torvalds @echo '' 13151da177e4SLinus Torvalds @$(if $(boards), \ 13161da177e4SLinus Torvalds $(foreach b, $(boards), \ 13171da177e4SLinus Torvalds printf " %-24s - Build for %s\\n" $(b) $(subst _defconfig,,$(b));) \ 13181da177e4SLinus Torvalds echo '') 13195dffbe81SSegher Boessenkool @$(if $(board-dirs), \ 13205dffbe81SSegher Boessenkool $(foreach b, $(board-dirs), \ 13215dffbe81SSegher Boessenkool printf " %-16s - Show %s-specific targets\\n" help-$(b) $(b);) \ 13225dffbe81SSegher Boessenkool printf " %-16s - Show all of the above\\n" help-boards; \ 13235dffbe81SSegher Boessenkool echo '') 13241da177e4SLinus Torvalds 13251da177e4SLinus Torvalds @echo ' make V=0|1 [targets] 0 => quiet build (default), 1 => verbose build' 132645d506bdSSam Ravnborg @echo ' make V=2 [targets] 2 => give reason for rebuild of target' 13271da177e4SLinus Torvalds @echo ' make O=dir [targets] Locate all output files in "dir", including .config' 1328701842e3SDustin Kirkland @echo ' make C=1 [targets] Check all c source with $$CHECK (sparse by default)' 1329701842e3SDustin Kirkland @echo ' make C=2 [targets] Force check of all c source with $$CHECK' 13301da177e4SLinus Torvalds @echo '' 13311da177e4SLinus Torvalds @echo 'Execute "make" or "make all" to build all targets marked with [*] ' 13321da177e4SLinus Torvalds @echo 'For further info see the ./README file' 13331da177e4SLinus Torvalds 13341da177e4SLinus Torvalds 13355dffbe81SSegher Boessenkoolhelp-board-dirs := $(addprefix help-,$(board-dirs)) 13365dffbe81SSegher Boessenkool 13375dffbe81SSegher Boessenkoolhelp-boards: $(help-board-dirs) 13385dffbe81SSegher Boessenkool 13395dffbe81SSegher Boessenkoolboards-per-dir = $(notdir $(wildcard $(srctree)/arch/$(SRCARCH)/configs/$*/*_defconfig)) 13405dffbe81SSegher Boessenkool 13415dffbe81SSegher Boessenkool$(help-board-dirs): help-%: 13425dffbe81SSegher Boessenkool @echo 'Architecture specific targets ($(SRCARCH) $*):' 13435dffbe81SSegher Boessenkool @$(if $(boards-per-dir), \ 13445dffbe81SSegher Boessenkool $(foreach b, $(boards-per-dir), \ 13455dffbe81SSegher Boessenkool printf " %-24s - Build for %s\\n" $*/$(b) $(subst _defconfig,,$(b));) \ 13465dffbe81SSegher Boessenkool echo '') 13475dffbe81SSegher Boessenkool 13485dffbe81SSegher Boessenkool 13491da177e4SLinus Torvalds# Documentation targets 13501da177e4SLinus Torvalds# --------------------------------------------------------------------------- 13511da177e4SLinus Torvalds%docs: scripts_basic FORCE 13521da177e4SLinus Torvalds $(Q)$(MAKE) $(build)=Documentation/DocBook $@ 13531da177e4SLinus Torvalds 13541da177e4SLinus Torvaldselse # KBUILD_EXTMOD 13551da177e4SLinus Torvalds 13561da177e4SLinus Torvalds### 13571da177e4SLinus Torvalds# External module support. 13581da177e4SLinus Torvalds# When building external modules the kernel used as basis is considered 13591da177e4SLinus Torvalds# read-only, and no consistency checks are made and the make 13601da177e4SLinus Torvalds# system is not used on the basis kernel. If updates are required 13611da177e4SLinus Torvalds# in the basis kernel ordinary make commands (without M=...) must 13621da177e4SLinus Torvalds# be used. 13631da177e4SLinus Torvalds# 13641da177e4SLinus Torvalds# The following are the only valid targets when building external 13651da177e4SLinus Torvalds# modules. 13661da177e4SLinus Torvalds# make M=dir clean Delete all automatically generated files 13671da177e4SLinus Torvalds# make M=dir modules Make all modules in specified dir 13681da177e4SLinus Torvalds# make M=dir Same as 'make M=dir modules' 13691da177e4SLinus Torvalds# make M=dir modules_install 1370070b98bfSSam Ravnborg# Install the modules built in the module directory 13711da177e4SLinus Torvalds# Assumes install directory is already created 13721da177e4SLinus Torvalds 13731da177e4SLinus Torvalds# We are always building modules 13741da177e4SLinus TorvaldsKBUILD_MODULES := 1 13754f193362SPaul SmithPHONY += crmodverdir 13761da177e4SLinus Torvaldscrmodverdir: 13777bb9d092SSam Ravnborg $(cmd_crmodverdir) 13781da177e4SLinus Torvalds 13794f193362SPaul SmithPHONY += $(objtree)/Module.symvers 13801da177e4SLinus Torvalds$(objtree)/Module.symvers: 13811da177e4SLinus Torvalds @test -e $(objtree)/Module.symvers || ( \ 13821da177e4SLinus Torvalds echo; \ 13831da177e4SLinus Torvalds echo " WARNING: Symbol version dump $(objtree)/Module.symvers"; \ 13841da177e4SLinus Torvalds echo " is missing; modules will have no dependencies and modversions."; \ 13851da177e4SLinus Torvalds echo ) 13861da177e4SLinus Torvalds 13871da177e4SLinus Torvaldsmodule-dirs := $(addprefix _module_,$(KBUILD_EXTMOD)) 13884f193362SPaul SmithPHONY += $(module-dirs) modules 13891da177e4SLinus Torvalds$(module-dirs): crmodverdir $(objtree)/Module.symvers 13901da177e4SLinus Torvalds $(Q)$(MAKE) $(build)=$(patsubst _module_%,%,$@) 13911da177e4SLinus Torvalds 13921da177e4SLinus Torvaldsmodules: $(module-dirs) 1393fd54f502SMike Frysinger @$(kecho) ' Building modules, stage 2.'; 1394b805aa0eSSam Ravnborg $(Q)$(MAKE) -f $(srctree)/scripts/Makefile.modpost 13951da177e4SLinus Torvalds 13964f193362SPaul SmithPHONY += modules_install 1397a67dc21aSSam Ravnborgmodules_install: _emodinst_ _emodinst_post 1398a67dc21aSSam Ravnborg 1399a67dc21aSSam Ravnborginstall-dir := $(if $(INSTALL_MOD_DIR),$(INSTALL_MOD_DIR),extra) 14004f193362SPaul SmithPHONY += _emodinst_ 1401a67dc21aSSam Ravnborg_emodinst_: 1402a67dc21aSSam Ravnborg $(Q)mkdir -p $(MODLIB)/$(install-dir) 1403b805aa0eSSam Ravnborg $(Q)$(MAKE) -f $(srctree)/scripts/Makefile.modinst 14041da177e4SLinus Torvalds 14054f193362SPaul SmithPHONY += _emodinst_post 1406a67dc21aSSam Ravnborg_emodinst_post: _emodinst_ 1407a67dc21aSSam Ravnborg $(call cmd,depmod) 1408a67dc21aSSam Ravnborg 14091da177e4SLinus Torvaldsclean-dirs := $(addprefix _clean_,$(KBUILD_EXTMOD)) 14101da177e4SLinus Torvalds 14114f193362SPaul SmithPHONY += $(clean-dirs) clean 14121da177e4SLinus Torvalds$(clean-dirs): 14131da177e4SLinus Torvalds $(Q)$(MAKE) $(clean)=$(patsubst _clean_%,%,$@) 14141da177e4SLinus Torvalds 14151da177e4SLinus Torvaldsclean: rm-dirs := $(MODVERDIR) 14160c56042aSFrédéric Brièreclean: rm-files := $(KBUILD_EXTMOD)/Module.symvers \ 14170c56042aSFrédéric Brière $(KBUILD_EXTMOD)/Module.markers \ 14180c56042aSFrédéric Brière $(KBUILD_EXTMOD)/modules.order 14191da177e4SLinus Torvaldsclean: $(clean-dirs) 14201da177e4SLinus Torvalds $(call cmd,rmdirs) 1421c34114f4SMike Frysinger $(call cmd,rmfiles) 14221da177e4SLinus Torvalds @find $(KBUILD_EXTMOD) $(RCS_FIND_IGNORE) \ 14231da177e4SLinus Torvalds \( -name '*.[oas]' -o -name '*.ko' -o -name '.*.cmd' \ 14242521f2c2SPeter Oberparleiter -o -name '.*.d' -o -name '.*.tmp' -o -name '*.mod.c' \ 14252521f2c2SPeter Oberparleiter -o -name '*.gcno' \) -type f -print | xargs rm -f 14261da177e4SLinus Torvalds 14271da177e4SLinus Torvaldshelp: 14281da177e4SLinus Torvalds @echo ' Building external modules.' 14291da177e4SLinus Torvalds @echo ' Syntax: make -C path/to/kernel/src M=$$PWD target' 14301da177e4SLinus Torvalds @echo '' 14311da177e4SLinus Torvalds @echo ' modules - default target, build the module(s)' 14321da177e4SLinus Torvalds @echo ' modules_install - install the module' 14331da177e4SLinus Torvalds @echo ' clean - remove generated files in module directory only' 14341da177e4SLinus Torvalds @echo '' 143506300b21SSam Ravnborg 143606300b21SSam Ravnborg# Dummies... 14374f193362SPaul SmithPHONY += prepare scripts 143806300b21SSam Ravnborgprepare: ; 143906300b21SSam Ravnborgscripts: ; 14401da177e4SLinus Torvaldsendif # KBUILD_EXTMOD 14411da177e4SLinus Torvalds 14421da177e4SLinus Torvalds# Generate tags for editors 14431da177e4SLinus Torvalds# --------------------------------------------------------------------------- 1444a680eedcSSam Ravnborgquiet_cmd_tags = GEN $@ 1445a680eedcSSam Ravnborg cmd_tags = $(CONFIG_SHELL) $(srctree)/scripts/tags.sh $@ 14461da177e4SLinus Torvalds 1447a680eedcSSam Ravnborgtags TAGS cscope: FORCE 14481da177e4SLinus Torvalds $(call cmd,tags) 14491da177e4SLinus Torvalds 14501da177e4SLinus Torvalds# Scripts to check various things for consistency 14511da177e4SLinus Torvalds# --------------------------------------------------------------------------- 14521da177e4SLinus Torvalds 14531da177e4SLinus Torvaldsincludecheck: 14541da177e4SLinus Torvalds find * $(RCS_FIND_IGNORE) \ 14551da177e4SLinus Torvalds -name '*.[hcS]' -type f -print | sort \ 145680007434SGeert Uytterhoeven | xargs $(PERL) -w $(srctree)/scripts/checkincludes.pl 14571da177e4SLinus Torvalds 14581da177e4SLinus Torvaldsversioncheck: 14591da177e4SLinus Torvalds find * $(RCS_FIND_IGNORE) \ 14601da177e4SLinus Torvalds -name '*.[hcS]' -type f -print | sort \ 146180007434SGeert Uytterhoeven | xargs $(PERL) -w $(srctree)/scripts/checkversion.pl 14621da177e4SLinus Torvalds 14631da177e4SLinus Torvaldsnamespacecheck: 14641da177e4SLinus Torvalds $(PERL) $(srctree)/scripts/namespace.pl 14651da177e4SLinus Torvalds 1466295ac051SAdrian Bunkexport_report: 1467295ac051SAdrian Bunk $(PERL) $(srctree)/scripts/export_report.pl 1468295ac051SAdrian Bunk 14691da177e4SLinus Torvaldsendif #ifeq ($(config-targets),1) 14701da177e4SLinus Torvaldsendif #ifeq ($(mixed-targets),1) 14711da177e4SLinus Torvalds 1472c30a02e0SRoman ZippelPHONY += checkstack kernelrelease kernelversion 1473e3ccf6e3SJeff Dike 1474011e3a9aSJeff Dike# UML needs a little special treatment here. It wants to use the host 1475011e3a9aSJeff Dike# toolchain, so needs $(SUBARCH) passed to checkstack.pl. Everyone 1476011e3a9aSJeff Dike# else wants $(ARCH), including people doing cross-builds, which means 1477011e3a9aSJeff Dike# that $(SUBARCH) doesn't work here. 1478011e3a9aSJeff Dikeifeq ($(ARCH), um) 1479011e3a9aSJeff DikeCHECKSTACK_ARCH := $(SUBARCH) 1480011e3a9aSJeff Dikeelse 1481011e3a9aSJeff DikeCHECKSTACK_ARCH := $(ARCH) 1482011e3a9aSJeff Dikeendif 14831da177e4SLinus Torvaldscheckstack: 14841da177e4SLinus Torvalds $(OBJDUMP) -d vmlinux $$(find . -name '*.ko') | \ 1485011e3a9aSJeff Dike $(PERL) $(src)/scripts/checkstack.pl $(CHECKSTACK_ARCH) 14861da177e4SLinus Torvalds 14871da177e4SLinus Torvaldskernelrelease: 1488f1d28fb0SRoman Zippel $(if $(wildcard include/config/kernel.release), $(Q)echo $(KERNELRELEASE), \ 1489f1d28fb0SRoman Zippel $(error kernelrelease not valid - run 'make prepare' to update it)) 1490cb58455cSSam Ravnborgkernelversion: 14912244cbd8SSam Ravnborg @echo $(KERNELVERSION) 14921da177e4SLinus Torvalds 149306300b21SSam Ravnborg# Single targets 149406300b21SSam Ravnborg# --------------------------------------------------------------------------- 1495bc2546a6SSam Ravnborg# Single targets are compatible with: 1496e1b8513dSRobert P. J. Day# - build with mixed source and output 1497bc2546a6SSam Ravnborg# - build with separate output dir 'make O=...' 1498bc2546a6SSam Ravnborg# - external modules 1499bc2546a6SSam Ravnborg# 1500bc2546a6SSam Ravnborg# target-dir => where to store outputfile 1501bc2546a6SSam Ravnborg# build-dir => directory in kernel source tree to use 150206300b21SSam Ravnborg 150306300b21SSam Ravnborgifeq ($(KBUILD_EXTMOD),) 1504aa360879SSam Ravnborg build-dir = $(patsubst %/,%,$(dir $@)) 1505bc2546a6SSam Ravnborg target-dir = $(dir $@) 150606300b21SSam Ravnborgelse 150706300b21SSam Ravnborg zap-slash=$(filter-out .,$(patsubst %/,%,$(dir $@))) 1508bc2546a6SSam Ravnborg build-dir = $(KBUILD_EXTMOD)$(if $(zap-slash),/$(zap-slash)) 1509bc2546a6SSam Ravnborg target-dir = $(if $(KBUILD_EXTMOD),$(dir $<),$(dir $@)) 151006300b21SSam Ravnborgendif 151106300b21SSam Ravnborg 1512bc2546a6SSam Ravnborg%.s: %.c prepare scripts FORCE 1513bc2546a6SSam Ravnborg $(Q)$(MAKE) $(build)=$(build-dir) $(target-dir)$(notdir $@) 1514bc2546a6SSam Ravnborg%.i: %.c prepare scripts FORCE 1515bc2546a6SSam Ravnborg $(Q)$(MAKE) $(build)=$(build-dir) $(target-dir)$(notdir $@) 1516bc2546a6SSam Ravnborg%.o: %.c prepare scripts FORCE 1517bc2546a6SSam Ravnborg $(Q)$(MAKE) $(build)=$(build-dir) $(target-dir)$(notdir $@) 1518bc2546a6SSam Ravnborg%.lst: %.c prepare scripts FORCE 1519bc2546a6SSam Ravnborg $(Q)$(MAKE) $(build)=$(build-dir) $(target-dir)$(notdir $@) 1520bc2546a6SSam Ravnborg%.s: %.S prepare scripts FORCE 1521bc2546a6SSam Ravnborg $(Q)$(MAKE) $(build)=$(build-dir) $(target-dir)$(notdir $@) 1522bc2546a6SSam Ravnborg%.o: %.S prepare scripts FORCE 1523bc2546a6SSam Ravnborg $(Q)$(MAKE) $(build)=$(build-dir) $(target-dir)$(notdir $@) 152415fde675SAndreas Gruenbacher%.symtypes: %.c prepare scripts FORCE 152515fde675SAndreas Gruenbacher $(Q)$(MAKE) $(build)=$(build-dir) $(target-dir)$(notdir $@) 1526bc2546a6SSam Ravnborg 1527bc2546a6SSam Ravnborg# Modules 152831110ebbSSam Ravnborg/: prepare scripts FORCE 152931110ebbSSam Ravnborg $(cmd_crmodverdir) 153031110ebbSSam Ravnborg $(Q)$(MAKE) KBUILD_MODULES=$(if $(CONFIG_MODULES),1) \ 153131110ebbSSam Ravnborg $(build)=$(build-dir) 153231110ebbSSam Ravnborg%/: prepare scripts FORCE 15337bb9d092SSam Ravnborg $(cmd_crmodverdir) 153406300b21SSam Ravnborg $(Q)$(MAKE) KBUILD_MODULES=$(if $(CONFIG_MODULES),1) \ 1535bc2546a6SSam Ravnborg $(build)=$(build-dir) 1536bc2546a6SSam Ravnborg%.ko: prepare scripts FORCE 15377bb9d092SSam Ravnborg $(cmd_crmodverdir) 153806300b21SSam Ravnborg $(Q)$(MAKE) KBUILD_MODULES=$(if $(CONFIG_MODULES),1) \ 1539bc2546a6SSam Ravnborg $(build)=$(build-dir) $(@:.ko=.o) 1540b805aa0eSSam Ravnborg $(Q)$(MAKE) -f $(srctree)/scripts/Makefile.modpost 154106300b21SSam Ravnborg 15421da177e4SLinus Torvalds# FIXME Should go into a make.lib or something 15431da177e4SLinus Torvalds# =========================================================================== 15441da177e4SLinus Torvalds 15451da177e4SLinus Torvaldsquiet_cmd_rmdirs = $(if $(wildcard $(rm-dirs)),CLEAN $(wildcard $(rm-dirs))) 15461da177e4SLinus Torvalds cmd_rmdirs = rm -rf $(rm-dirs) 15471da177e4SLinus Torvalds 15481da177e4SLinus Torvaldsquiet_cmd_rmfiles = $(if $(wildcard $(rm-files)),CLEAN $(wildcard $(rm-files))) 15491da177e4SLinus Torvalds cmd_rmfiles = rm -f $(rm-files) 15501da177e4SLinus Torvalds 1551bc3c26feSUwe Kleine-König# Run depmod only if we have System.map and depmod is executable 155250a8ec31SSam Ravnborgquiet_cmd_depmod = DEPMOD $(KERNELRELEASE) 155350a8ec31SSam Ravnborg cmd_depmod = \ 1554d8d2e78aSSam Ravnborg if [ -r System.map -a -x $(DEPMOD) ]; then \ 155550a8ec31SSam Ravnborg $(DEPMOD) -ae -F System.map \ 155675bccd88SGilles Espinasse $(if $(strip $(INSTALL_MOD_PATH)), -b $(INSTALL_MOD_PATH) ) \ 155750a8ec31SSam Ravnborg $(KERNELRELEASE); \ 155850a8ec31SSam Ravnborg fi 155950a8ec31SSam Ravnborg 15607bb9d092SSam Ravnborg# Create temporary dir for module support files 1561ab19f879SSam Ravnborg# clean it up only when building all modules 1562ab19f879SSam Ravnborgcmd_crmodverdir = $(Q)mkdir -p $(MODVERDIR) \ 1563ab19f879SSam Ravnborg $(if $(KBUILD_MODULES),; rm -f $(MODVERDIR)/*) 15641da177e4SLinus Torvalds 1565222d394dSSam Ravnborga_flags = -Wp,-MD,$(depfile) $(KBUILD_AFLAGS) $(AFLAGS_KERNEL) \ 1566d8672b40SSam Ravnborg $(NOSTDINC_FLAGS) $(LINUXINCLUDE) $(KBUILD_CPPFLAGS) \ 15675e8d780dSSam Ravnborg $(modkern_aflags) $(EXTRA_AFLAGS) $(AFLAGS_$(basetarget).o) 15681da177e4SLinus Torvalds 15691da177e4SLinus Torvaldsquiet_cmd_as_o_S = AS $@ 15701da177e4SLinus Torvaldscmd_as_o_S = $(CC) $(a_flags) -c -o $@ $< 15711da177e4SLinus Torvalds 15721da177e4SLinus Torvalds# read all saved command lines 15731da177e4SLinus Torvalds 15741da177e4SLinus Torvaldstargets := $(wildcard $(sort $(targets))) 15751da177e4SLinus Torvaldscmd_files := $(wildcard .*.cmd $(foreach f,$(targets),$(dir $(f)).$(notdir $(f)).cmd)) 15761da177e4SLinus Torvalds 15771da177e4SLinus Torvaldsifneq ($(cmd_files),) 15781da177e4SLinus Torvalds $(cmd_files): ; # Do not try to update included dependency files 15791da177e4SLinus Torvalds include $(cmd_files) 15801da177e4SLinus Torvaldsendif 15811da177e4SLinus Torvalds 15821da177e4SLinus Torvalds# Shorthand for $(Q)$(MAKE) -f scripts/Makefile.clean obj=dir 15831da177e4SLinus Torvalds# Usage: 15841da177e4SLinus Torvalds# $(Q)$(MAKE) $(clean)=dir 15851da177e4SLinus Torvaldsclean := -f $(if $(KBUILD_SRC),$(srctree)/)scripts/Makefile.clean obj 15861da177e4SLinus Torvalds 15871da177e4SLinus Torvaldsendif # skip-makefile 15881da177e4SLinus Torvalds 15894f193362SPaul SmithPHONY += FORCE 15901da177e4SLinus TorvaldsFORCE: 15914f193362SPaul Smith 15924f193362SPaul Smith# Declare the contents of the .PHONY variable as phony. We keep that 1593fe8d0a41SKirill Smelkov# information in a variable so we can use it in if_changed and friends. 15944f193362SPaul Smith.PHONY: $(PHONY) 1595