xref: /openbmc/linux/Makefile (revision 0b35786d77ba4037f181982cc8ca20a7a3bf0fd2)
11da177e4SLinus TorvaldsVERSION = 2
21da177e4SLinus TorvaldsPATCHLEVEL = 6
3f695baf2SLinus TorvaldsSUBLEVEL = 23
4bbf25010SLinus TorvaldsEXTRAVERSION =
581cfe79bSLinus TorvaldsNAME = Arr Matey! A Hairy Bilge Rat!
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
1515964864SOleg Verych#    (this increases performance and avoid hard-to-debug behavour);
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 Torvaldsifdef V
391da177e4SLinus Torvalds  ifeq ("$(origin V)", "command line")
401da177e4SLinus Torvalds    KBUILD_VERBOSE = $(V)
411da177e4SLinus Torvalds  endif
421da177e4SLinus Torvaldsendif
431da177e4SLinus Torvaldsifndef KBUILD_VERBOSE
441da177e4SLinus Torvalds  KBUILD_VERBOSE = 0
451da177e4SLinus Torvaldsendif
461da177e4SLinus Torvalds
471c7bafe7SRobert P. J. Day# Call a source code checker (by default, "sparse") as part of the
481c7bafe7SRobert P. J. Day# C compilation.
491c7bafe7SRobert P. J. Day#
501c7bafe7SRobert P. J. Day# Use 'make C=1' to enable checking of only re-compiled files.
511c7bafe7SRobert P. J. Day# Use 'make C=2' to enable checking of *all* source files, regardless
521c7bafe7SRobert P. J. Day# of whether they are re-compiled or not.
531c7bafe7SRobert P. J. Day#
541c7bafe7SRobert P. J. Day# See the file "Documentation/sparse.txt" for more details, including
551c7bafe7SRobert P. J. Day# where to get the "sparse" utility.
561da177e4SLinus Torvalds
571da177e4SLinus Torvaldsifdef C
581da177e4SLinus Torvalds  ifeq ("$(origin C)", "command line")
591da177e4SLinus Torvalds    KBUILD_CHECKSRC = $(C)
601da177e4SLinus Torvalds  endif
611da177e4SLinus Torvaldsendif
621da177e4SLinus Torvaldsifndef KBUILD_CHECKSRC
631da177e4SLinus Torvalds  KBUILD_CHECKSRC = 0
641da177e4SLinus Torvaldsendif
651da177e4SLinus Torvalds
661da177e4SLinus Torvalds# Use make M=dir to specify directory of external module to build
671da177e4SLinus Torvalds# Old syntax make ... SUBDIRS=$PWD is still supported
681da177e4SLinus Torvalds# Setting the environment variable KBUILD_EXTMOD take precedence
691da177e4SLinus Torvaldsifdef SUBDIRS
701da177e4SLinus Torvalds  KBUILD_EXTMOD ?= $(SUBDIRS)
711da177e4SLinus Torvaldsendif
721da177e4SLinus Torvaldsifdef M
731da177e4SLinus Torvalds  ifeq ("$(origin M)", "command line")
741da177e4SLinus Torvalds    KBUILD_EXTMOD := $(M)
751da177e4SLinus Torvalds  endif
761da177e4SLinus Torvaldsendif
771da177e4SLinus Torvalds
781da177e4SLinus Torvalds
791da177e4SLinus Torvalds# kbuild supports saving output files in a separate directory.
801da177e4SLinus Torvalds# To locate output files in a separate directory two syntaxes are supported.
811da177e4SLinus Torvalds# In both cases the working directory must be the root of the kernel src.
821da177e4SLinus Torvalds# 1) O=
831da177e4SLinus Torvalds# Use "make O=dir/to/store/output/files/"
841da177e4SLinus Torvalds#
851da177e4SLinus Torvalds# 2) Set KBUILD_OUTPUT
861da177e4SLinus Torvalds# Set the environment variable KBUILD_OUTPUT to point to the directory
871da177e4SLinus Torvalds# where the output files shall be placed.
881da177e4SLinus Torvalds# export KBUILD_OUTPUT=dir/to/store/output/files/
891da177e4SLinus Torvalds# make
901da177e4SLinus Torvalds#
911da177e4SLinus Torvalds# The O= assignment takes precedence over the KBUILD_OUTPUT environment
921da177e4SLinus Torvalds# variable.
931da177e4SLinus Torvalds
941da177e4SLinus Torvalds
951da177e4SLinus Torvalds# KBUILD_SRC is set on invocation of make in OBJ directory
961da177e4SLinus Torvalds# KBUILD_SRC is not intended to be used by the regular user (for now)
971da177e4SLinus Torvaldsifeq ($(KBUILD_SRC),)
981da177e4SLinus Torvalds
991da177e4SLinus Torvalds# OK, Make called in directory where kernel src resides
1001da177e4SLinus Torvalds# Do we want to locate output files in a separate directory?
1011da177e4SLinus Torvaldsifdef O
1021da177e4SLinus Torvalds  ifeq ("$(origin O)", "command line")
1031da177e4SLinus Torvalds    KBUILD_OUTPUT := $(O)
1041da177e4SLinus Torvalds  endif
1051da177e4SLinus Torvaldsendif
1061da177e4SLinus Torvalds
1071da177e4SLinus Torvalds# That's our default target when none is given on the command line
1084f193362SPaul SmithPHONY := _all
1091da177e4SLinus Torvalds_all:
1101da177e4SLinus Torvalds
1111da177e4SLinus Torvaldsifneq ($(KBUILD_OUTPUT),)
1121da177e4SLinus Torvalds# Invoke a second make in the output directory, passing relevant variables
1131da177e4SLinus Torvalds# check that the output directory actually exists
1141da177e4SLinus Torvaldssaved-output := $(KBUILD_OUTPUT)
1151da177e4SLinus TorvaldsKBUILD_OUTPUT := $(shell cd $(KBUILD_OUTPUT) && /bin/pwd)
1161da177e4SLinus Torvalds$(if $(KBUILD_OUTPUT),, \
1171da177e4SLinus Torvalds     $(error output directory "$(saved-output)" does not exist))
1184f1127e2SSam Ravnborg# Check that OUTPUT directory is not the same as where we have kernel src
1194f1127e2SSam Ravnborg$(if $(filter-out $(KBUILD_OUTPUT),$(shell /bin/pwd)),, \
1204f1127e2SSam Ravnborg     $(error Output directory (O=...) specifies kernel src dir))
1211da177e4SLinus Torvalds
122*0b35786dSMilton MillerPHONY += $(MAKECMDGOALS) sub-make
123*0b35786dSMilton Miller
124*0b35786dSMilton Miller$(filter-out _all sub-make,$(MAKECMDGOALS)) _all: sub-make
125*0b35786dSMilton Miller	$(Q)@:
126*0b35786dSMilton Miller
127*0b35786dSMilton Millersub-make: FORCE
1281da177e4SLinus Torvalds	$(if $(KBUILD_VERBOSE:1=),@)$(MAKE) -C $(KBUILD_OUTPUT) \
12923a45e2cSSam Ravnborg	KBUILD_SRC=$(CURDIR) \
130*0b35786dSMilton Miller	KBUILD_EXTMOD="$(KBUILD_EXTMOD)" -f $(CURDIR)/Makefile \
131*0b35786dSMilton Miller	$(filter-out _all sub-make,$(MAKECMDGOALS))
1321da177e4SLinus Torvalds
1331da177e4SLinus Torvalds# Leave processing to above invocation of make
1341da177e4SLinus Torvaldsskip-makefile := 1
1351da177e4SLinus Torvaldsendif # ifneq ($(KBUILD_OUTPUT),)
1361da177e4SLinus Torvaldsendif # ifeq ($(KBUILD_SRC),)
1371da177e4SLinus Torvalds
1381da177e4SLinus Torvalds# We process the rest of the Makefile if this is the final invocation of make
1391da177e4SLinus Torvaldsifeq ($(skip-makefile),)
1401da177e4SLinus Torvalds
1411da177e4SLinus Torvalds# If building an external module we do not care about the all: rule
1421da177e4SLinus Torvalds# but instead _all depend on modules
1434f193362SPaul SmithPHONY += all
1441da177e4SLinus Torvaldsifeq ($(KBUILD_EXTMOD),)
1451da177e4SLinus Torvalds_all: all
1461da177e4SLinus Torvaldselse
1471da177e4SLinus Torvalds_all: modules
1481da177e4SLinus Torvaldsendif
1491da177e4SLinus Torvalds
1501da177e4SLinus Torvaldssrctree		:= $(if $(KBUILD_SRC),$(KBUILD_SRC),$(CURDIR))
1511da177e4SLinus TorvaldsTOPDIR		:= $(srctree)
1521da177e4SLinus Torvalds# FIXME - TOPDIR is obsolete, use srctree/objtree
1531da177e4SLinus Torvaldsobjtree		:= $(CURDIR)
1541da177e4SLinus Torvaldssrc		:= $(srctree)
1551da177e4SLinus Torvaldsobj		:= $(objtree)
1561da177e4SLinus Torvalds
1570f558c33SMattia DongiliVPATH		:= $(srctree)$(if $(KBUILD_EXTMOD),:$(KBUILD_EXTMOD))
1581da177e4SLinus Torvalds
1591da177e4SLinus Torvaldsexport srctree objtree VPATH TOPDIR
1601da177e4SLinus Torvalds
1611da177e4SLinus Torvalds
1621da177e4SLinus Torvalds# SUBARCH tells the usermode build what the underlying arch is.  That is set
1631da177e4SLinus Torvalds# first, and if a usermode build is happening, the "ARCH=um" on the command
1641da177e4SLinus Torvalds# line overrides the setting of ARCH below.  If a native build is happening,
1651da177e4SLinus Torvalds# then ARCH is assigned, getting whatever value it gets normally, and
1661da177e4SLinus Torvalds# SUBARCH is subsequently ignored.
1671da177e4SLinus Torvalds
1681da177e4SLinus TorvaldsSUBARCH := $(shell uname -m | sed -e s/i.86/i386/ -e s/sun4u/sparc64/ \
1691da177e4SLinus Torvalds				  -e s/arm.*/arm/ -e s/sa110/arm/ \
17039990b5eSLinus Torvalds				  -e s/s390x/s390/ -e s/parisc64/parisc/ \
1718999257cSMartin Michlmayr				  -e s/ppc.*/powerpc/ -e s/mips.*/mips/ )
1721da177e4SLinus Torvalds
1731da177e4SLinus Torvalds# Cross compiling and selecting different set of gcc/bin-utils
1741da177e4SLinus Torvalds# ---------------------------------------------------------------------------
1751da177e4SLinus Torvalds#
1761da177e4SLinus Torvalds# When performing cross compilation for other architectures ARCH shall be set
1771da177e4SLinus Torvalds# to the target architecture. (See arch/* for the possibilities).
1781da177e4SLinus Torvalds# ARCH can be set during invocation of make:
1791da177e4SLinus Torvalds# make ARCH=ia64
1801da177e4SLinus Torvalds# Another way is to have ARCH set in the environment.
1811da177e4SLinus Torvalds# The default ARCH is the host where make is executed.
1821da177e4SLinus Torvalds
1831da177e4SLinus Torvalds# CROSS_COMPILE specify the prefix used for all executables used
1841da177e4SLinus Torvalds# during compilation. Only gcc and related bin-utils executables
1851da177e4SLinus Torvalds# are prefixed with $(CROSS_COMPILE).
1861da177e4SLinus Torvalds# CROSS_COMPILE can be set on the command line
1871da177e4SLinus Torvalds# make CROSS_COMPILE=ia64-linux-
1881da177e4SLinus Torvalds# Alternatively CROSS_COMPILE can be set in the environment.
1891da177e4SLinus Torvalds# Default value for CROSS_COMPILE is not to prefix executables
1901da177e4SLinus Torvalds# Note: Some architectures assign CROSS_COMPILE in their arch/*/Makefile
1911da177e4SLinus Torvalds
1921da177e4SLinus TorvaldsARCH		?= $(SUBARCH)
1931da177e4SLinus TorvaldsCROSS_COMPILE	?=
1941da177e4SLinus Torvalds
1951da177e4SLinus Torvalds# Architecture as present in compile.h
1961da177e4SLinus TorvaldsUTS_MACHINE 	:= $(ARCH)
1976752ed90SThomas GleixnerSRCARCH 	:= $(ARCH)
1981da177e4SLinus Torvalds
19914cdd3c4SRoman ZippelKCONFIG_CONFIG	?= .config
20014cdd3c4SRoman Zippel
2011da177e4SLinus Torvalds# SHELL used by kbuild
2021da177e4SLinus TorvaldsCONFIG_SHELL := $(shell if [ -x "$$BASH" ]; then echo $$BASH; \
2031da177e4SLinus Torvalds	  else if [ -x /bin/bash ]; then echo /bin/bash; \
2041da177e4SLinus Torvalds	  else echo sh; fi ; fi)
2051da177e4SLinus Torvalds
2061da177e4SLinus TorvaldsHOSTCC       = gcc
2071da177e4SLinus TorvaldsHOSTCXX      = g++
2081da177e4SLinus TorvaldsHOSTCFLAGS   = -Wall -Wstrict-prototypes -O2 -fomit-frame-pointer
2091da177e4SLinus TorvaldsHOSTCXXFLAGS = -O2
2101da177e4SLinus Torvalds
2111da177e4SLinus Torvalds# Decide whether to build built-in, modular, or both.
2121da177e4SLinus Torvalds# Normally, just do built-in.
2131da177e4SLinus Torvalds
2141da177e4SLinus TorvaldsKBUILD_MODULES :=
2151da177e4SLinus TorvaldsKBUILD_BUILTIN := 1
2161da177e4SLinus Torvalds
2171da177e4SLinus Torvalds#	If we have only "make modules", don't compile built-in objects.
2181da177e4SLinus Torvalds#	When we're building modules with modversions, we need to consider
2191da177e4SLinus Torvalds#	the built-in objects during the descend as well, in order to
2201da177e4SLinus Torvalds#	make sure the checksums are up to date before we record them.
2211da177e4SLinus Torvalds
2221da177e4SLinus Torvaldsifeq ($(MAKECMDGOALS),modules)
2231da177e4SLinus Torvalds  KBUILD_BUILTIN := $(if $(CONFIG_MODVERSIONS),1)
2241da177e4SLinus Torvaldsendif
2251da177e4SLinus Torvalds
2261da177e4SLinus Torvalds#	If we have "make <whatever> modules", compile modules
2271da177e4SLinus Torvalds#	in addition to whatever we do anyway.
2281da177e4SLinus Torvalds#	Just "make" or "make all" shall build modules as well
2291da177e4SLinus Torvalds
2301da177e4SLinus Torvaldsifneq ($(filter all _all modules,$(MAKECMDGOALS)),)
2311da177e4SLinus Torvalds  KBUILD_MODULES := 1
2321da177e4SLinus Torvaldsendif
2331da177e4SLinus Torvalds
2341da177e4SLinus Torvaldsifeq ($(MAKECMDGOALS),)
2351da177e4SLinus Torvalds  KBUILD_MODULES := 1
2361da177e4SLinus Torvaldsendif
2371da177e4SLinus Torvalds
238e579d351SSam Ravnborgexport KBUILD_MODULES KBUILD_BUILTIN
2391da177e4SLinus Torvaldsexport KBUILD_CHECKSRC KBUILD_SRC KBUILD_EXTMOD
2401da177e4SLinus Torvalds
2411da177e4SLinus Torvalds# Beautify output
2421da177e4SLinus Torvalds# ---------------------------------------------------------------------------
2431da177e4SLinus Torvalds#
2441da177e4SLinus Torvalds# Normally, we echo the whole command before executing it. By making
2451da177e4SLinus Torvalds# that echo $($(quiet)$(cmd)), we now have the possibility to set
2461da177e4SLinus Torvalds# $(quiet) to choose other forms of output instead, e.g.
2471da177e4SLinus Torvalds#
2481da177e4SLinus Torvalds#         quiet_cmd_cc_o_c = Compiling $(RELDIR)/$@
2491da177e4SLinus Torvalds#         cmd_cc_o_c       = $(CC) $(c_flags) -c -o $@ $<
2501da177e4SLinus Torvalds#
2511da177e4SLinus Torvalds# If $(quiet) is empty, the whole command will be printed.
2521da177e4SLinus Torvalds# If it is set to "quiet_", only the short version will be printed.
253070b98bfSSam Ravnborg# If it is set to "silent_", nothing will be printed at all, since
2541da177e4SLinus Torvalds# the variable $(silent_cmd_cc_o_c) doesn't exist.
2551da177e4SLinus Torvalds#
256a58a414fSAdrian Bunk# A simple variant is to prefix commands with $(Q) - that's useful
2571da177e4SLinus Torvalds# for commands that shall be hidden in non-verbose mode.
2581da177e4SLinus Torvalds#
2591da177e4SLinus Torvalds#	$(Q)ln $@ :<
2601da177e4SLinus Torvalds#
2611da177e4SLinus Torvalds# If KBUILD_VERBOSE equals 0 then the above command will be hidden.
2621da177e4SLinus Torvalds# If KBUILD_VERBOSE equals 1 then the above command is displayed.
2631da177e4SLinus Torvalds
2641da177e4SLinus Torvaldsifeq ($(KBUILD_VERBOSE),1)
2651da177e4SLinus Torvalds  quiet =
2661da177e4SLinus Torvalds  Q =
2671da177e4SLinus Torvaldselse
2681da177e4SLinus Torvalds  quiet=quiet_
2691da177e4SLinus Torvalds  Q = @
2701da177e4SLinus Torvaldsendif
2711da177e4SLinus Torvalds
2721da177e4SLinus Torvalds# If the user is running make -s (silent mode), suppress echoing of
2731da177e4SLinus Torvalds# commands
2741da177e4SLinus Torvalds
2751da177e4SLinus Torvaldsifneq ($(findstring s,$(MAKEFLAGS)),)
2761da177e4SLinus Torvalds  quiet=silent_
2771da177e4SLinus Torvaldsendif
2781da177e4SLinus Torvalds
2791da177e4SLinus Torvaldsexport quiet Q KBUILD_VERBOSE
2801da177e4SLinus Torvalds
2811da177e4SLinus Torvalds
2821da177e4SLinus Torvalds# Look for make include files relative to root of kernel src
2831da177e4SLinus TorvaldsMAKEFLAGS += --include-dir=$(srctree)
2841da177e4SLinus Torvalds
28515964864SOleg Verych# We need some generic definitions.
2862a691470SSam Ravnborginclude $(srctree)/scripts/Kbuild.include
2878ec4b4ffSSam Ravnborg
2881da177e4SLinus Torvalds# Make variables (CC, etc...)
2891da177e4SLinus Torvalds
2901da177e4SLinus TorvaldsAS		= $(CROSS_COMPILE)as
2911da177e4SLinus TorvaldsLD		= $(CROSS_COMPILE)ld
2921da177e4SLinus TorvaldsCC		= $(CROSS_COMPILE)gcc
2931da177e4SLinus TorvaldsCPP		= $(CC) -E
2941da177e4SLinus TorvaldsAR		= $(CROSS_COMPILE)ar
2951da177e4SLinus TorvaldsNM		= $(CROSS_COMPILE)nm
2961da177e4SLinus TorvaldsSTRIP		= $(CROSS_COMPILE)strip
2971da177e4SLinus TorvaldsOBJCOPY		= $(CROSS_COMPILE)objcopy
2981da177e4SLinus TorvaldsOBJDUMP		= $(CROSS_COMPILE)objdump
2991da177e4SLinus TorvaldsAWK		= awk
3001da177e4SLinus TorvaldsGENKSYMS	= scripts/genksyms/genksyms
3011da177e4SLinus TorvaldsDEPMOD		= /sbin/depmod
3021da177e4SLinus TorvaldsKALLSYMS	= scripts/kallsyms
3031da177e4SLinus TorvaldsPERL		= perl
3041da177e4SLinus TorvaldsCHECK		= sparse
3051da177e4SLinus Torvalds
306af4ca457SAl ViroCHECKFLAGS     := -D__linux__ -Dlinux -D__STDC__ -Dunix -D__unix__ -Wbitwise $(CF)
3071da177e4SLinus TorvaldsMODFLAGS	= -DMODULE
3081da177e4SLinus TorvaldsCFLAGS_MODULE   = $(MODFLAGS)
3091da177e4SLinus TorvaldsAFLAGS_MODULE   = $(MODFLAGS)
310114f5157SRoland McGrathLDFLAGS_MODULE  =
3111da177e4SLinus TorvaldsCFLAGS_KERNEL	=
3121da177e4SLinus TorvaldsAFLAGS_KERNEL	=
3131da177e4SLinus Torvalds
3141da177e4SLinus Torvalds
3151da177e4SLinus Torvalds# Use LINUXINCLUDE when you must reference the include/ directory.
3161da177e4SLinus Torvalds# Needed to be compatible with the O= option
3171da177e4SLinus TorvaldsLINUXINCLUDE    := -Iinclude \
3182dd34b48SRussell King                   $(if $(KBUILD_SRC),-Iinclude2 -I$(srctree)/include) \
319e623a3b8SZachary Amsden		   -include include/linux/autoconf.h
3201da177e4SLinus Torvalds
3211da177e4SLinus TorvaldsCPPFLAGS        := -D__KERNEL__ $(LINUXINCLUDE)
3221da177e4SLinus Torvalds
3233c521e06SOlaf HeringCFLAGS          := -Wall -Wundef -Wstrict-prototypes -Wno-trigraphs \
32494bed2a9SDave Jones		   -fno-strict-aliasing -fno-common \
32594bed2a9SDave Jones		   -Werror-implicit-function-declaration
3261da177e4SLinus TorvaldsAFLAGS          := -D__ASSEMBLY__
3271da177e4SLinus Torvalds
328f1d28fb0SRoman Zippel# Read KERNELRELEASE from include/config/kernel.release (if it exists)
329f1d28fb0SRoman ZippelKERNELRELEASE = $(shell cat include/config/kernel.release 2> /dev/null)
3302244cbd8SSam RavnborgKERNELVERSION = $(VERSION).$(PATCHLEVEL).$(SUBLEVEL)$(EXTRAVERSION)
331cb58455cSSam Ravnborg
332070b98bfSSam Ravnborgexport VERSION PATCHLEVEL SUBLEVEL KERNELRELEASE KERNELVERSION
3336752ed90SThomas Gleixnerexport ARCH SRCARCH CONFIG_SHELL HOSTCC HOSTCFLAGS CROSS_COMPILE AS LD CC
334070b98bfSSam Ravnborgexport CPP AR NM STRIP OBJCOPY OBJDUMP MAKE AWK GENKSYMS PERL UTS_MACHINE
335070b98bfSSam Ravnborgexport HOSTCXX HOSTCXXFLAGS LDFLAGS_MODULE CHECK CHECKFLAGS
3361da177e4SLinus Torvalds
3371da177e4SLinus Torvaldsexport CPPFLAGS NOSTDINC_FLAGS LINUXINCLUDE OBJCOPYFLAGS LDFLAGS
3381da177e4SLinus Torvaldsexport CFLAGS CFLAGS_KERNEL CFLAGS_MODULE
3391da177e4SLinus Torvaldsexport AFLAGS AFLAGS_KERNEL AFLAGS_MODULE
3401da177e4SLinus Torvalds
3411da177e4SLinus Torvalds# When compiling out-of-tree modules, put MODVERDIR in the module
3421da177e4SLinus Torvalds# tree rather than in the kernel tree. The kernel tree might
3431da177e4SLinus Torvalds# even be read-only.
3441da177e4SLinus Torvaldsexport MODVERDIR := $(if $(KBUILD_EXTMOD),$(firstword $(KBUILD_EXTMOD))/).tmp_versions
3451da177e4SLinus Torvalds
3461da177e4SLinus Torvalds# Files to ignore in find ... statements
3471da177e4SLinus Torvalds
348406119f4STrond 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
349406119f4STrond Myklebustexport RCS_TAR_IGNORE := --exclude SCCS --exclude BitKeeper --exclude .svn --exclude CVS --exclude .pc --exclude .hg --exclude .git
3501da177e4SLinus Torvalds
3511da177e4SLinus Torvalds# ===========================================================================
3521da177e4SLinus Torvalds# Rules shared between *config targets and build targets
3531da177e4SLinus Torvalds
3541da177e4SLinus Torvalds# Basic helpers built in scripts/
3554f193362SPaul SmithPHONY += scripts_basic
3561da177e4SLinus Torvaldsscripts_basic:
3571da177e4SLinus Torvalds	$(Q)$(MAKE) $(build)=scripts/basic
3581da177e4SLinus Torvalds
359cd05e6bdSJan Beulich# To avoid any implicit rule to kick in, define an empty command.
360cd05e6bdSJan Beulichscripts/basic/%: scripts_basic ;
361cd05e6bdSJan Beulich
3624f193362SPaul SmithPHONY += outputmakefile
363fd5f0cd6SJan Beulich# outputmakefile generates a Makefile in the output directory, if using a
364fd5f0cd6SJan Beulich# separate output directory. This allows convenient use of make in the
365fd5f0cd6SJan Beulich# output directory.
3661da177e4SLinus Torvaldsoutputmakefile:
367fd5f0cd6SJan Beulichifneq ($(KBUILD_SRC),)
368fd5f0cd6SJan Beulich	$(Q)$(CONFIG_SHELL) $(srctree)/scripts/mkmakefile \
369fd5f0cd6SJan Beulich	    $(srctree) $(objtree) $(VERSION) $(PATCHLEVEL)
370fd5f0cd6SJan Beulichendif
3711da177e4SLinus Torvalds
3721da177e4SLinus Torvalds# To make sure we do not include .config for any of the *config targets
3731da177e4SLinus Torvalds# catch them early, and hand them over to scripts/kconfig/Makefile
3741da177e4SLinus Torvalds# It is allowed to specify more targets when calling make, including
3751da177e4SLinus Torvalds# mixing *config targets and build targets.
3761da177e4SLinus Torvalds# For example 'make oldconfig all'.
3771da177e4SLinus Torvalds# Detect when mixed targets is specified, and make a second invocation
3781da177e4SLinus Torvalds# of make so .config is not included in this case either (for *config).
3791da177e4SLinus Torvalds
3803eb3c740SRoman Zippelno-dot-config-targets := clean mrproper distclean \
381c30a02e0SRoman Zippel			 cscope TAGS tags help %docs check% \
3823eb3c740SRoman Zippel			 include/linux/version.h headers_% \
3833eb3c740SRoman Zippel			 kernelrelease kernelversion
3841da177e4SLinus Torvalds
3851da177e4SLinus Torvaldsconfig-targets := 0
3861da177e4SLinus Torvaldsmixed-targets  := 0
3871da177e4SLinus Torvaldsdot-config     := 1
3881da177e4SLinus Torvalds
3891da177e4SLinus Torvaldsifneq ($(filter $(no-dot-config-targets), $(MAKECMDGOALS)),)
3901da177e4SLinus Torvalds	ifeq ($(filter-out $(no-dot-config-targets), $(MAKECMDGOALS)),)
3911da177e4SLinus Torvalds		dot-config := 0
3921da177e4SLinus Torvalds	endif
3931da177e4SLinus Torvaldsendif
3941da177e4SLinus Torvalds
3951da177e4SLinus Torvaldsifeq ($(KBUILD_EXTMOD),)
3961da177e4SLinus Torvalds        ifneq ($(filter config %config,$(MAKECMDGOALS)),)
3971da177e4SLinus Torvalds                config-targets := 1
3981da177e4SLinus Torvalds                ifneq ($(filter-out config %config,$(MAKECMDGOALS)),)
3991da177e4SLinus Torvalds                        mixed-targets := 1
4001da177e4SLinus Torvalds                endif
4011da177e4SLinus Torvalds        endif
4021da177e4SLinus Torvaldsendif
4031da177e4SLinus Torvalds
4041da177e4SLinus Torvaldsifeq ($(mixed-targets),1)
4051da177e4SLinus Torvalds# ===========================================================================
4061da177e4SLinus Torvalds# We're called with mixed targets (*config and build targets).
4071da177e4SLinus Torvalds# Handle them one by one.
4081da177e4SLinus Torvalds
4091da177e4SLinus Torvalds%:: FORCE
4101da177e4SLinus Torvalds	$(Q)$(MAKE) -C $(srctree) KBUILD_SRC= $@
4111da177e4SLinus Torvalds
4121da177e4SLinus Torvaldselse
4131da177e4SLinus Torvaldsifeq ($(config-targets),1)
4141da177e4SLinus Torvalds# ===========================================================================
4151da177e4SLinus Torvalds# *config targets only - make sure prerequisites are updated, and descend
4161da177e4SLinus Torvalds# in scripts/kconfig to make the *config target
4171da177e4SLinus Torvalds
4181da177e4SLinus Torvalds# Read arch specific Makefile to set KBUILD_DEFCONFIG as needed.
4191da177e4SLinus Torvalds# KBUILD_DEFCONFIG may point out an alternative default configuration
4201da177e4SLinus Torvalds# used for 'make defconfig'
4211da177e4SLinus Torvaldsinclude $(srctree)/arch/$(ARCH)/Makefile
4221da177e4SLinus Torvaldsexport KBUILD_DEFCONFIG
4231da177e4SLinus Torvalds
424cd05e6bdSJan Beulichconfig %config: scripts_basic outputmakefile FORCE
425c955ccafSRoman Zippel	$(Q)mkdir -p include/linux include/config
4261da177e4SLinus Torvalds	$(Q)$(MAKE) $(build)=scripts/kconfig $@
4271da177e4SLinus Torvalds
4281da177e4SLinus Torvaldselse
4291da177e4SLinus Torvalds# ===========================================================================
4301da177e4SLinus Torvalds# Build targets only - this includes vmlinux, arch specific targets, clean
4311da177e4SLinus Torvalds# targets and others. In general all targets except *config targets.
4321da177e4SLinus Torvalds
4331da177e4SLinus Torvaldsifeq ($(KBUILD_EXTMOD),)
4341da177e4SLinus Torvalds# Additional helpers built in scripts/
4351da177e4SLinus Torvalds# Carefully list dependencies so we do not try to build scripts twice
436070b98bfSSam Ravnborg# in parallel
4374f193362SPaul SmithPHONY += scripts
4382e3646e5SRoman Zippelscripts: scripts_basic include/config/auto.conf
4391da177e4SLinus Torvalds	$(Q)$(MAKE) $(build)=$(@)
4401da177e4SLinus Torvalds
4411da177e4SLinus Torvalds# Objects we will link into vmlinux / subdirs we need to visit
4421da177e4SLinus Torvaldsinit-y		:= init/
4431da177e4SLinus Torvaldsdrivers-y	:= drivers/ sound/
4441da177e4SLinus Torvaldsnet-y		:= net/
4451da177e4SLinus Torvaldslibs-y		:= lib/
4461da177e4SLinus Torvaldscore-y		:= usr/
4471da177e4SLinus Torvaldsendif # KBUILD_EXTMOD
4481da177e4SLinus Torvalds
4491da177e4SLinus Torvaldsifeq ($(dot-config),1)
4509ee4e336SSam Ravnborg# Read in config
4519ee4e336SSam Ravnborg-include include/config/auto.conf
4521da177e4SLinus Torvalds
4539ee4e336SSam Ravnborgifeq ($(KBUILD_EXTMOD),)
4541da177e4SLinus Torvalds# Read in dependencies to all Kconfig* files, make sure to run
4551da177e4SLinus Torvalds# oldconfig if changes are detected.
456c955ccafSRoman Zippel-include include/config/auto.conf.cmd
4571da177e4SLinus Torvalds
4581da177e4SLinus Torvalds# To avoid any implicit rule to kick in, define an empty command
45914cdd3c4SRoman Zippel$(KCONFIG_CONFIG) include/config/auto.conf.cmd: ;
4601da177e4SLinus Torvalds
461c955ccafSRoman Zippel# If .config is newer than include/config/auto.conf, someone tinkered
462752625cfSSam Ravnborg# with it and forgot to run make oldconfig.
463070b98bfSSam Ravnborg# if auto.conf.cmd is missing then we are probably in a cleaned tree so
464752625cfSSam Ravnborg# we execute the config step to be sure to catch updated Kconfig files
46514cdd3c4SRoman Zippelinclude/config/auto.conf: $(KCONFIG_CONFIG) include/config/auto.conf.cmd
4661da177e4SLinus Torvalds	$(Q)$(MAKE) -f $(srctree)/Makefile silentoldconfig
4671da177e4SLinus Torvaldselse
4689ee4e336SSam Ravnborg# external modules needs include/linux/autoconf.h and include/config/auto.conf
4699ee4e336SSam Ravnborg# but do not care if they are up-to-date. Use auto.conf to trigger the test
4709ee4e336SSam RavnborgPHONY += include/config/auto.conf
4719ee4e336SSam Ravnborg
4729ee4e336SSam Ravnborginclude/config/auto.conf:
4739ee4e336SSam Ravnborg	$(Q)test -e include/linux/autoconf.h -a -e $@ || (		\
4749ee4e336SSam Ravnborg	echo;								\
4759ee4e336SSam Ravnborg	echo "  ERROR: Kernel configuration is invalid.";		\
4769ee4e336SSam Ravnborg	echo "         include/linux/autoconf.h or $@ are missing.";	\
4779ee4e336SSam Ravnborg	echo "         Run 'make oldconfig && make prepare' on kernel src to fix it.";	\
4789ee4e336SSam Ravnborg	echo;								\
4799ee4e336SSam Ravnborg	/bin/false)
4809ee4e336SSam Ravnborg
4819ee4e336SSam Ravnborgendif # KBUILD_EXTMOD
482c955ccafSRoman Zippel
4831da177e4SLinus Torvaldselse
4841da177e4SLinus Torvalds# Dummy target needed, because used as prerequisite
485c955ccafSRoman Zippelinclude/config/auto.conf: ;
4869ee4e336SSam Ravnborgendif # $(dot-config)
4871da177e4SLinus Torvalds
4881da177e4SLinus Torvalds# The all: target is the default when no target is given on the
4891da177e4SLinus Torvalds# command line.
4901da177e4SLinus Torvalds# This allow a user to issue only 'make' to build a kernel including modules
491070b98bfSSam Ravnborg# Defaults vmlinux but it is usually overridden in the arch makefile
4921da177e4SLinus Torvaldsall: vmlinux
4931da177e4SLinus Torvalds
4941da177e4SLinus Torvaldsifdef CONFIG_CC_OPTIMIZE_FOR_SIZE
4951da177e4SLinus TorvaldsCFLAGS		+= -Os
4961da177e4SLinus Torvaldselse
4971da177e4SLinus TorvaldsCFLAGS		+= -O2
4981da177e4SLinus Torvaldsendif
4991da177e4SLinus Torvalds
500c9eca0b9SSam Ravnborginclude $(srctree)/arch/$(ARCH)/Makefile
501c9eca0b9SSam Ravnborg
5021da177e4SLinus Torvaldsifdef CONFIG_FRAME_POINTER
503af332aa3SAdrian BunkCFLAGS		+= -fno-omit-frame-pointer -fno-optimize-sibling-calls
5041da177e4SLinus Torvaldselse
5051da177e4SLinus TorvaldsCFLAGS		+= -fomit-frame-pointer
5061da177e4SLinus Torvaldsendif
5071da177e4SLinus Torvalds
5081da177e4SLinus Torvaldsifdef CONFIG_DEBUG_INFO
5091da177e4SLinus TorvaldsCFLAGS		+= -g
510cf851aa7SRoland McGrathAFLAGS		+= -gdwarf-2
5111da177e4SLinus Torvaldsendif
5121da177e4SLinus Torvalds
513c9eca0b9SSam Ravnborg# Force gcc to behave correct even for buggy distributions
514c9eca0b9SSam RavnborgCFLAGS          += $(call cc-option, -fno-stack-protector)
5151da177e4SLinus Torvalds
516e8e69931SSam Ravnborg# arch Makefile may override CC so keep this after arch Makefile is included
517e8f5bdb0SRik van RielNOSTDINC_FLAGS += -nostdinc -isystem $(shell $(CC) -print-file-name=include)
518e8e69931SSam RavnborgCHECKFLAGS     += $(NOSTDINC_FLAGS)
519e8e69931SSam Ravnborg
5201da177e4SLinus Torvalds# warn about C99 declaration after statement
5211da177e4SLinus TorvaldsCFLAGS += $(call cc-option,-Wdeclaration-after-statement,)
5221da177e4SLinus Torvalds
523070b98bfSSam Ravnborg# disable pointer signed / unsigned warnings in gcc 4.0
5241da177e4SLinus TorvaldsCFLAGS += $(call cc-option,-Wno-pointer-sign,)
5251da177e4SLinus Torvalds
52618991197SRoland McGrath# Use --build-id when available.
52718991197SRoland McGrathLDFLAGS_BUILD_ID = $(patsubst -Wl$(comma)%,%,\
52818991197SRoland McGrath			      $(call ld-option, -Wl$(comma)--build-id,))
52918991197SRoland McGrathLDFLAGS_MODULE += $(LDFLAGS_BUILD_ID)
53018991197SRoland McGrathLDFLAGS_vmlinux += $(LDFLAGS_BUILD_ID)
53118991197SRoland McGrath
5321da177e4SLinus Torvalds# Default kernel image to build when no specific target is given.
5331da177e4SLinus Torvalds# KBUILD_IMAGE may be overruled on the command line or
5341da177e4SLinus Torvalds# set in the environment
5351da177e4SLinus Torvalds# Also any assignments in arch/$(ARCH)/Makefile take precedence over
5361da177e4SLinus Torvalds# this default value
5371da177e4SLinus Torvaldsexport KBUILD_IMAGE ?= vmlinux
5381da177e4SLinus Torvalds
5391da177e4SLinus Torvalds#
5401da177e4SLinus Torvalds# INSTALL_PATH specifies where to place the updated kernel and system map
5411da177e4SLinus Torvalds# images. Default is /boot, but you can set it to other values
5421da177e4SLinus Torvaldsexport	INSTALL_PATH ?= /boot
5431da177e4SLinus Torvalds
5441da177e4SLinus Torvalds#
5451da177e4SLinus Torvalds# INSTALL_MOD_PATH specifies a prefix to MODLIB for module directory
5461da177e4SLinus Torvalds# relocations required by build roots.  This is not defined in the
547070b98bfSSam Ravnborg# makefile but the argument can be passed to make if needed.
5481da177e4SLinus Torvalds#
5491da177e4SLinus Torvalds
550df9df036SSam RavnborgMODLIB	= $(INSTALL_MOD_PATH)/lib/modules/$(KERNELRELEASE)
5511da177e4SLinus Torvaldsexport MODLIB
5521da177e4SLinus Torvalds
553ac031f26STheodore Ts'o#
554ac031f26STheodore Ts'o#  INSTALL_MOD_STRIP, if defined, will cause modules to be
555ac031f26STheodore Ts'o#  stripped after they are installed.  If INSTALL_MOD_STRIP is '1', then
556ac031f26STheodore Ts'o#  the default option --strip-debug will be used.  Otherwise,
557ac031f26STheodore Ts'o#  INSTALL_MOD_STRIP will used as the options to the strip command.
558ac031f26STheodore Ts'o
559ac031f26STheodore Ts'oifdef INSTALL_MOD_STRIP
560ac031f26STheodore Ts'oifeq ($(INSTALL_MOD_STRIP),1)
561e340221aSAndreas Schwabmod_strip_cmd = $(STRIP) --strip-debug
562ac031f26STheodore Ts'oelse
563ac031f26STheodore Ts'omod_strip_cmd = $(STRIP) $(INSTALL_MOD_STRIP)
564ac031f26STheodore Ts'oendif # INSTALL_MOD_STRIP=1
565ac031f26STheodore Ts'oelse
566ac031f26STheodore Ts'omod_strip_cmd = true
567ac031f26STheodore Ts'oendif # INSTALL_MOD_STRIP
568ac031f26STheodore Ts'oexport mod_strip_cmd
569ac031f26STheodore Ts'o
5701da177e4SLinus Torvalds
5711da177e4SLinus Torvaldsifeq ($(KBUILD_EXTMOD),)
5723a65dfe8SJens Axboecore-y		+= kernel/ mm/ fs/ ipc/ security/ crypto/ block/
5731da177e4SLinus Torvalds
5741da177e4SLinus Torvaldsvmlinux-dirs	:= $(patsubst %/,%,$(filter %/, $(init-y) $(init-m) \
5751da177e4SLinus Torvalds		     $(core-y) $(core-m) $(drivers-y) $(drivers-m) \
5761da177e4SLinus Torvalds		     $(net-y) $(net-m) $(libs-y) $(libs-m)))
5771da177e4SLinus Torvalds
5781da177e4SLinus Torvaldsvmlinux-alldirs	:= $(sort $(vmlinux-dirs) $(patsubst %/,%,$(filter %/, \
5791da177e4SLinus Torvalds		     $(init-n) $(init-) \
5801da177e4SLinus Torvalds		     $(core-n) $(core-) $(drivers-n) $(drivers-) \
5811da177e4SLinus Torvalds		     $(net-n)  $(net-)  $(libs-n)    $(libs-))))
5821da177e4SLinus Torvalds
5831da177e4SLinus Torvaldsinit-y		:= $(patsubst %/, %/built-in.o, $(init-y))
5841da177e4SLinus Torvaldscore-y		:= $(patsubst %/, %/built-in.o, $(core-y))
5851da177e4SLinus Torvaldsdrivers-y	:= $(patsubst %/, %/built-in.o, $(drivers-y))
5861da177e4SLinus Torvaldsnet-y		:= $(patsubst %/, %/built-in.o, $(net-y))
5871da177e4SLinus Torvaldslibs-y1		:= $(patsubst %/, %/lib.a, $(libs-y))
5881da177e4SLinus Torvaldslibs-y2		:= $(patsubst %/, %/built-in.o, $(libs-y))
5891da177e4SLinus Torvaldslibs-y		:= $(libs-y1) $(libs-y2)
5901da177e4SLinus Torvalds
5911da177e4SLinus Torvalds# Build vmlinux
5921da177e4SLinus Torvalds# ---------------------------------------------------------------------------
593070b98bfSSam Ravnborg# vmlinux is built from the objects selected by $(vmlinux-init) and
5941da177e4SLinus Torvalds# $(vmlinux-main). Most are built-in.o files from top-level directories
5952462566fSUwe Zeisberger# in the kernel tree, others are specified in arch/$(ARCH)/Makefile.
5961da177e4SLinus Torvalds# Ordering when linking is important, and $(vmlinux-init) must be first.
5971da177e4SLinus Torvalds#
5981da177e4SLinus Torvalds# vmlinux
5991da177e4SLinus Torvalds#   ^
6001da177e4SLinus Torvalds#   |
6011da177e4SLinus Torvalds#   +-< $(vmlinux-init)
6021da177e4SLinus Torvalds#   |   +--< init/version.o + more
6031da177e4SLinus Torvalds#   |
6041da177e4SLinus Torvalds#   +--< $(vmlinux-main)
6051da177e4SLinus Torvalds#   |    +--< driver/built-in.o mm/built-in.o + more
6061da177e4SLinus Torvalds#   |
6071da177e4SLinus Torvalds#   +-< kallsyms.o (see description in CONFIG_KALLSYMS section)
6081da177e4SLinus Torvalds#
6091da177e4SLinus Torvalds# vmlinux version (uname -v) cannot be updated during normal
6101da177e4SLinus Torvalds# descending-into-subdirs phase since we do not yet know if we need to
6111da177e4SLinus Torvalds# update vmlinux.
6121da177e4SLinus Torvalds# Therefore this step is delayed until just before final link of vmlinux -
6131da177e4SLinus Torvalds# except in the kallsyms case where it is done just before adding the
6141da177e4SLinus Torvalds# symbols to the kernel.
6151da177e4SLinus Torvalds#
6161da177e4SLinus Torvalds# System.map is generated to document addresses of all kernel symbols
6171da177e4SLinus Torvalds
6181da177e4SLinus Torvaldsvmlinux-init := $(head-y) $(init-y)
6191da177e4SLinus Torvaldsvmlinux-main := $(core-y) $(libs-y) $(drivers-y) $(net-y)
6201da177e4SLinus Torvaldsvmlinux-all  := $(vmlinux-init) $(vmlinux-main)
6216752ed90SThomas Gleixnervmlinux-lds  := arch/$(SRCARCH)/kernel/vmlinux.lds
62285bd2fddSSam Ravnborgexport KBUILD_VMLINUX_OBJS := $(vmlinux-all)
6231da177e4SLinus Torvalds
6241da177e4SLinus Torvalds# Rule to link vmlinux - also used during CONFIG_KALLSYMS
6251da177e4SLinus Torvalds# May be overridden by arch/$(ARCH)/Makefile
6261da177e4SLinus Torvaldsquiet_cmd_vmlinux__ ?= LD      $@
6271da177e4SLinus Torvalds      cmd_vmlinux__ ?= $(LD) $(LDFLAGS) $(LDFLAGS_vmlinux) -o $@ \
6281da177e4SLinus Torvalds      -T $(vmlinux-lds) $(vmlinux-init)                          \
6291da177e4SLinus Torvalds      --start-group $(vmlinux-main) --end-group                  \
630741f98feSSam Ravnborg      $(filter-out $(vmlinux-lds) $(vmlinux-init) $(vmlinux-main) vmlinux.o FORCE ,$^)
6311da177e4SLinus Torvalds
6321da177e4SLinus Torvalds# Generate new vmlinux version
6331da177e4SLinus Torvaldsquiet_cmd_vmlinux_version = GEN     .version
6341da177e4SLinus Torvalds      cmd_vmlinux_version = set -e;                     \
6354e25d8bbSJan Beulich	if [ ! -r .version ]; then			\
6364e25d8bbSJan Beulich	  rm -f .version;				\
6374e25d8bbSJan Beulich	  echo 1 >.version;				\
6384e25d8bbSJan Beulich	else						\
6394e25d8bbSJan Beulich	  mv .version .old_version;			\
6404e25d8bbSJan Beulich	  expr 0$$(cat .old_version) + 1 >.version;	\
6414e25d8bbSJan Beulich	fi;						\
6421da177e4SLinus Torvalds	$(MAKE) $(build)=init
6431da177e4SLinus Torvalds
6441da177e4SLinus Torvalds# Generate System.map
6451da177e4SLinus Torvaldsquiet_cmd_sysmap = SYSMAP
6461da177e4SLinus Torvalds      cmd_sysmap = $(CONFIG_SHELL) $(srctree)/scripts/mksysmap
6471da177e4SLinus Torvalds
6481da177e4SLinus Torvalds# Link of vmlinux
6491da177e4SLinus Torvalds# If CONFIG_KALLSYMS is set .version is already updated
6501da177e4SLinus Torvalds# Generate System.map and verify that the content is consistent
65139ca371cSMark Rustad# Use + in front of the vmlinux_version rule to silent warning with make -j2
65239ca371cSMark Rustad# First command is ':' to allow us to use + in front of the rule
6531da177e4SLinus Torvaldsdefine rule_vmlinux__
65439ca371cSMark Rustad	:
6551da177e4SLinus Torvalds	$(if $(CONFIG_KALLSYMS),,+$(call cmd,vmlinux_version))
6561da177e4SLinus Torvalds
6571da177e4SLinus Torvalds	$(call cmd,vmlinux__)
6581da177e4SLinus Torvalds	$(Q)echo 'cmd_$@ := $(cmd_vmlinux__)' > $(@D)/.$(@F).cmd
6591da177e4SLinus Torvalds
6601da177e4SLinus Torvalds	$(Q)$(if $($(quiet)cmd_sysmap),                                      \
6611da177e4SLinus Torvalds	  echo '  $($(quiet)cmd_sysmap)  System.map' &&)                     \
6621da177e4SLinus Torvalds	$(cmd_sysmap) $@ System.map;                                         \
6631da177e4SLinus Torvalds	if [ $$? -ne 0 ]; then                                               \
6641da177e4SLinus Torvalds		rm -f $@;                                                    \
6651da177e4SLinus Torvalds		/bin/false;                                                  \
6661da177e4SLinus Torvalds	fi;
6671da177e4SLinus Torvalds	$(verify_kallsyms)
6681da177e4SLinus Torvaldsendef
6691da177e4SLinus Torvalds
6701da177e4SLinus Torvalds
6711da177e4SLinus Torvaldsifdef CONFIG_KALLSYMS
6721da177e4SLinus Torvalds# Generate section listing all symbols and add it into vmlinux $(kallsyms.o)
6731da177e4SLinus Torvalds# It's a three stage process:
6741da177e4SLinus Torvalds# o .tmp_vmlinux1 has all symbols and sections, but __kallsyms is
6751da177e4SLinus Torvalds#   empty
6761da177e4SLinus Torvalds#   Running kallsyms on that gives us .tmp_kallsyms1.o with
6771da177e4SLinus Torvalds#   the right size - vmlinux version (uname -v) is updated during this step
6781da177e4SLinus Torvalds# o .tmp_vmlinux2 now has a __kallsyms section of the right size,
6791da177e4SLinus Torvalds#   but due to the added section, some addresses have shifted.
6801da177e4SLinus Torvalds#   From here, we generate a correct .tmp_kallsyms2.o
6811da177e4SLinus Torvalds# o The correct .tmp_kallsyms2.o is linked into the final vmlinux.
6821da177e4SLinus Torvalds# o Verify that the System.map from vmlinux matches the map from
6831da177e4SLinus Torvalds#   .tmp_vmlinux2, just in case we did not generate kallsyms correctly.
6841da177e4SLinus Torvalds# o If CONFIG_KALLSYMS_EXTRA_PASS is set, do an extra pass using
6851da177e4SLinus Torvalds#   .tmp_vmlinux3 and .tmp_kallsyms3.o.  This is only meant as a
6861da177e4SLinus Torvalds#   temporary bypass to allow the kernel to be built while the
6871da177e4SLinus Torvalds#   maintainers work out what went wrong with kallsyms.
6881da177e4SLinus Torvalds
6891da177e4SLinus Torvaldsifdef CONFIG_KALLSYMS_EXTRA_PASS
6901da177e4SLinus Torvaldslast_kallsyms := 3
6911da177e4SLinus Torvaldselse
6921da177e4SLinus Torvaldslast_kallsyms := 2
6931da177e4SLinus Torvaldsendif
6941da177e4SLinus Torvalds
6951da177e4SLinus Torvaldskallsyms.o := .tmp_kallsyms$(last_kallsyms).o
6961da177e4SLinus Torvalds
6971da177e4SLinus Torvaldsdefine verify_kallsyms
6981da177e4SLinus Torvalds	$(Q)$(if $($(quiet)cmd_sysmap),                                      \
6991da177e4SLinus Torvalds	  echo '  $($(quiet)cmd_sysmap)  .tmp_System.map' &&)                \
7001da177e4SLinus Torvalds	  $(cmd_sysmap) .tmp_vmlinux$(last_kallsyms) .tmp_System.map
7011da177e4SLinus Torvalds	$(Q)cmp -s System.map .tmp_System.map ||                             \
7021da177e4SLinus Torvalds		(echo Inconsistent kallsyms data;                            \
7031da177e4SLinus Torvalds		 echo Try setting CONFIG_KALLSYMS_EXTRA_PASS;                \
7041da177e4SLinus Torvalds		 rm .tmp_kallsyms* ; /bin/false )
7051da177e4SLinus Torvaldsendef
7061da177e4SLinus Torvalds
7071da177e4SLinus Torvalds# Update vmlinux version before link
7081da177e4SLinus Torvalds# Use + in front of this rule to silent warning about make -j1
70972ba47c1SSam Ravnborg# First command is ':' to allow us to use + in front of this rule
7101da177e4SLinus Torvaldscmd_ksym_ld = $(cmd_vmlinux__)
7111da177e4SLinus Torvaldsdefine rule_ksym_ld
71272ba47c1SSam Ravnborg	:
7131da177e4SLinus Torvalds	+$(call cmd,vmlinux_version)
7141da177e4SLinus Torvalds	$(call cmd,vmlinux__)
7151da177e4SLinus Torvalds	$(Q)echo 'cmd_$@ := $(cmd_vmlinux__)' > $(@D)/.$(@F).cmd
7161da177e4SLinus Torvaldsendef
7171da177e4SLinus Torvalds
7181da177e4SLinus Torvalds# Generate .S file with all kernel symbols
7191da177e4SLinus Torvaldsquiet_cmd_kallsyms = KSYM    $@
7201da177e4SLinus Torvalds      cmd_kallsyms = $(NM) -n $< | $(KALLSYMS) \
7211da177e4SLinus Torvalds                     $(if $(CONFIG_KALLSYMS_ALL),--all-symbols) > $@
7221da177e4SLinus Torvalds
7231da177e4SLinus Torvalds.tmp_kallsyms1.o .tmp_kallsyms2.o .tmp_kallsyms3.o: %.o: %.S scripts FORCE
7241da177e4SLinus Torvalds	$(call if_changed_dep,as_o_S)
7251da177e4SLinus Torvalds
7261da177e4SLinus Torvalds.tmp_kallsyms%.S: .tmp_vmlinux% $(KALLSYMS)
7271da177e4SLinus Torvalds	$(call cmd,kallsyms)
7281da177e4SLinus Torvalds
7291da177e4SLinus Torvalds# .tmp_vmlinux1 must be complete except kallsyms, so update vmlinux version
7301da177e4SLinus Torvalds.tmp_vmlinux1: $(vmlinux-lds) $(vmlinux-all) FORCE
7311da177e4SLinus Torvalds	$(call if_changed_rule,ksym_ld)
7321da177e4SLinus Torvalds
7331da177e4SLinus Torvalds.tmp_vmlinux2: $(vmlinux-lds) $(vmlinux-all) .tmp_kallsyms1.o FORCE
7341da177e4SLinus Torvalds	$(call if_changed,vmlinux__)
7351da177e4SLinus Torvalds
7361da177e4SLinus Torvalds.tmp_vmlinux3: $(vmlinux-lds) $(vmlinux-all) .tmp_kallsyms2.o FORCE
7371da177e4SLinus Torvalds	$(call if_changed,vmlinux__)
7381da177e4SLinus Torvalds
7391da177e4SLinus Torvalds# Needs to visit scripts/ before $(KALLSYMS) can be used.
7401da177e4SLinus Torvalds$(KALLSYMS): scripts ;
7411da177e4SLinus Torvalds
74233bc25eaSSam Ravnborg# Generate some data for debugging strange kallsyms problems
74333bc25eaSSam Ravnborgdebug_kallsyms: .tmp_map$(last_kallsyms)
74433bc25eaSSam Ravnborg
74533bc25eaSSam Ravnborg.tmp_map%: .tmp_vmlinux% FORCE
74633bc25eaSSam Ravnborg	($(OBJDUMP) -h $< | $(AWK) '/^ +[0-9]/{print $$4 " 0 " $$2}'; $(NM) $<) | sort > $@
74733bc25eaSSam Ravnborg
74833bc25eaSSam Ravnborg.tmp_map3: .tmp_map2
74933bc25eaSSam Ravnborg
75033bc25eaSSam Ravnborg.tmp_map2: .tmp_map1
75133bc25eaSSam Ravnborg
7521da177e4SLinus Torvaldsendif # ifdef CONFIG_KALLSYMS
7531da177e4SLinus Torvalds
754741f98feSSam Ravnborg# Do modpost on a prelinked vmlinux. The finally linked vmlinux has
755741f98feSSam Ravnborg# relevant sections renamed as per the linker script.
756741f98feSSam Ravnborgquiet_cmd_vmlinux-modpost = LD      $@
757741f98feSSam Ravnborg      cmd_vmlinux-modpost = $(LD) $(LDFLAGS) -r -o $@                          \
758741f98feSSam Ravnborg	 $(vmlinux-init) --start-group $(vmlinux-main) --end-group             \
759741f98feSSam Ravnborg	 $(filter-out $(vmlinux-init) $(vmlinux-main) $(vmlinux-lds) FORCE ,$^)
760741f98feSSam Ravnborgdefine rule_vmlinux-modpost
761741f98feSSam Ravnborg	:
762741f98feSSam Ravnborg	+$(call cmd,vmlinux-modpost)
763741f98feSSam Ravnborg	$(Q)$(MAKE) -f $(srctree)/scripts/Makefile.modpost $@
764741f98feSSam Ravnborg	$(Q)echo 'cmd_$@ := $(cmd_vmlinux-modpost)' > $(dot-target).cmd
765741f98feSSam Ravnborgendef
766741f98feSSam Ravnborg
7671da177e4SLinus Torvalds# vmlinux image - including updated kernel symbols
768741f98feSSam Ravnborgvmlinux: $(vmlinux-lds) $(vmlinux-init) $(vmlinux-main) $(kallsyms.o) vmlinux.o FORCE
7690f836e5fSDavid Woodhouseifdef CONFIG_HEADERS_CHECK
7700e7af8d0SDavid Woodhouse	$(Q)$(MAKE) -f $(srctree)/Makefile headers_check
7710f836e5fSDavid Woodhouseendif
772741f98feSSam Ravnborg	$(call vmlinux-modpost)
7731da177e4SLinus Torvalds	$(call if_changed_rule,vmlinux__)
7744e25d8bbSJan Beulich	$(Q)rm -f .old_version
7751da177e4SLinus Torvalds
776741f98feSSam Ravnborgvmlinux.o: $(vmlinux-lds) $(vmlinux-init) $(vmlinux-main) $(kallsyms.o) FORCE
777741f98feSSam Ravnborg	$(call if_changed_rule,vmlinux-modpost)
778741f98feSSam Ravnborg
7791da177e4SLinus Torvalds# The actual objects are generated when descending,
7801da177e4SLinus Torvalds# make sure no implicit rule kicks in
7811da177e4SLinus Torvalds$(sort $(vmlinux-init) $(vmlinux-main)) $(vmlinux-lds): $(vmlinux-dirs) ;
7821da177e4SLinus Torvalds
7831da177e4SLinus Torvalds# Handle descending into subdirectories listed in $(vmlinux-dirs)
7841da177e4SLinus Torvalds# Preset locale variables to speed up the build process. Limit locale
7851da177e4SLinus Torvalds# tweaks to this spot to avoid wrong language settings when running
7861da177e4SLinus Torvalds# make menuconfig etc.
7871da177e4SLinus Torvalds# Error messages still appears in the original language
7881da177e4SLinus Torvalds
7894f193362SPaul SmithPHONY += $(vmlinux-dirs)
7905bb78269SSam Ravnborg$(vmlinux-dirs): prepare scripts
7911da177e4SLinus Torvalds	$(Q)$(MAKE) $(build)=$@
7921da177e4SLinus Torvalds
793cb58455cSSam Ravnborg# Build the kernel release string
794cb58455cSSam Ravnborg#
7951ef98856SRobert P. J. Day# The KERNELRELEASE value built here is stored in the file
7961ef98856SRobert P. J. Day# include/config/kernel.release, and is used when executing several
7971ef98856SRobert P. J. Day# make targets, such as "make install" or "make modules_install."
7981ef98856SRobert P. J. Day#
7991ef98856SRobert P. J. Day# The eventual kernel release string consists of the following fields,
8001ef98856SRobert P. J. Day# shown in a hierarchical format to show how smaller parts are concatenated
8011ef98856SRobert P. J. Day# to form the larger and final value, with values coming from places like
8021ef98856SRobert P. J. Day# the Makefile, kernel config options, make command line options and/or
8031ef98856SRobert P. J. Day# SCM tag information.
8041ef98856SRobert P. J. Day#
8051ef98856SRobert P. J. Day#	$(KERNELVERSION)
8061ef98856SRobert P. J. Day#	  $(VERSION)			eg, 2
8071ef98856SRobert P. J. Day#	  $(PATCHLEVEL)			eg, 6
8081ef98856SRobert P. J. Day#	  $(SUBLEVEL)			eg, 18
8091ef98856SRobert P. J. Day#	  $(EXTRAVERSION)		eg, -rc6
8101ef98856SRobert P. J. Day#	$(localver-full)
8111ef98856SRobert P. J. Day#	  $(localver)
81276c32956SOleg Verych#	    localversion*		(files without backups, containing '~')
8131ef98856SRobert P. J. Day#	    $(CONFIG_LOCALVERSION)	(from kernel config setting)
8141ef98856SRobert P. J. Day#	  $(localver-auto)		(only if CONFIG_LOCALVERSION_AUTO is set)
8151ef98856SRobert P. J. Day#	    ./scripts/setlocalversion	(SCM tag, if one exists)
8161ef98856SRobert P. J. Day#	    $(LOCALVERSION)		(from make command line if provided)
8171ef98856SRobert P. J. Day#
8181ef98856SRobert P. J. Day#  Note how the final $(localver-auto) string is included *only* if the
8191ef98856SRobert P. J. Day# kernel config option CONFIG_LOCALVERSION_AUTO is selected.  Also, at the
8201ef98856SRobert P. J. Day# moment, only git is supported but other SCMs can edit the script
8211ef98856SRobert P. J. Day# scripts/setlocalversion and add the appropriate checks as needed.
822cb58455cSSam Ravnborg
82376c32956SOleg Verychpattern = ".*/localversion[^~]*"
82476c32956SOleg Verychstring  = $(shell cat /dev/null \
825fd19e44fSLinus Torvalds	   `find $(objtree) $(srctree) -maxdepth 1 -regex $(pattern) | sort -u`)
826cb58455cSSam Ravnborg
82776c32956SOleg Verychlocalver = $(subst $(space),, $(string) \
828cb58455cSSam Ravnborg			      $(patsubst "%",%,$(CONFIG_LOCALVERSION)))
829cb58455cSSam Ravnborg
830cb58455cSSam Ravnborg# If CONFIG_LOCALVERSION_AUTO is set scripts/setlocalversion is called
831cb58455cSSam Ravnborg# and if the SCM is know a tag from the SCM is appended.
832070b98bfSSam Ravnborg# The appended tag is determined by the SCM used.
833cb58455cSSam Ravnborg#
834cb58455cSSam Ravnborg# Currently, only git is supported.
835cb58455cSSam Ravnborg# Other SCMs can edit scripts/setlocalversion and add the appropriate
836cb58455cSSam Ravnborg# checks as needed.
837cb58455cSSam Ravnborgifdef CONFIG_LOCALVERSION_AUTO
838cb58455cSSam Ravnborg	_localver-auto = $(shell $(CONFIG_SHELL) \
839cb58455cSSam Ravnborg	                  $(srctree)/scripts/setlocalversion $(srctree))
840cb58455cSSam Ravnborg	localver-auto  = $(LOCALVERSION)$(_localver-auto)
841cb58455cSSam Ravnborgendif
842cb58455cSSam Ravnborg
843cb58455cSSam Ravnborglocalver-full = $(localver)$(localver-auto)
844cb58455cSSam Ravnborg
845f1d28fb0SRoman Zippel# Store (new) KERNELRELASE string in include/config/kernel.release
8462244cbd8SSam Ravnborgkernelrelease = $(KERNELVERSION)$(localver-full)
847f1d28fb0SRoman Zippelinclude/config/kernel.release: include/config/auto.conf FORCE
8482244cbd8SSam Ravnborg	$(Q)rm -f $@
8492244cbd8SSam Ravnborg	$(Q)echo $(kernelrelease) > $@
850cb58455cSSam Ravnborg
851cb58455cSSam Ravnborg
8521da177e4SLinus Torvalds# Things we need to do before we recursively start building the kernel
8535bb78269SSam Ravnborg# or the modules are listed in "prepare".
8545bb78269SSam Ravnborg# A multi level approach is used. prepareN is processed before prepareN-1.
8555bb78269SSam Ravnborg# archprepare is used in arch Makefiles and when processed asm symlink,
8565bb78269SSam Ravnborg# version.h and scripts_basic is processed / created.
8571da177e4SLinus Torvalds
8585bb78269SSam Ravnborg# Listed in dependency order
8594f193362SPaul SmithPHONY += prepare archprepare prepare0 prepare1 prepare2 prepare3
8605bb78269SSam Ravnborg
86186feeaa8SSam Ravnborg# prepare3 is used to check if we are building in a separate output directory,
8621da177e4SLinus Torvalds# and if so do:
8631da177e4SLinus Torvalds# 1) Check that make has not been executed in the kernel src $(srctree)
8641da177e4SLinus Torvalds# 2) Create the include2 directory, used for the second asm symlink
865f1d28fb0SRoman Zippelprepare3: include/config/kernel.release
8661da177e4SLinus Torvaldsifneq ($(KBUILD_SRC),)
8671da177e4SLinus Torvalds	@echo '  Using $(srctree) as source for kernel'
868c955ccafSRoman Zippel	$(Q)if [ -f $(srctree)/.config -o -d $(srctree)/include/config ]; then \
8691da177e4SLinus Torvalds		echo "  $(srctree) is not clean, please run 'make mrproper'";\
8701da177e4SLinus Torvalds		echo "  in the '$(srctree)' directory.";\
8711da177e4SLinus Torvalds		/bin/false; \
8721da177e4SLinus Torvalds	fi;
8731da177e4SLinus Torvalds	$(Q)if [ ! -d include2 ]; then mkdir -p include2; fi;
87496a388deSThomas Gleixner	$(Q)ln -fsn $(srctree)/include/asm-$(SRCARCH) include2/asm
8751da177e4SLinus Torvaldsendif
8761da177e4SLinus Torvalds
87786feeaa8SSam Ravnborg# prepare2 creates a makefile if using a separate output directory
87886feeaa8SSam Ravnborgprepare2: prepare3 outputmakefile
8791da177e4SLinus Torvalds
8803eb3c740SRoman Zippelprepare1: prepare2 include/linux/version.h include/linux/utsrelease.h \
8813eb3c740SRoman Zippel                   include/asm include/config/auto.conf
8821da177e4SLinus Torvaldsifneq ($(KBUILD_MODULES),)
8831da177e4SLinus Torvalds	$(Q)mkdir -p $(MODVERDIR)
884fca1dff2SPavel Roskin	$(Q)rm -f $(MODVERDIR)/*
8851da177e4SLinus Torvaldsendif
8861da177e4SLinus Torvalds
8875bb78269SSam Ravnborgarchprepare: prepare1 scripts_basic
8885bb78269SSam Ravnborg
8895bb78269SSam Ravnborgprepare0: archprepare FORCE
8908d36a623SSam Ravnborg	$(Q)$(MAKE) $(build)=.
891c53aeca0SSam Ravnborg	$(Q)$(MAKE) $(build)=. missing-syscalls
89286feeaa8SSam Ravnborg
8931da177e4SLinus Torvalds# All the preparing..
894d395efb5SRobert P. J. Dayprepare: prepare0
8951da177e4SLinus Torvalds
8961da177e4SLinus Torvalds# Leave this as default for preprocessing vmlinux.lds.S, which is now
8971da177e4SLinus Torvalds# done in arch/$(ARCH)/kernel/Makefile
8981da177e4SLinus Torvalds
8991da177e4SLinus Torvaldsexport CPPFLAGS_vmlinux.lds += -P -C -U$(ARCH)
9001da177e4SLinus Torvalds
9011da177e4SLinus Torvalds# FIXME: The asm symlink changes when $(ARCH) changes. That's
9021da177e4SLinus Torvalds# hard to detect, but I suppose "make mrproper" is a good idea
9031da177e4SLinus Torvalds# before switching between archs anyway.
9041da177e4SLinus Torvalds
9051da177e4SLinus Torvaldsinclude/asm:
90696a388deSThomas Gleixner	@echo '  SYMLINK $@ -> include/asm-$(SRCARCH)'
9071da177e4SLinus Torvalds	$(Q)if [ ! -d include ]; then mkdir -p include; fi;
90896a388deSThomas Gleixner	@ln -fsn asm-$(SRCARCH) $@
9091da177e4SLinus Torvalds
9101da177e4SLinus Torvalds# Generate some files
9111da177e4SLinus Torvalds# ---------------------------------------------------------------------------
9121da177e4SLinus Torvalds
9131da177e4SLinus Torvalds# KERNELRELEASE can change from a few different places, meaning version.h
9141da177e4SLinus Torvalds# needs to be updated, so this check is forced on all builds
9151da177e4SLinus Torvalds
9161da177e4SLinus Torvaldsuts_len := 64
91763104eecSSam Ravnborgdefine filechk_utsrelease.h
9181da177e4SLinus Torvalds	if [ `echo -n "$(KERNELRELEASE)" | wc -c ` -gt $(uts_len) ]; then \
9191da177e4SLinus Torvalds	  echo '"$(KERNELRELEASE)" exceeds $(uts_len) characters' >&2;    \
9201da177e4SLinus Torvalds	  exit 1;                                                         \
9211da177e4SLinus Torvalds	fi;                                                               \
92263104eecSSam Ravnborg	(echo \#define UTS_RELEASE \"$(KERNELRELEASE)\";)
9231da177e4SLinus Torvaldsendef
9241da177e4SLinus Torvalds
92563104eecSSam Ravnborgdefine filechk_version.h
92663104eecSSam Ravnborg	(echo \#define LINUX_VERSION_CODE $(shell                             \
92763104eecSSam Ravnborg	expr $(VERSION) \* 65536 + $(PATCHLEVEL) \* 256 + $(SUBLEVEL));     \
92863104eecSSam Ravnborg	echo '#define KERNEL_VERSION(a,b,c) (((a) << 16) + ((b) << 8) + (c))';)
92963104eecSSam Ravnborgendef
93063104eecSSam Ravnborg
93163104eecSSam Ravnborginclude/linux/version.h: $(srctree)/Makefile FORCE
9321da177e4SLinus Torvalds	$(call filechk,version.h)
9331da177e4SLinus Torvalds
93463104eecSSam Ravnborginclude/linux/utsrelease.h: include/config/kernel.release FORCE
93563104eecSSam Ravnborg	$(call filechk,utsrelease.h)
93663104eecSSam Ravnborg
9371da177e4SLinus Torvalds# ---------------------------------------------------------------------------
9381da177e4SLinus Torvalds
9394f193362SPaul SmithPHONY += depend dep
9401da177e4SLinus Torvaldsdepend dep:
9411da177e4SLinus Torvalds	@echo '*** Warning: make $@ is unnecessary now.'
9421da177e4SLinus Torvalds
9431da177e4SLinus Torvalds# ---------------------------------------------------------------------------
9448d730cfbSDavid Woodhouse# Kernel headers
9451ab7a1f3SDavid WoodhouseINSTALL_HDR_PATH=$(objtree)/usr
9468d730cfbSDavid Woodhouseexport INSTALL_HDR_PATH
9478d730cfbSDavid Woodhouse
94896a388deSThomas GleixnerHDRFILTER=generic i386 x86_64
94996a388deSThomas GleixnerHDRARCHES=$(filter-out $(HDRFILTER),$(patsubst $(srctree)/include/asm-%/Kbuild,%,$(wildcard $(srctree)/include/asm-*/Kbuild)))
9506d716275SDavid Woodhouse
9516d716275SDavid WoodhousePHONY += headers_install_all
9523eb3c740SRoman Zippelheaders_install_all: include/linux/version.h scripts_basic FORCE
953398477d4SLinus Torvalds	$(Q)$(MAKE) $(build)=scripts scripts/unifdef
9546d716275SDavid Woodhouse	$(Q)for arch in $(HDRARCHES); do \
955398477d4SLinus Torvalds	 $(MAKE) ARCH=$$arch -f $(srctree)/scripts/Makefile.headersinst obj=include BIASMDIR=-bi-$$arch ;\
9566d716275SDavid Woodhouse	 done
9576d716275SDavid Woodhouse
9588d730cfbSDavid WoodhousePHONY += headers_install
9593eb3c740SRoman Zippelheaders_install: include/linux/version.h scripts_basic FORCE
96096a388deSThomas Gleixner	@if [ ! -r $(srctree)/include/asm-$(SRCARCH)/Kbuild ]; then \
96196a388deSThomas Gleixner	  echo '*** Error: Headers not exportable for this architecture ($(SRCARCH))'; \
962f17b7badSDavid Woodhouse	  exit 1 ; fi
96307aea3a7SSam Ravnborg	$(Q)$(MAKE) $(build)=scripts scripts/unifdef
96496a388deSThomas Gleixner	$(Q)$(MAKE) -f $(srctree)/scripts/Makefile.headersinst ARCH=$(SRCARCH) obj=include
9658d730cfbSDavid Woodhouse
9661f85712eSMike FrysingerPHONY += headers_check_all
9671f85712eSMike Frysingerheaders_check_all: headers_install_all
9681f85712eSMike Frysinger	$(Q)for arch in $(HDRARCHES); do \
9691f85712eSMike Frysinger	 $(MAKE) ARCH=$$arch -f $(srctree)/scripts/Makefile.headersinst obj=include BIASMDIR=-bi-$$arch HDRCHECK=1 ;\
9701f85712eSMike Frysinger	 done
9711f85712eSMike Frysinger
97268475359SDavid WoodhousePHONY += headers_check
97368475359SDavid Woodhouseheaders_check: headers_install
97496a388deSThomas Gleixner	$(Q)$(MAKE) -f $(srctree)/scripts/Makefile.headersinst ARCH=$(SRCARCH) obj=include HDRCHECK=1
97568475359SDavid Woodhouse
9768d730cfbSDavid Woodhouse# ---------------------------------------------------------------------------
9771da177e4SLinus Torvalds# Modules
9781da177e4SLinus Torvalds
9791da177e4SLinus Torvaldsifdef CONFIG_MODULES
9801da177e4SLinus Torvalds
9811da177e4SLinus Torvalds# By default, build modules as well
9821da177e4SLinus Torvalds
9831da177e4SLinus Torvaldsall: modules
9841da177e4SLinus Torvalds
9851da177e4SLinus Torvalds#	Build modules
9861da177e4SLinus Torvalds
9874f193362SPaul SmithPHONY += modules
9881da177e4SLinus Torvaldsmodules: $(vmlinux-dirs) $(if $(KBUILD_BUILTIN),vmlinux)
9891da177e4SLinus Torvalds	@echo '  Building modules, stage 2.';
990b805aa0eSSam Ravnborg	$(Q)$(MAKE) -f $(srctree)/scripts/Makefile.modpost
9911da177e4SLinus Torvalds
9921da177e4SLinus Torvalds
9931da177e4SLinus Torvalds# Target to prepare building external modules
9944f193362SPaul SmithPHONY += modules_prepare
9955bb78269SSam Ravnborgmodules_prepare: prepare scripts
9961da177e4SLinus Torvalds
9971da177e4SLinus Torvalds# Target to install modules
9984f193362SPaul SmithPHONY += modules_install
9991da177e4SLinus Torvaldsmodules_install: _modinst_ _modinst_post
10001da177e4SLinus Torvalds
10014f193362SPaul SmithPHONY += _modinst_
10021da177e4SLinus Torvalds_modinst_:
1003ce454d4dSTom Rini	@if [ -z "`$(DEPMOD) -V 2>/dev/null | grep module-init-tools`" ]; then \
10041da177e4SLinus Torvalds		echo "Warning: you may need to install module-init-tools"; \
10051da177e4SLinus Torvalds		echo "See http://www.codemonkey.org.uk/docs/post-halloween-2.6.txt";\
10061da177e4SLinus Torvalds		sleep 1; \
10071da177e4SLinus Torvalds	fi
10081da177e4SLinus Torvalds	@rm -rf $(MODLIB)/kernel
10091da177e4SLinus Torvalds	@rm -f $(MODLIB)/source
10101da177e4SLinus Torvalds	@mkdir -p $(MODLIB)/kernel
10111da177e4SLinus Torvalds	@ln -s $(srctree) $(MODLIB)/source
10121da177e4SLinus Torvalds	@if [ ! $(objtree) -ef  $(MODLIB)/build ]; then \
10131da177e4SLinus Torvalds		rm -f $(MODLIB)/build ; \
10141da177e4SLinus Torvalds		ln -s $(objtree) $(MODLIB)/build ; \
10151da177e4SLinus Torvalds	fi
1016b805aa0eSSam Ravnborg	$(Q)$(MAKE) -f $(srctree)/scripts/Makefile.modinst
10171da177e4SLinus Torvalds
10181da177e4SLinus Torvalds# If System.map exists, run depmod.  This deliberately does not have a
10191da177e4SLinus Torvalds# dependency on System.map since that would run the dependency tree on
10201da177e4SLinus Torvalds# vmlinux.  This depmod is only for convenience to give the initial
10211da177e4SLinus Torvalds# boot a modules.dep even before / is mounted read-write.  However the
10221da177e4SLinus Torvalds# boot script depmod is the master version.
10231da177e4SLinus Torvaldsifeq "$(strip $(INSTALL_MOD_PATH))" ""
10241da177e4SLinus Torvaldsdepmod_opts	:=
10251da177e4SLinus Torvaldselse
10261da177e4SLinus Torvaldsdepmod_opts	:= -b $(INSTALL_MOD_PATH) -r
10271da177e4SLinus Torvaldsendif
10284f193362SPaul SmithPHONY += _modinst_post
10291da177e4SLinus Torvalds_modinst_post: _modinst_
10301da177e4SLinus Torvalds	if [ -r System.map -a -x $(DEPMOD) ]; then $(DEPMOD) -ae -F System.map $(depmod_opts) $(KERNELRELEASE); fi
10311da177e4SLinus Torvalds
10321da177e4SLinus Torvaldselse # CONFIG_MODULES
10331da177e4SLinus Torvalds
10341da177e4SLinus Torvalds# Modules not configured
10351da177e4SLinus Torvalds# ---------------------------------------------------------------------------
10361da177e4SLinus Torvalds
10371da177e4SLinus Torvaldsmodules modules_install: FORCE
10381da177e4SLinus Torvalds	@echo
10391da177e4SLinus Torvalds	@echo "The present kernel configuration has modules disabled."
10401da177e4SLinus Torvalds	@echo "Type 'make config' and enable loadable module support."
10411da177e4SLinus Torvalds	@echo "Then build a kernel with module support enabled."
10421da177e4SLinus Torvalds	@echo
10431da177e4SLinus Torvalds	@exit 1
10441da177e4SLinus Torvalds
10451da177e4SLinus Torvaldsendif # CONFIG_MODULES
10461da177e4SLinus Torvalds
10471da177e4SLinus Torvalds###
10481da177e4SLinus Torvalds# Cleaning is done on three levels.
10491da177e4SLinus Torvalds# make clean     Delete most generated files
10501da177e4SLinus Torvalds#                Leave enough to build external modules
10511da177e4SLinus Torvalds# make mrproper  Delete the current configuration, and all generated files
10521da177e4SLinus Torvalds# make distclean Remove editor backup files, patch leftover files and the like
10531da177e4SLinus Torvalds
10541da177e4SLinus Torvalds# Directories & files removed with 'make clean'
10551da177e4SLinus TorvaldsCLEAN_DIRS  += $(MODVERDIR)
10561da177e4SLinus TorvaldsCLEAN_FILES +=	vmlinux System.map \
10571da177e4SLinus Torvalds                .tmp_kallsyms* .tmp_version .tmp_vmlinux* .tmp_System.map
10581da177e4SLinus Torvalds
10591da177e4SLinus Torvalds# Directories & files removed with 'make mrproper'
10601ab7a1f3SDavid WoodhouseMRPROPER_DIRS  += include/config include2 usr/include
106150aa88e2STore AndersonMRPROPER_FILES += .config .config.old include/asm .version .old_version \
10623eb3c740SRoman Zippel                  include/linux/autoconf.h include/linux/version.h      \
10633eb3c740SRoman Zippel                  include/linux/utsrelease.h                            \
1064f1d28fb0SRoman Zippel		  Module.symvers tags TAGS cscope*
10651da177e4SLinus Torvalds
10661da177e4SLinus Torvalds# clean - Delete most, but leave enough to build external modules
10671da177e4SLinus Torvalds#
10681da177e4SLinus Torvaldsclean: rm-dirs  := $(CLEAN_DIRS)
10691da177e4SLinus Torvaldsclean: rm-files := $(CLEAN_FILES)
107086feeaa8SSam Ravnborgclean-dirs      := $(addprefix _clean_,$(srctree) $(vmlinux-alldirs))
10711da177e4SLinus Torvalds
10724f193362SPaul SmithPHONY += $(clean-dirs) clean archclean
10731da177e4SLinus Torvalds$(clean-dirs):
10741da177e4SLinus Torvalds	$(Q)$(MAKE) $(clean)=$(patsubst _clean_%,%,$@)
10751da177e4SLinus Torvalds
10761da177e4SLinus Torvaldsclean: archclean $(clean-dirs)
10771da177e4SLinus Torvalds	$(call cmd,rmdirs)
10781da177e4SLinus Torvalds	$(call cmd,rmfiles)
10791da177e4SLinus Torvalds	@find . $(RCS_FIND_IGNORE) \
10801da177e4SLinus Torvalds		\( -name '*.[oas]' -o -name '*.ko' -o -name '.*.cmd' \
108115fde675SAndreas Gruenbacher		-o -name '.*.d' -o -name '.*.tmp' -o -name '*.mod.c' \
108215fde675SAndreas Gruenbacher		-o -name '*.symtypes' \) \
10831da177e4SLinus Torvalds		-type f -print | xargs rm -f
10841da177e4SLinus Torvalds
10851da177e4SLinus Torvalds# mrproper - Delete all generated files, including .config
10861da177e4SLinus Torvalds#
10871da177e4SLinus Torvaldsmrproper: rm-dirs  := $(wildcard $(MRPROPER_DIRS))
10881da177e4SLinus Torvaldsmrproper: rm-files := $(wildcard $(MRPROPER_FILES))
10891da177e4SLinus Torvaldsmrproper-dirs      := $(addprefix _mrproper_,Documentation/DocBook scripts)
10901da177e4SLinus Torvalds
10914f193362SPaul SmithPHONY += $(mrproper-dirs) mrproper archmrproper
10921da177e4SLinus Torvalds$(mrproper-dirs):
10931da177e4SLinus Torvalds	$(Q)$(MAKE) $(clean)=$(patsubst _mrproper_%,%,$@)
10941da177e4SLinus Torvalds
10951da177e4SLinus Torvaldsmrproper: clean archmrproper $(mrproper-dirs)
10961da177e4SLinus Torvalds	$(call cmd,rmdirs)
10971da177e4SLinus Torvalds	$(call cmd,rmfiles)
10981da177e4SLinus Torvalds
10991da177e4SLinus Torvalds# distclean
11001da177e4SLinus Torvalds#
11014f193362SPaul SmithPHONY += distclean
11021da177e4SLinus Torvalds
11031da177e4SLinus Torvaldsdistclean: mrproper
11041da177e4SLinus Torvalds	@find $(srctree) $(RCS_FIND_IGNORE) \
11051da177e4SLinus Torvalds		\( -name '*.orig' -o -name '*.rej' -o -name '*~' \
11061da177e4SLinus Torvalds		-o -name '*.bak' -o -name '#*#' -o -name '.*.orig' \
11071da177e4SLinus Torvalds		-o -name '.*.rej' -o -size 0 \
11081da177e4SLinus Torvalds		-o -name '*%' -o -name '.*.cmd' -o -name 'core' \) \
11091da177e4SLinus Torvalds		-type f -print | xargs rm -f
11101da177e4SLinus Torvalds
11111da177e4SLinus Torvalds
11121da177e4SLinus Torvalds# Packaging of the kernel to various formats
11131da177e4SLinus Torvalds# ---------------------------------------------------------------------------
11141da177e4SLinus Torvalds# rpm target kept for backward compatibility
11151da177e4SLinus Torvaldspackage-dir	:= $(srctree)/scripts/package
11161da177e4SLinus Torvalds
1117031ecc6dSZach Brown%pkg: include/config/kernel.release FORCE
11186c2133e1SSam Ravnborg	$(Q)$(MAKE) $(build)=$(package-dir) $@
1119031ecc6dSZach Brownrpm: include/config/kernel.release FORCE
11206c2133e1SSam Ravnborg	$(Q)$(MAKE) $(build)=$(package-dir) $@
11211da177e4SLinus Torvalds
11221da177e4SLinus Torvalds
11231da177e4SLinus Torvalds# Brief documentation of the typical targets used
11241da177e4SLinus Torvalds# ---------------------------------------------------------------------------
11251da177e4SLinus Torvalds
11261da177e4SLinus Torvaldsboards := $(wildcard $(srctree)/arch/$(ARCH)/configs/*_defconfig)
11271da177e4SLinus Torvaldsboards := $(notdir $(boards))
11281da177e4SLinus Torvalds
11291da177e4SLinus Torvaldshelp:
11301da177e4SLinus Torvalds	@echo  'Cleaning targets:'
11315ea084efSSamuel Tardieu	@echo  '  clean		  - Remove most generated files but keep the config and'
11325cc8d246SJesper Juhl	@echo  '                    enough build support to build external modules'
11335ea084efSSamuel Tardieu	@echo  '  mrproper	  - Remove all generated files + config + various backup files'
11345cc8d246SJesper Juhl	@echo  '  distclean	  - mrproper + remove editor backup and patch files'
11351da177e4SLinus Torvalds	@echo  ''
11361da177e4SLinus Torvalds	@echo  'Configuration targets:'
11371da177e4SLinus Torvalds	@$(MAKE) -f $(srctree)/scripts/kconfig/Makefile help
11381da177e4SLinus Torvalds	@echo  ''
11391da177e4SLinus Torvalds	@echo  'Other generic targets:'
11401da177e4SLinus Torvalds	@echo  '  all		  - Build all targets marked with [*]'
11411da177e4SLinus Torvalds	@echo  '* vmlinux	  - Build the bare kernel'
11421da177e4SLinus Torvalds	@echo  '* modules	  - Build all modules'
11439cc5d74cSBodo Eggert	@echo  '  modules_install - Install all modules to INSTALL_MOD_PATH (default: /)'
11441da177e4SLinus Torvalds	@echo  '  dir/            - Build all files in dir and below'
11451da177e4SLinus Torvalds	@echo  '  dir/file.[ois]  - Build specified target only'
1146155ad605SSam Ravnborg	@echo  '  dir/file.ko     - Build module including final link'
11471da177e4SLinus Torvalds	@echo  '  rpm		  - Build a kernel as an RPM package'
11481da177e4SLinus Torvalds	@echo  '  tags/TAGS	  - Generate tags file for editors'
11491da177e4SLinus Torvalds	@echo  '  cscope	  - Generate cscope index'
11506d128842SZach Brown	@echo  '  kernelrelease	  - Output the release version string'
1151cb58455cSSam Ravnborg	@echo  '  kernelversion	  - Output the version stored in Makefile'
115291e034efSThomas Gleixner	@if [ -r $(srctree)/include/asm-$(SRCARCH)/Kbuild ]; then \
1153f17b7badSDavid Woodhouse	 echo  '  headers_install - Install sanitised kernel headers to INSTALL_HDR_PATH'; \
115459df3230SGeert Uytterhoeven	 echo  '                    (default: $(INSTALL_HDR_PATH))'; \
1155f17b7badSDavid Woodhouse	 fi
11561da177e4SLinus Torvalds	@echo  ''
11571da177e4SLinus Torvalds	@echo  'Static analysers'
11581da177e4SLinus Torvalds	@echo  '  checkstack      - Generate a list of stack hogs'
11591da177e4SLinus Torvalds	@echo  '  namespacecheck  - Name space analysis on compiled kernel'
116091e034efSThomas Gleixner	@if [ -r $(srctree)/include/asm-$(SRCARCH)/Kbuild ]; then \
1161f17b7badSDavid Woodhouse	 echo  '  headers_check   - Sanity check on exported headers'; \
1162f17b7badSDavid Woodhouse	 fi
11631da177e4SLinus Torvalds	@echo  ''
11641da177e4SLinus Torvalds	@echo  'Kernel packaging:'
11656c2133e1SSam Ravnborg	@$(MAKE) $(build)=$(package-dir) help
11661da177e4SLinus Torvalds	@echo  ''
11671da177e4SLinus Torvalds	@echo  'Documentation targets:'
11681da177e4SLinus Torvalds	@$(MAKE) -f $(srctree)/Documentation/DocBook/Makefile dochelp
11691da177e4SLinus Torvalds	@echo  ''
11701da177e4SLinus Torvalds	@echo  'Architecture specific targets ($(ARCH)):'
11711da177e4SLinus Torvalds	@$(if $(archhelp),$(archhelp),\
11721da177e4SLinus Torvalds		echo '  No architecture specific help defined for $(ARCH)')
11731da177e4SLinus Torvalds	@echo  ''
11741da177e4SLinus Torvalds	@$(if $(boards), \
11751da177e4SLinus Torvalds		$(foreach b, $(boards), \
11761da177e4SLinus Torvalds		printf "  %-24s - Build for %s\\n" $(b) $(subst _defconfig,,$(b));) \
11771da177e4SLinus Torvalds		echo '')
11781da177e4SLinus Torvalds
11791da177e4SLinus Torvalds	@echo  '  make V=0|1 [targets] 0 => quiet build (default), 1 => verbose build'
118045d506bdSSam Ravnborg	@echo  '  make V=2   [targets] 2 => give reason for rebuild of target'
11811da177e4SLinus Torvalds	@echo  '  make O=dir [targets] Locate all output files in "dir", including .config'
1182701842e3SDustin Kirkland	@echo  '  make C=1   [targets] Check all c source with $$CHECK (sparse by default)'
1183701842e3SDustin Kirkland	@echo  '  make C=2   [targets] Force check of all c source with $$CHECK'
11841da177e4SLinus Torvalds	@echo  ''
11851da177e4SLinus Torvalds	@echo  'Execute "make" or "make all" to build all targets marked with [*] '
11861da177e4SLinus Torvalds	@echo  'For further info see the ./README file'
11871da177e4SLinus Torvalds
11881da177e4SLinus Torvalds
11891da177e4SLinus Torvalds# Documentation targets
11901da177e4SLinus Torvalds# ---------------------------------------------------------------------------
11911da177e4SLinus Torvalds%docs: scripts_basic FORCE
11921da177e4SLinus Torvalds	$(Q)$(MAKE) $(build)=Documentation/DocBook $@
11931da177e4SLinus Torvalds
11941da177e4SLinus Torvaldselse # KBUILD_EXTMOD
11951da177e4SLinus Torvalds
11961da177e4SLinus Torvalds###
11971da177e4SLinus Torvalds# External module support.
11981da177e4SLinus Torvalds# When building external modules the kernel used as basis is considered
11991da177e4SLinus Torvalds# read-only, and no consistency checks are made and the make
12001da177e4SLinus Torvalds# system is not used on the basis kernel. If updates are required
12011da177e4SLinus Torvalds# in the basis kernel ordinary make commands (without M=...) must
12021da177e4SLinus Torvalds# be used.
12031da177e4SLinus Torvalds#
12041da177e4SLinus Torvalds# The following are the only valid targets when building external
12051da177e4SLinus Torvalds# modules.
12061da177e4SLinus Torvalds# make M=dir clean     Delete all automatically generated files
12071da177e4SLinus Torvalds# make M=dir modules   Make all modules in specified dir
12081da177e4SLinus Torvalds# make M=dir	       Same as 'make M=dir modules'
12091da177e4SLinus Torvalds# make M=dir modules_install
1210070b98bfSSam Ravnborg#                      Install the modules built in the module directory
12111da177e4SLinus Torvalds#                      Assumes install directory is already created
12121da177e4SLinus Torvalds
12131da177e4SLinus Torvalds# We are always building modules
12141da177e4SLinus TorvaldsKBUILD_MODULES := 1
12154f193362SPaul SmithPHONY += crmodverdir
12161da177e4SLinus Torvaldscrmodverdir:
12171da177e4SLinus Torvalds	$(Q)mkdir -p $(MODVERDIR)
1218fca1dff2SPavel Roskin	$(Q)rm -f $(MODVERDIR)/*
12191da177e4SLinus Torvalds
12204f193362SPaul SmithPHONY += $(objtree)/Module.symvers
12211da177e4SLinus Torvalds$(objtree)/Module.symvers:
12221da177e4SLinus Torvalds	@test -e $(objtree)/Module.symvers || ( \
12231da177e4SLinus Torvalds	echo; \
12241da177e4SLinus Torvalds	echo "  WARNING: Symbol version dump $(objtree)/Module.symvers"; \
12251da177e4SLinus Torvalds	echo "           is missing; modules will have no dependencies and modversions."; \
12261da177e4SLinus Torvalds	echo )
12271da177e4SLinus Torvalds
12281da177e4SLinus Torvaldsmodule-dirs := $(addprefix _module_,$(KBUILD_EXTMOD))
12294f193362SPaul SmithPHONY += $(module-dirs) modules
12301da177e4SLinus Torvalds$(module-dirs): crmodverdir $(objtree)/Module.symvers
12311da177e4SLinus Torvalds	$(Q)$(MAKE) $(build)=$(patsubst _module_%,%,$@)
12321da177e4SLinus Torvalds
12331da177e4SLinus Torvaldsmodules: $(module-dirs)
12341da177e4SLinus Torvalds	@echo '  Building modules, stage 2.';
1235b805aa0eSSam Ravnborg	$(Q)$(MAKE) -f $(srctree)/scripts/Makefile.modpost
12361da177e4SLinus Torvalds
12374f193362SPaul SmithPHONY += modules_install
1238a67dc21aSSam Ravnborgmodules_install: _emodinst_ _emodinst_post
1239a67dc21aSSam Ravnborg
1240a67dc21aSSam Ravnborginstall-dir := $(if $(INSTALL_MOD_DIR),$(INSTALL_MOD_DIR),extra)
12414f193362SPaul SmithPHONY += _emodinst_
1242a67dc21aSSam Ravnborg_emodinst_:
1243a67dc21aSSam Ravnborg	$(Q)mkdir -p $(MODLIB)/$(install-dir)
1244b805aa0eSSam Ravnborg	$(Q)$(MAKE) -f $(srctree)/scripts/Makefile.modinst
12451da177e4SLinus Torvalds
1246a67dc21aSSam Ravnborg# Run depmod only is we have System.map and depmod is executable
1247a67dc21aSSam Ravnborgquiet_cmd_depmod = DEPMOD  $(KERNELRELEASE)
1248a67dc21aSSam Ravnborg      cmd_depmod = if [ -r System.map -a -x $(DEPMOD) ]; then \
1249a67dc21aSSam Ravnborg                      $(DEPMOD) -ae -F System.map             \
1250a67dc21aSSam Ravnborg                      $(if $(strip $(INSTALL_MOD_PATH)),      \
1251a67dc21aSSam Ravnborg		      -b $(INSTALL_MOD_PATH) -r)              \
1252a67dc21aSSam Ravnborg		      $(KERNELRELEASE);                       \
1253a67dc21aSSam Ravnborg                   fi
1254a67dc21aSSam Ravnborg
12554f193362SPaul SmithPHONY += _emodinst_post
1256a67dc21aSSam Ravnborg_emodinst_post: _emodinst_
1257a67dc21aSSam Ravnborg	$(call cmd,depmod)
1258a67dc21aSSam Ravnborg
12591da177e4SLinus Torvaldsclean-dirs := $(addprefix _clean_,$(KBUILD_EXTMOD))
12601da177e4SLinus Torvalds
12614f193362SPaul SmithPHONY += $(clean-dirs) clean
12621da177e4SLinus Torvalds$(clean-dirs):
12631da177e4SLinus Torvalds	$(Q)$(MAKE) $(clean)=$(patsubst _clean_%,%,$@)
12641da177e4SLinus Torvalds
12651da177e4SLinus Torvaldsclean:	rm-dirs := $(MODVERDIR)
1266c34114f4SMike Frysingerclean: rm-files := $(KBUILD_EXTMOD)/Module.symvers
12671da177e4SLinus Torvaldsclean: $(clean-dirs)
12681da177e4SLinus Torvalds	$(call cmd,rmdirs)
1269c34114f4SMike Frysinger	$(call cmd,rmfiles)
12701da177e4SLinus Torvalds	@find $(KBUILD_EXTMOD) $(RCS_FIND_IGNORE) \
12711da177e4SLinus Torvalds		\( -name '*.[oas]' -o -name '*.ko' -o -name '.*.cmd' \
12721da177e4SLinus Torvalds		-o -name '.*.d' -o -name '.*.tmp' -o -name '*.mod.c' \) \
12731da177e4SLinus Torvalds		-type f -print | xargs rm -f
12741da177e4SLinus Torvalds
12751da177e4SLinus Torvaldshelp:
12761da177e4SLinus Torvalds	@echo  '  Building external modules.'
12771da177e4SLinus Torvalds	@echo  '  Syntax: make -C path/to/kernel/src M=$$PWD target'
12781da177e4SLinus Torvalds	@echo  ''
12791da177e4SLinus Torvalds	@echo  '  modules         - default target, build the module(s)'
12801da177e4SLinus Torvalds	@echo  '  modules_install - install the module'
12811da177e4SLinus Torvalds	@echo  '  clean           - remove generated files in module directory only'
12821da177e4SLinus Torvalds	@echo  ''
128306300b21SSam Ravnborg
128406300b21SSam Ravnborg# Dummies...
12854f193362SPaul SmithPHONY += prepare scripts
128606300b21SSam Ravnborgprepare: ;
128706300b21SSam Ravnborgscripts: ;
12881da177e4SLinus Torvaldsendif # KBUILD_EXTMOD
12891da177e4SLinus Torvalds
12901da177e4SLinus Torvalds# Generate tags for editors
12911da177e4SLinus Torvalds# ---------------------------------------------------------------------------
12921da177e4SLinus Torvalds
12931da177e4SLinus Torvalds#We want __srctree to totally vanish out when KBUILD_OUTPUT is not set
12941da177e4SLinus Torvalds#(which is the most common case IMHO) to avoid unneeded clutter in the big tags file.
12951da177e4SLinus Torvalds#Adding $(srctree) adds about 20M on i386 to the size of the output file!
12961da177e4SLinus Torvalds
1297f182ae62SGeorge Anzingerifeq ($(src),$(obj))
12981da177e4SLinus Torvalds__srctree =
12991da177e4SLinus Torvaldselse
13001da177e4SLinus Torvalds__srctree = $(srctree)/
13011da177e4SLinus Torvaldsendif
13021da177e4SLinus Torvalds
13032ab23c95SPaolo 'Blaisorblade' Giarrussoifeq ($(ALLSOURCE_ARCHS),)
13042ab23c95SPaolo 'Blaisorblade' Giarrussoifeq ($(ARCH),um)
13052ab23c95SPaolo 'Blaisorblade' GiarrussoALLINCLUDE_ARCHS := $(ARCH) $(SUBARCH)
13062ab23c95SPaolo 'Blaisorblade' Giarrussoelse
13072eb4c950SThomas GleixnerALLINCLUDE_ARCHS := $(SRCARCH)
13082ab23c95SPaolo 'Blaisorblade' Giarrussoendif
13092ab23c95SPaolo 'Blaisorblade' Giarrussoelse
1310070b98bfSSam Ravnborg#Allow user to specify only ALLSOURCE_PATHS on the command line, keeping existing behavour.
13112ab23c95SPaolo 'Blaisorblade' GiarrussoALLINCLUDE_ARCHS := $(ALLSOURCE_ARCHS)
13122ab23c95SPaolo 'Blaisorblade' Giarrussoendif
13132ab23c95SPaolo 'Blaisorblade' Giarrusso
13142eb4c950SThomas Gleixner# Take care of arch/x86
13152eb4c950SThomas Gleixnerifeq ($(ARCH), $(SRCARCH))
1316a0674e88SIan CampbellALLSOURCE_ARCHS := $(ARCH)
13172eb4c950SThomas Gleixnerelse
13182eb4c950SThomas GleixnerALLSOURCE_ARCHS := $(ARCH) $(SRCARCH)
13192eb4c950SThomas Gleixnerendif
1320a0674e88SIan Campbell
1321e838db68SMasatake YAMATOdefine find-sources
1322dd7e54adSDon Mullis        ( for ARCH in $(ALLSOURCE_ARCHS) ; do \
13232eb4c950SThomas Gleixner	       find $(__srctree)arch/$${SRCARCH} $(RCS_FIND_IGNORE) \
1324e838db68SMasatake YAMATO	            -name $1 -print; \
1325a0674e88SIan Campbell	  done ; \
13261da177e4SLinus Torvalds	  find $(__srctree)security/selinux/include $(RCS_FIND_IGNORE) \
1327e838db68SMasatake YAMATO	       -name $1 -print; \
13281da177e4SLinus Torvalds	  find $(__srctree)include $(RCS_FIND_IGNORE) \
13291da177e4SLinus Torvalds	       \( -name config -o -name 'asm-*' \) -prune \
1330e838db68SMasatake YAMATO	       -o -name $1 -print; \
13312ab23c95SPaolo 'Blaisorblade' Giarrusso	  for ARCH in $(ALLINCLUDE_ARCHS) ; do \
13322eb4c950SThomas Gleixner	       find $(__srctree)include/asm-$${SRCARCH} $(RCS_FIND_IGNORE) \
1333e838db68SMasatake YAMATO	            -name $1 -print; \
1334a0674e88SIan Campbell	  done ; \
13351da177e4SLinus Torvalds	  find $(__srctree)include/asm-generic $(RCS_FIND_IGNORE) \
1336dd7e54adSDon Mullis	       -name $1 -print; \
1337dd7e54adSDon Mullis	  find $(__srctree) $(RCS_FIND_IGNORE) \
1338dd7e54adSDon Mullis	       \( -name include -o -name arch \) -prune -o \
1339dd7e54adSDon Mullis	       -name $1 -print; \
1340dd7e54adSDon Mullis	  )
1341e838db68SMasatake YAMATOendef
1342e838db68SMasatake YAMATO
1343e838db68SMasatake YAMATOdefine all-sources
1344e838db68SMasatake YAMATO	$(call find-sources,'*.[chS]')
1345e838db68SMasatake YAMATOendef
1346e838db68SMasatake YAMATOdefine all-kconfigs
1347e838db68SMasatake YAMATO	$(call find-sources,'Kconfig*')
1348e838db68SMasatake YAMATOendef
1349e838db68SMasatake YAMATOdefine all-defconfigs
1350e838db68SMasatake YAMATO	$(call find-sources,'defconfig')
13511da177e4SLinus Torvaldsendef
13521da177e4SLinus Torvalds
1353da7c0408SAron Griffisdefine xtags
1354da7c0408SAron Griffis	if $1 --version 2>&1 | grep -iq exuberant; then \
1355da7c0408SAron Griffis	    $(all-sources) | xargs $1 -a \
1356da7c0408SAron Griffis		-I __initdata,__exitdata,__acquires,__releases \
1357da7c0408SAron Griffis		-I EXPORT_SYMBOL,EXPORT_SYMBOL_GPL \
135891b943eeSAneesh Kumar K.V		--extra=+f --c-kinds=+px \
1359a412c172SAneesh Kumar K.V		--regex-asm='/^ENTRY\(([^)]*)\).*/\1/'; \
1360da7c0408SAron Griffis	    $(all-kconfigs) | xargs $1 -a \
1361da7c0408SAron Griffis		--langdef=kconfig \
1362da7c0408SAron Griffis		--language-force=kconfig \
1363da7c0408SAron Griffis		--regex-kconfig='/^[[:blank:]]*config[[:blank:]]+([[:alnum:]_]+)/\1/'; \
136418e39913SDavid Gibson	    $(all-defconfigs) | xargs -r $1 -a \
1365da7c0408SAron Griffis		--langdef=dotconfig \
1366da7c0408SAron Griffis		--language-force=dotconfig \
1367da7c0408SAron Griffis		--regex-dotconfig='/^#?[[:blank:]]*(CONFIG_[[:alnum:]_]+)/\1/'; \
1368da7c0408SAron Griffis	elif $1 --version 2>&1 | grep -iq emacs; then \
1369da7c0408SAron Griffis	    $(all-sources) | xargs $1 -a; \
1370da7c0408SAron Griffis	    $(all-kconfigs) | xargs $1 -a \
1371da7c0408SAron Griffis		--regex='/^[ \t]*config[ \t]+\([a-zA-Z0-9_]+\)/\1/'; \
137218e39913SDavid Gibson	    $(all-defconfigs) | xargs -r $1 -a \
1373da7c0408SAron Griffis		--regex='/^#?[ \t]?\(CONFIG_[a-zA-Z0-9_]+\)/\1/'; \
1374da7c0408SAron Griffis	else \
1375da7c0408SAron Griffis	    $(all-sources) | xargs $1 -a; \
1376da7c0408SAron Griffis	fi
1377da7c0408SAron Griffisendef
1378da7c0408SAron Griffis
13791da177e4SLinus Torvaldsquiet_cmd_cscope-file = FILELST cscope.files
1380acbef459SKarl Hegbloom      cmd_cscope-file = (echo \-k; echo \-q; $(all-sources)) > cscope.files
13811da177e4SLinus Torvalds
13821da177e4SLinus Torvaldsquiet_cmd_cscope = MAKE    cscope.out
1383acbef459SKarl Hegbloom      cmd_cscope = cscope -b
13841da177e4SLinus Torvalds
13851da177e4SLinus Torvaldscscope: FORCE
13861da177e4SLinus Torvalds	$(call cmd,cscope-file)
13871da177e4SLinus Torvalds	$(call cmd,cscope)
13881da177e4SLinus Torvalds
13891da177e4SLinus Torvaldsquiet_cmd_TAGS = MAKE   $@
139066d609ecSSam Ravnborgdefine cmd_TAGS
139166d609ecSSam Ravnborg	rm -f $@; \
1392da7c0408SAron Griffis	$(call xtags,etags)
139366d609ecSSam Ravnborgendef
13941da177e4SLinus Torvalds
139566d609ecSSam RavnborgTAGS: FORCE
139666d609ecSSam Ravnborg	$(call cmd,TAGS)
139766d609ecSSam Ravnborg
13981da177e4SLinus Torvaldsquiet_cmd_tags = MAKE   $@
13991da177e4SLinus Torvaldsdefine cmd_tags
14001da177e4SLinus Torvalds	rm -f $@; \
1401da7c0408SAron Griffis	$(call xtags,ctags)
14021da177e4SLinus Torvaldsendef
14031da177e4SLinus Torvalds
14041da177e4SLinus Torvaldstags: FORCE
14051da177e4SLinus Torvalds	$(call cmd,tags)
14061da177e4SLinus Torvalds
14071da177e4SLinus Torvalds
14081da177e4SLinus Torvalds# Scripts to check various things for consistency
14091da177e4SLinus Torvalds# ---------------------------------------------------------------------------
14101da177e4SLinus Torvalds
14111da177e4SLinus Torvaldsincludecheck:
14121da177e4SLinus Torvalds	find * $(RCS_FIND_IGNORE) \
14131da177e4SLinus Torvalds		-name '*.[hcS]' -type f -print | sort \
14141da177e4SLinus Torvalds		| xargs $(PERL) -w scripts/checkincludes.pl
14151da177e4SLinus Torvalds
14161da177e4SLinus Torvaldsversioncheck:
14171da177e4SLinus Torvalds	find * $(RCS_FIND_IGNORE) \
14181da177e4SLinus Torvalds		-name '*.[hcS]' -type f -print | sort \
14191da177e4SLinus Torvalds		| xargs $(PERL) -w scripts/checkversion.pl
14201da177e4SLinus Torvalds
14211da177e4SLinus Torvaldsnamespacecheck:
14221da177e4SLinus Torvalds	$(PERL) $(srctree)/scripts/namespace.pl
14231da177e4SLinus Torvalds
14241da177e4SLinus Torvaldsendif #ifeq ($(config-targets),1)
14251da177e4SLinus Torvaldsendif #ifeq ($(mixed-targets),1)
14261da177e4SLinus Torvalds
1427c30a02e0SRoman ZippelPHONY += checkstack kernelrelease kernelversion
1428e3ccf6e3SJeff Dike
1429011e3a9aSJeff Dike# UML needs a little special treatment here.  It wants to use the host
1430011e3a9aSJeff Dike# toolchain, so needs $(SUBARCH) passed to checkstack.pl.  Everyone
1431011e3a9aSJeff Dike# else wants $(ARCH), including people doing cross-builds, which means
1432011e3a9aSJeff Dike# that $(SUBARCH) doesn't work here.
1433011e3a9aSJeff Dikeifeq ($(ARCH), um)
1434011e3a9aSJeff DikeCHECKSTACK_ARCH := $(SUBARCH)
1435011e3a9aSJeff Dikeelse
1436011e3a9aSJeff DikeCHECKSTACK_ARCH := $(ARCH)
1437011e3a9aSJeff Dikeendif
14381da177e4SLinus Torvaldscheckstack:
14391da177e4SLinus Torvalds	$(OBJDUMP) -d vmlinux $$(find . -name '*.ko') | \
1440011e3a9aSJeff Dike	$(PERL) $(src)/scripts/checkstack.pl $(CHECKSTACK_ARCH)
14411da177e4SLinus Torvalds
14421da177e4SLinus Torvaldskernelrelease:
1443f1d28fb0SRoman Zippel	$(if $(wildcard include/config/kernel.release), $(Q)echo $(KERNELRELEASE), \
1444f1d28fb0SRoman Zippel	$(error kernelrelease not valid - run 'make prepare' to update it))
1445cb58455cSSam Ravnborgkernelversion:
14462244cbd8SSam Ravnborg	@echo $(KERNELVERSION)
14471da177e4SLinus Torvalds
144806300b21SSam Ravnborg# Single targets
144906300b21SSam Ravnborg# ---------------------------------------------------------------------------
1450bc2546a6SSam Ravnborg# Single targets are compatible with:
1451bc2546a6SSam Ravnborg# - build whith mixed source and output
1452bc2546a6SSam Ravnborg# - build with separate output dir 'make O=...'
1453bc2546a6SSam Ravnborg# - external modules
1454bc2546a6SSam Ravnborg#
1455bc2546a6SSam Ravnborg#  target-dir => where to store outputfile
1456bc2546a6SSam Ravnborg#  build-dir  => directory in kernel source tree to use
145706300b21SSam Ravnborg
145806300b21SSam Ravnborgifeq ($(KBUILD_EXTMOD),)
1459aa360879SSam Ravnborg        build-dir  = $(patsubst %/,%,$(dir $@))
1460bc2546a6SSam Ravnborg        target-dir = $(dir $@)
146106300b21SSam Ravnborgelse
146206300b21SSam Ravnborg        zap-slash=$(filter-out .,$(patsubst %/,%,$(dir $@)))
1463bc2546a6SSam Ravnborg        build-dir  = $(KBUILD_EXTMOD)$(if $(zap-slash),/$(zap-slash))
1464bc2546a6SSam Ravnborg        target-dir = $(if $(KBUILD_EXTMOD),$(dir $<),$(dir $@))
146506300b21SSam Ravnborgendif
146606300b21SSam Ravnborg
1467bc2546a6SSam Ravnborg%.s: %.c prepare scripts FORCE
1468bc2546a6SSam Ravnborg	$(Q)$(MAKE) $(build)=$(build-dir) $(target-dir)$(notdir $@)
1469bc2546a6SSam Ravnborg%.i: %.c prepare scripts FORCE
1470bc2546a6SSam Ravnborg	$(Q)$(MAKE) $(build)=$(build-dir) $(target-dir)$(notdir $@)
1471bc2546a6SSam Ravnborg%.o: %.c prepare scripts FORCE
1472bc2546a6SSam Ravnborg	$(Q)$(MAKE) $(build)=$(build-dir) $(target-dir)$(notdir $@)
1473bc2546a6SSam Ravnborg%.lst: %.c prepare scripts FORCE
1474bc2546a6SSam Ravnborg	$(Q)$(MAKE) $(build)=$(build-dir) $(target-dir)$(notdir $@)
1475bc2546a6SSam Ravnborg%.s: %.S prepare scripts FORCE
1476bc2546a6SSam Ravnborg	$(Q)$(MAKE) $(build)=$(build-dir) $(target-dir)$(notdir $@)
1477bc2546a6SSam Ravnborg%.o: %.S prepare scripts FORCE
1478bc2546a6SSam Ravnborg	$(Q)$(MAKE) $(build)=$(build-dir) $(target-dir)$(notdir $@)
147915fde675SAndreas Gruenbacher%.symtypes: %.c prepare scripts FORCE
148015fde675SAndreas Gruenbacher	$(Q)$(MAKE) $(build)=$(build-dir) $(target-dir)$(notdir $@)
1481bc2546a6SSam Ravnborg
1482bc2546a6SSam Ravnborg# Modules
1483bc2546a6SSam Ravnborg/ %/: prepare scripts FORCE
148406300b21SSam Ravnborg	$(Q)$(MAKE) KBUILD_MODULES=$(if $(CONFIG_MODULES),1) \
1485bc2546a6SSam Ravnborg	$(build)=$(build-dir)
1486bc2546a6SSam Ravnborg%.ko: prepare scripts FORCE
148706300b21SSam Ravnborg	$(Q)$(MAKE) KBUILD_MODULES=$(if $(CONFIG_MODULES),1)   \
1488bc2546a6SSam Ravnborg	$(build)=$(build-dir) $(@:.ko=.o)
1489b805aa0eSSam Ravnborg	$(Q)$(MAKE) -f $(srctree)/scripts/Makefile.modpost
149006300b21SSam Ravnborg
14911da177e4SLinus Torvalds# FIXME Should go into a make.lib or something
14921da177e4SLinus Torvalds# ===========================================================================
14931da177e4SLinus Torvalds
14941da177e4SLinus Torvaldsquiet_cmd_rmdirs = $(if $(wildcard $(rm-dirs)),CLEAN   $(wildcard $(rm-dirs)))
14951da177e4SLinus Torvalds      cmd_rmdirs = rm -rf $(rm-dirs)
14961da177e4SLinus Torvalds
14971da177e4SLinus Torvaldsquiet_cmd_rmfiles = $(if $(wildcard $(rm-files)),CLEAN   $(wildcard $(rm-files)))
14981da177e4SLinus Torvalds      cmd_rmfiles = rm -f $(rm-files)
14991da177e4SLinus Torvalds
15001da177e4SLinus Torvalds
15011da177e4SLinus Torvaldsa_flags = -Wp,-MD,$(depfile) $(AFLAGS) $(AFLAGS_KERNEL) \
15021da177e4SLinus Torvalds	  $(NOSTDINC_FLAGS) $(CPPFLAGS) \
15035e8d780dSSam Ravnborg	  $(modkern_aflags) $(EXTRA_AFLAGS) $(AFLAGS_$(basetarget).o)
15041da177e4SLinus Torvalds
15051da177e4SLinus Torvaldsquiet_cmd_as_o_S = AS      $@
15061da177e4SLinus Torvaldscmd_as_o_S       = $(CC) $(a_flags) -c -o $@ $<
15071da177e4SLinus Torvalds
15081da177e4SLinus Torvalds# read all saved command lines
15091da177e4SLinus Torvalds
15101da177e4SLinus Torvaldstargets := $(wildcard $(sort $(targets)))
15111da177e4SLinus Torvaldscmd_files := $(wildcard .*.cmd $(foreach f,$(targets),$(dir $(f)).$(notdir $(f)).cmd))
15121da177e4SLinus Torvalds
15131da177e4SLinus Torvaldsifneq ($(cmd_files),)
15141da177e4SLinus Torvalds  $(cmd_files): ;	# Do not try to update included dependency files
15151da177e4SLinus Torvalds  include $(cmd_files)
15161da177e4SLinus Torvaldsendif
15171da177e4SLinus Torvalds
15181da177e4SLinus Torvalds# Shorthand for $(Q)$(MAKE) -f scripts/Makefile.clean obj=dir
15191da177e4SLinus Torvalds# Usage:
15201da177e4SLinus Torvalds# $(Q)$(MAKE) $(clean)=dir
15211da177e4SLinus Torvaldsclean := -f $(if $(KBUILD_SRC),$(srctree)/)scripts/Makefile.clean obj
15221da177e4SLinus Torvalds
15231da177e4SLinus Torvaldsendif	# skip-makefile
15241da177e4SLinus Torvalds
15254f193362SPaul SmithPHONY += FORCE
15261da177e4SLinus TorvaldsFORCE:
15274f193362SPaul Smith
152815964864SOleg Verych# Cancel implicit rules on top Makefile, `-rR' will apply to sub-makes.
152915964864SOleg VerychMakefile: ;
15304f193362SPaul Smith
15314f193362SPaul Smith# Declare the contents of the .PHONY variable as phony.  We keep that
15324f193362SPaul Smith# information in a variable se we can use it in if_changed and friends.
15334f193362SPaul Smith.PHONY: $(PHONY)
1534