compat: include aio_abi.h for aio_context_t
[GitHub/mt8127/android_kernel_alcatel_ttab.git] / Makefile
CommitLineData
1da177e4
LT
1VERSION = 2
2PATCHLEVEL = 6
0ce790e7 3SUBLEVEL = 39
8e10cd74 4EXTRAVERSION = -rc5
cd07202c 5NAME = Flesh-Eating Bats with Fangs
1da177e4
LT
6
7# *DOCUMENTATION*
8# To see a list of typical targets execute "make help"
9# More info can be located in ./README
10# Comments in this file are targeted only to the developer, do not
11# expect to learn how to build the kernel reading this file.
12
15964864
OV
13# Do not:
14# o use make's built-in rules and variables
d384e35a 15# (this increases performance and avoids hard-to-debug behaviour);
15964864
OV
16# o print "Entering directory ...";
17MAKEFLAGS += -rR --no-print-directory
1da177e4 18
c051346b 19# Avoid funny character set dependencies
06b5dc64 20unexport LC_ALL
c051346b
PA
21LC_COLLATE=C
22LC_NUMERIC=C
07105202 23export LC_COLLATE LC_NUMERIC
c051346b 24
1da177e4
LT
25# We are using a recursive build, so we need to do a little thinking
26# to get the ordering right.
27#
28# Most importantly: sub-Makefiles should only ever modify files in
29# their own directory. If in some directory we have a dependency on
30# a file in another dir (which doesn't happen often, but it's often
31# unavoidable when linking the built-in.o targets which finally
32# turn into vmlinux), we will call a sub make in that other dir, and
33# after that we are sure that everything which is in that other dir
34# is now up to date.
35#
36# The only cases where we need to modify files which have global
37# effects are thus separated out and done before the recursive
38# descending is started. They are now explicitly listed as the
39# prepare rule.
40
41# To put more focus on warnings, be less verbose as default
42# Use 'make V=1' to see the full commands
43
b8b0618c
CR
44ifeq ("$(origin V)", "command line")
45 KBUILD_VERBOSE = $(V)
1da177e4
LT
46endif
47ifndef KBUILD_VERBOSE
48 KBUILD_VERBOSE = 0
49endif
50
1c7bafe7
RD
51# Call a source code checker (by default, "sparse") as part of the
52# C compilation.
53#
54# Use 'make C=1' to enable checking of only re-compiled files.
55# Use 'make C=2' to enable checking of *all* source files, regardless
56# of whether they are re-compiled or not.
57#
58# See the file "Documentation/sparse.txt" for more details, including
59# where to get the "sparse" utility.
1da177e4 60
b8b0618c
CR
61ifeq ("$(origin C)", "command line")
62 KBUILD_CHECKSRC = $(C)
1da177e4
LT
63endif
64ifndef KBUILD_CHECKSRC
65 KBUILD_CHECKSRC = 0
66endif
67
68# Use make M=dir to specify directory of external module to build
69# Old syntax make ... SUBDIRS=$PWD is still supported
70# Setting the environment variable KBUILD_EXTMOD take precedence
71ifdef SUBDIRS
72 KBUILD_EXTMOD ?= $(SUBDIRS)
73endif
1da177e4 74
b8b0618c
CR
75ifeq ("$(origin M)", "command line")
76 KBUILD_EXTMOD := $(M)
77endif
1da177e4
LT
78
79# kbuild supports saving output files in a separate directory.
80# To locate output files in a separate directory two syntaxes are supported.
81# In both cases the working directory must be the root of the kernel src.
82# 1) O=
83# Use "make O=dir/to/store/output/files/"
070b98bf 84#
1da177e4
LT
85# 2) Set KBUILD_OUTPUT
86# Set the environment variable KBUILD_OUTPUT to point to the directory
87# where the output files shall be placed.
88# export KBUILD_OUTPUT=dir/to/store/output/files/
89# make
90#
91# The O= assignment takes precedence over the KBUILD_OUTPUT environment
92# variable.
93
94
95# KBUILD_SRC is set on invocation of make in OBJ directory
96# KBUILD_SRC is not intended to be used by the regular user (for now)
97ifeq ($(KBUILD_SRC),)
98
99# OK, Make called in directory where kernel src resides
100# Do we want to locate output files in a separate directory?
b8b0618c
CR
101ifeq ("$(origin O)", "command line")
102 KBUILD_OUTPUT := $(O)
1da177e4
LT
103endif
104
4a5838ad
BP
105ifeq ("$(origin W)", "command line")
106 export KBUILD_ENABLE_EXTRA_GCC_CHECKS := 1
107endif
108
1da177e4 109# That's our default target when none is given on the command line
4f193362 110PHONY := _all
1da177e4
LT
111_all:
112
1cacc9ab
SR
113# Cancel implicit rules on top Makefile
114$(CURDIR)/Makefile Makefile: ;
115
1da177e4
LT
116ifneq ($(KBUILD_OUTPUT),)
117# Invoke a second make in the output directory, passing relevant variables
118# check that the output directory actually exists
119saved-output := $(KBUILD_OUTPUT)
120KBUILD_OUTPUT := $(shell cd $(KBUILD_OUTPUT) && /bin/pwd)
121$(if $(KBUILD_OUTPUT),, \
122 $(error output directory "$(saved-output)" does not exist))
1da177e4 123
0b35786d
MM
124PHONY += $(MAKECMDGOALS) sub-make
125
1cacc9ab 126$(filter-out _all sub-make $(CURDIR)/Makefile, $(MAKECMDGOALS)) _all: sub-make
0b35786d
MM
127 $(Q)@:
128
129sub-make: FORCE
23a45e2c
SR
130 $(if $(KBUILD_VERBOSE:1=),@)$(MAKE) -C $(KBUILD_OUTPUT) \
131 KBUILD_SRC=$(CURDIR) \
0b35786d
MM
132 KBUILD_EXTMOD="$(KBUILD_EXTMOD)" -f $(CURDIR)/Makefile \
133 $(filter-out _all sub-make,$(MAKECMDGOALS))
1da177e4
LT
134
135# Leave processing to above invocation of make
136skip-makefile := 1
137endif # ifneq ($(KBUILD_OUTPUT),)
138endif # ifeq ($(KBUILD_SRC),)
139
140# We process the rest of the Makefile if this is the final invocation of make
141ifeq ($(skip-makefile),)
142
143# If building an external module we do not care about the all: rule
144# but instead _all depend on modules
4f193362 145PHONY += all
1da177e4
LT
146ifeq ($(KBUILD_EXTMOD),)
147_all: all
148else
149_all: modules
150endif
151
152srctree := $(if $(KBUILD_SRC),$(KBUILD_SRC),$(CURDIR))
1da177e4
LT
153objtree := $(CURDIR)
154src := $(srctree)
155obj := $(objtree)
156
0f558c33 157VPATH := $(srctree)$(if $(KBUILD_EXTMOD),:$(KBUILD_EXTMOD))
1da177e4 158
11294235 159export srctree objtree VPATH
1da177e4 160
1da177e4
LT
161
162# SUBARCH tells the usermode build what the underlying arch is. That is set
163# first, and if a usermode build is happening, the "ARCH=um" on the command
164# line overrides the setting of ARCH below. If a native build is happening,
165# then ARCH is assigned, getting whatever value it gets normally, and
166# SUBARCH is subsequently ignored.
167
168SUBARCH := $(shell uname -m | sed -e s/i.86/i386/ -e s/sun4u/sparc64/ \
169 -e s/arm.*/arm/ -e s/sa110/arm/ \
39990b5e 170 -e s/s390x/s390/ -e s/parisc64/parisc/ \
236b1957 171 -e s/ppc.*/powerpc/ -e s/mips.*/mips/ \
3cc000b5 172 -e s/sh[234].*/sh/ )
1da177e4
LT
173
174# Cross compiling and selecting different set of gcc/bin-utils
175# ---------------------------------------------------------------------------
176#
177# When performing cross compilation for other architectures ARCH shall be set
178# to the target architecture. (See arch/* for the possibilities).
179# ARCH can be set during invocation of make:
180# make ARCH=ia64
181# Another way is to have ARCH set in the environment.
182# The default ARCH is the host where make is executed.
183
184# CROSS_COMPILE specify the prefix used for all executables used
185# during compilation. Only gcc and related bin-utils executables
186# are prefixed with $(CROSS_COMPILE).
187# CROSS_COMPILE can be set on the command line
188# make CROSS_COMPILE=ia64-linux-
189# Alternatively CROSS_COMPILE can be set in the environment.
84336466
RM
190# A third alternative is to store a setting in .config so that plain
191# "make" in the configured kernel build directory always uses that.
1da177e4
LT
192# Default value for CROSS_COMPILE is not to prefix executables
193# Note: Some architectures assign CROSS_COMPILE in their arch/*/Makefile
4ce6efed 194export KBUILD_BUILDHOST := $(SUBARCH)
2331d1a6 195ARCH ?= $(SUBARCH)
84336466 196CROSS_COMPILE ?= $(CONFIG_CROSS_COMPILE:"%"=%)
1da177e4
LT
197
198# Architecture as present in compile.h
6752ed90
TG
199UTS_MACHINE := $(ARCH)
200SRCARCH := $(ARCH)
1da177e4 201
d746d647
SR
202# Additional ARCH settings for x86
203ifeq ($(ARCH),i386)
204 SRCARCH := x86
205endif
206ifeq ($(ARCH),x86_64)
207 SRCARCH := x86
208endif
74b469f2 209
5e538790 210# Additional ARCH settings for sparc
e69f58c0
NK
211ifeq ($(ARCH),sparc32)
212 SRCARCH := sparc
213endif
a439fe51 214ifeq ($(ARCH),sparc64)
5e538790 215 SRCARCH := sparc
a439fe51 216endif
2fb9b1bd 217
3cc000b5
PM
218# Additional ARCH settings for sh
219ifeq ($(ARCH),sh64)
220 SRCARCH := sh
221endif
222
18aecc2b
CM
223# Additional ARCH settings for tile
224ifeq ($(ARCH),tilegx)
225 SRCARCH := tile
226endif
227
5e538790
SR
228# Where to locate arch specific headers
229hdr-arch := $(SRCARCH)
230
49148020
SR
231ifeq ($(ARCH),m68knommu)
232 hdr-arch := m68k
233endif
234
14cdd3c4 235KCONFIG_CONFIG ?= .config
41263fc6 236export KCONFIG_CONFIG
14cdd3c4 237
1da177e4
LT
238# SHELL used by kbuild
239CONFIG_SHELL := $(shell if [ -x "$$BASH" ]; then echo $$BASH; \
240 else if [ -x /bin/bash ]; then echo /bin/bash; \
241 else echo sh; fi ; fi)
242
070b98bf
SR
243HOSTCC = gcc
244HOSTCXX = g++
25583d4b 245HOSTCFLAGS = -Wall -Wmissing-prototypes -Wstrict-prototypes -O2 -fomit-frame-pointer
070b98bf 246HOSTCXXFLAGS = -O2
1da177e4 247
070b98bf
SR
248# Decide whether to build built-in, modular, or both.
249# Normally, just do built-in.
1da177e4
LT
250
251KBUILD_MODULES :=
252KBUILD_BUILTIN := 1
253
254# If we have only "make modules", don't compile built-in objects.
255# When we're building modules with modversions, we need to consider
256# the built-in objects during the descend as well, in order to
070b98bf 257# make sure the checksums are up to date before we record them.
1da177e4
LT
258
259ifeq ($(MAKECMDGOALS),modules)
260 KBUILD_BUILTIN := $(if $(CONFIG_MODVERSIONS),1)
261endif
262
263# If we have "make <whatever> modules", compile modules
264# in addition to whatever we do anyway.
265# Just "make" or "make all" shall build modules as well
266
267ifneq ($(filter all _all modules,$(MAKECMDGOALS)),)
268 KBUILD_MODULES := 1
269endif
270
271ifeq ($(MAKECMDGOALS),)
272 KBUILD_MODULES := 1
273endif
274
e579d351 275export KBUILD_MODULES KBUILD_BUILTIN
1da177e4
LT
276export KBUILD_CHECKSRC KBUILD_SRC KBUILD_EXTMOD
277
278# Beautify output
279# ---------------------------------------------------------------------------
280#
281# Normally, we echo the whole command before executing it. By making
282# that echo $($(quiet)$(cmd)), we now have the possibility to set
283# $(quiet) to choose other forms of output instead, e.g.
284#
285# quiet_cmd_cc_o_c = Compiling $(RELDIR)/$@
286# cmd_cc_o_c = $(CC) $(c_flags) -c -o $@ $<
287#
288# If $(quiet) is empty, the whole command will be printed.
289# If it is set to "quiet_", only the short version will be printed.
070b98bf 290# If it is set to "silent_", nothing will be printed at all, since
1da177e4
LT
291# the variable $(silent_cmd_cc_o_c) doesn't exist.
292#
a58a414f 293# A simple variant is to prefix commands with $(Q) - that's useful
1da177e4
LT
294# for commands that shall be hidden in non-verbose mode.
295#
296# $(Q)ln $@ :<
297#
298# If KBUILD_VERBOSE equals 0 then the above command will be hidden.
299# If KBUILD_VERBOSE equals 1 then the above command is displayed.
300
301ifeq ($(KBUILD_VERBOSE),1)
302 quiet =
303 Q =
304else
305 quiet=quiet_
306 Q = @
307endif
308
309# If the user is running make -s (silent mode), suppress echoing of
310# commands
311
312ifneq ($(findstring s,$(MAKEFLAGS)),)
313 quiet=silent_
314endif
315
316export quiet Q KBUILD_VERBOSE
317
1da177e4
LT
318
319# Look for make include files relative to root of kernel src
320MAKEFLAGS += --include-dir=$(srctree)
321
1cacc9ab
SR
322# We need some generic definitions (do not try to remake the file).
323$(srctree)/scripts/Kbuild.include: ;
15964864 324include $(srctree)/scripts/Kbuild.include
1da177e4
LT
325
326# Make variables (CC, etc...)
327
328AS = $(CROSS_COMPILE)as
329LD = $(CROSS_COMPILE)ld
330CC = $(CROSS_COMPILE)gcc
331CPP = $(CC) -E
332AR = $(CROSS_COMPILE)ar
333NM = $(CROSS_COMPILE)nm
334STRIP = $(CROSS_COMPILE)strip
335OBJCOPY = $(CROSS_COMPILE)objcopy
336OBJDUMP = $(CROSS_COMPILE)objdump
337AWK = awk
338GENKSYMS = scripts/genksyms/genksyms
caa27b66 339INSTALLKERNEL := installkernel
1da177e4
LT
340DEPMOD = /sbin/depmod
341KALLSYMS = scripts/kallsyms
342PERL = perl
343CHECK = sparse
344
80a7d1d9
HE
345CHECKFLAGS := -D__linux__ -Dlinux -D__STDC__ -Dunix -D__unix__ \
346 -Wbitwise -Wno-return-void $(CF)
6588169d
SR
347CFLAGS_MODULE =
348AFLAGS_MODULE =
349LDFLAGS_MODULE =
1da177e4
LT
350CFLAGS_KERNEL =
351AFLAGS_KERNEL =
2521f2c2 352CFLAGS_GCOV = -fprofile-arcs -ftest-coverage
1da177e4
LT
353
354
355# Use LINUXINCLUDE when you must reference the include/ directory.
356# Needed to be compatible with the O= option
24a675e8 357LINUXINCLUDE := -I$(srctree)/arch/$(hdr-arch)/include -Iinclude \
96f13045 358 $(if $(KBUILD_SRC), -I$(srctree)/include) \
264a2683 359 -include include/generated/autoconf.h
1da177e4 360
d8672b40 361KBUILD_CPPFLAGS := -D__KERNEL__
1da177e4 362
a0f97e06 363KBUILD_CFLAGS := -Wall -Wundef -Wstrict-prototypes -Wno-trigraphs \
94bed2a9 364 -fno-strict-aliasing -fno-common \
a8735821 365 -Werror-implicit-function-declaration \
a3ca86ae
ET
366 -Wno-format-security \
367 -fno-delete-null-pointer-checks
80c00ba9
SR
368KBUILD_AFLAGS_KERNEL :=
369KBUILD_CFLAGS_KERNEL :=
222d394d 370KBUILD_AFLAGS := -D__ASSEMBLY__
6588169d
SR
371KBUILD_AFLAGS_MODULE := -DMODULE
372KBUILD_CFLAGS_MODULE := -DMODULE
373KBUILD_LDFLAGS_MODULE := -T $(srctree)/scripts/module-common.lds
1da177e4 374
f1d28fb0
RZ
375# Read KERNELRELEASE from include/config/kernel.release (if it exists)
376KERNELRELEASE = $(shell cat include/config/kernel.release 2> /dev/null)
2244cbd8 377KERNELVERSION = $(VERSION).$(PATCHLEVEL).$(SUBLEVEL)$(EXTRAVERSION)
cb58455c 378
070b98bf 379export VERSION PATCHLEVEL SUBLEVEL KERNELRELEASE KERNELVERSION
80ef88d6 380export ARCH SRCARCH CONFIG_SHELL HOSTCC HOSTCFLAGS CROSS_COMPILE AS LD CC
caa27b66
SR
381export CPP AR NM STRIP OBJCOPY OBJDUMP
382export MAKE AWK GENKSYMS INSTALLKERNEL PERL UTS_MACHINE
070b98bf 383export HOSTCXX HOSTCXXFLAGS LDFLAGS_MODULE CHECK CHECKFLAGS
1da177e4 384
06c5040c 385export KBUILD_CPPFLAGS NOSTDINC_FLAGS LINUXINCLUDE OBJCOPYFLAGS LDFLAGS
2521f2c2 386export KBUILD_CFLAGS CFLAGS_KERNEL CFLAGS_MODULE CFLAGS_GCOV
222d394d 387export KBUILD_AFLAGS AFLAGS_KERNEL AFLAGS_MODULE
6588169d 388export KBUILD_AFLAGS_MODULE KBUILD_CFLAGS_MODULE KBUILD_LDFLAGS_MODULE
80c00ba9 389export KBUILD_AFLAGS_KERNEL KBUILD_CFLAGS_KERNEL
1da177e4
LT
390
391# When compiling out-of-tree modules, put MODVERDIR in the module
392# tree rather than in the kernel tree. The kernel tree might
393# even be read-only.
394export MODVERDIR := $(if $(KBUILD_EXTMOD),$(firstword $(KBUILD_EXTMOD))/).tmp_versions
395
1da177e4
LT
396# Files to ignore in find ... statements
397
406119f4
TM
398RCS_FIND_IGNORE := \( -name SCCS -o -name BitKeeper -o -name .svn -o -name CVS -o -name .pc -o -name .hg -o -name .git \) -prune -o
399export RCS_TAR_IGNORE := --exclude SCCS --exclude BitKeeper --exclude .svn --exclude CVS --exclude .pc --exclude .hg --exclude .git
1da177e4
LT
400
401# ===========================================================================
402# Rules shared between *config targets and build targets
403
404# Basic helpers built in scripts/
4f193362 405PHONY += scripts_basic
1da177e4
LT
406scripts_basic:
407 $(Q)$(MAKE) $(build)=scripts/basic
638adb05 408 $(Q)rm -f .tmp_quiet_recordmcount
1da177e4 409
cd05e6bd
JB
410# To avoid any implicit rule to kick in, define an empty command.
411scripts/basic/%: scripts_basic ;
412
4f193362 413PHONY += outputmakefile
fd5f0cd6
JB
414# outputmakefile generates a Makefile in the output directory, if using a
415# separate output directory. This allows convenient use of make in the
416# output directory.
1da177e4 417outputmakefile:
fd5f0cd6 418ifneq ($(KBUILD_SRC),)
92979997 419 $(Q)ln -fsn $(srctree) source
fd5f0cd6
JB
420 $(Q)$(CONFIG_SHELL) $(srctree)/scripts/mkmakefile \
421 $(srctree) $(objtree) $(VERSION) $(PATCHLEVEL)
422endif
1da177e4
LT
423
424# To make sure we do not include .config for any of the *config targets
425# catch them early, and hand them over to scripts/kconfig/Makefile
426# It is allowed to specify more targets when calling make, including
427# mixing *config targets and build targets.
070b98bf 428# For example 'make oldconfig all'.
1da177e4
LT
429# Detect when mixed targets is specified, and make a second invocation
430# of make so .config is not included in this case either (for *config).
431
3eb3c740 432no-dot-config-targets := clean mrproper distclean \
f4ed1009 433 cscope gtags TAGS tags help %docs check% coccicheck \
3eb3c740 434 include/linux/version.h headers_% \
4aed2fd8 435 kernelversion %src-pkg
1da177e4
LT
436
437config-targets := 0
438mixed-targets := 0
439dot-config := 1
440
441ifneq ($(filter $(no-dot-config-targets), $(MAKECMDGOALS)),)
442 ifeq ($(filter-out $(no-dot-config-targets), $(MAKECMDGOALS)),)
443 dot-config := 0
444 endif
445endif
446
447ifeq ($(KBUILD_EXTMOD),)
448 ifneq ($(filter config %config,$(MAKECMDGOALS)),)
449 config-targets := 1
450 ifneq ($(filter-out config %config,$(MAKECMDGOALS)),)
451 mixed-targets := 1
452 endif
453 endif
454endif
455
456ifeq ($(mixed-targets),1)
457# ===========================================================================
458# We're called with mixed targets (*config and build targets).
459# Handle them one by one.
460
461%:: FORCE
462 $(Q)$(MAKE) -C $(srctree) KBUILD_SRC= $@
463
464else
465ifeq ($(config-targets),1)
466# ===========================================================================
467# *config targets only - make sure prerequisites are updated, and descend
468# in scripts/kconfig to make the *config target
469
470# Read arch specific Makefile to set KBUILD_DEFCONFIG as needed.
471# KBUILD_DEFCONFIG may point out an alternative default configuration
472# used for 'make defconfig'
74b469f2 473include $(srctree)/arch/$(SRCARCH)/Makefile
61bee204 474export KBUILD_DEFCONFIG KBUILD_KCONFIG
1da177e4 475
31110ebb
SR
476config: scripts_basic outputmakefile FORCE
477 $(Q)mkdir -p include/linux include/config
478 $(Q)$(MAKE) $(build)=scripts/kconfig $@
479
480%config: scripts_basic outputmakefile FORCE
c955ccaf 481 $(Q)mkdir -p include/linux include/config
1da177e4
LT
482 $(Q)$(MAKE) $(build)=scripts/kconfig $@
483
484else
485# ===========================================================================
486# Build targets only - this includes vmlinux, arch specific targets, clean
487# targets and others. In general all targets except *config targets.
488
489ifeq ($(KBUILD_EXTMOD),)
490# Additional helpers built in scripts/
491# Carefully list dependencies so we do not try to build scripts twice
070b98bf 492# in parallel
4f193362 493PHONY += scripts
bc081dd6 494scripts: scripts_basic include/config/auto.conf include/config/tristate.conf
1da177e4
LT
495 $(Q)$(MAKE) $(build)=$(@)
496
1da177e4
LT
497# Objects we will link into vmlinux / subdirs we need to visit
498init-y := init/
4d2acfbf 499drivers-y := drivers/ sound/ firmware/
1da177e4
LT
500net-y := net/
501libs-y := lib/
502core-y := usr/
503endif # KBUILD_EXTMOD
504
505ifeq ($(dot-config),1)
9ee4e336
SR
506# Read in config
507-include include/config/auto.conf
1da177e4 508
9ee4e336 509ifeq ($(KBUILD_EXTMOD),)
1da177e4
LT
510# Read in dependencies to all Kconfig* files, make sure to run
511# oldconfig if changes are detected.
c955ccaf 512-include include/config/auto.conf.cmd
1da177e4 513
1da177e4 514# To avoid any implicit rule to kick in, define an empty command
14cdd3c4 515$(KCONFIG_CONFIG) include/config/auto.conf.cmd: ;
1da177e4 516
c955ccaf 517# If .config is newer than include/config/auto.conf, someone tinkered
752625cf 518# with it and forgot to run make oldconfig.
070b98bf 519# if auto.conf.cmd is missing then we are probably in a cleaned tree so
752625cf 520# we execute the config step to be sure to catch updated Kconfig files
bc081dd6 521include/config/%.conf: $(KCONFIG_CONFIG) include/config/auto.conf.cmd
1da177e4 522 $(Q)$(MAKE) -f $(srctree)/Makefile silentoldconfig
3041e47e 523else
264a2683 524# external modules needs include/generated/autoconf.h and include/config/auto.conf
9ee4e336
SR
525# but do not care if they are up-to-date. Use auto.conf to trigger the test
526PHONY += include/config/auto.conf
527
528include/config/auto.conf:
264a2683 529 $(Q)test -e include/generated/autoconf.h -a -e $@ || ( \
9ee4e336
SR
530 echo; \
531 echo " ERROR: Kernel configuration is invalid."; \
264a2683 532 echo " include/generated/autoconf.h or $@ are missing.";\
9ee4e336
SR
533 echo " Run 'make oldconfig && make prepare' on kernel src to fix it."; \
534 echo; \
535 /bin/false)
536
537endif # KBUILD_EXTMOD
c955ccaf 538
1da177e4
LT
539else
540# Dummy target needed, because used as prerequisite
c955ccaf 541include/config/auto.conf: ;
9ee4e336 542endif # $(dot-config)
1da177e4
LT
543
544# The all: target is the default when no target is given on the
545# command line.
546# This allow a user to issue only 'make' to build a kernel including modules
c8447161 547# Defaults to vmlinux, but the arch makefile usually adds further targets
1da177e4
LT
548all: vmlinux
549
550ifdef CONFIG_CC_OPTIMIZE_FOR_SIZE
a0f97e06 551KBUILD_CFLAGS += -Os
1da177e4 552else
a0f97e06 553KBUILD_CFLAGS += -O2
1da177e4
LT
554endif
555
bef5b54b
RB
556include $(srctree)/arch/$(SRCARCH)/Makefile
557
08f67461 558ifneq ($(CONFIG_FRAME_WARN),0)
35bb5b1e
AK
559KBUILD_CFLAGS += $(call cc-option,-Wframe-larger-than=${CONFIG_FRAME_WARN})
560endif
561
e06b8b98 562# Force gcc to behave correct even for buggy distributions
5d707e9c 563ifndef CONFIG_CC_STACKPROTECTOR
e06b8b98 564KBUILD_CFLAGS += $(call cc-option, -fno-stack-protector)
5d707e9c 565endif
e06b8b98 566
1da177e4 567ifdef CONFIG_FRAME_POINTER
a0f97e06 568KBUILD_CFLAGS += -fno-omit-frame-pointer -fno-optimize-sibling-calls
1da177e4 569else
7e9501fd
RV
570# Some targets (ARM with Thumb2, for example), can't be built with frame
571# pointers. For those, we don't have FUNCTION_TRACER automatically
572# select FRAME_POINTER. However, FUNCTION_TRACER adds -pg, and this is
573# incompatible with -fomit-frame-pointer with current GCC, so we don't use
574# -fomit-frame-pointer with FUNCTION_TRACER.
575ifndef CONFIG_FUNCTION_TRACER
a0f97e06 576KBUILD_CFLAGS += -fomit-frame-pointer
1da177e4 577endif
7e9501fd 578endif
1da177e4
LT
579
580ifdef CONFIG_DEBUG_INFO
a0f97e06 581KBUILD_CFLAGS += -g
222d394d 582KBUILD_AFLAGS += -gdwarf-2
1da177e4
LT
583endif
584
d6f4ceb7
AK
585ifdef CONFIG_DEBUG_INFO_REDUCED
586KBUILD_CFLAGS += $(call cc-option, -femit-struct-debug-baseonly)
587endif
588
606576ce 589ifdef CONFIG_FUNCTION_TRACER
16444a8a 590KBUILD_CFLAGS += -pg
72441cb1 591ifdef CONFIG_DYNAMIC_FTRACE
cf4db259 592 ifdef CONFIG_HAVE_C_RECORDMCOUNT
72441cb1
SR
593 BUILD_C_RECORDMCOUNT := y
594 export BUILD_C_RECORDMCOUNT
595 endif
596endif
16444a8a
ACM
597endif
598
91341d4b
SR
599# We trigger additional mismatches with less inlining
600ifdef CONFIG_DEBUG_SECTION_MISMATCH
601KBUILD_CFLAGS += $(call cc-option, -fno-inline-functions-called-once)
602endif
603
e8e69931 604# arch Makefile may override CC so keep this after arch Makefile is included
e8f5bdb0 605NOSTDINC_FLAGS += -nostdinc -isystem $(shell $(CC) -print-file-name=include)
e8e69931
SR
606CHECKFLAGS += $(NOSTDINC_FLAGS)
607
1da177e4 608# warn about C99 declaration after statement
a0f97e06 609KBUILD_CFLAGS += $(call cc-option,-Wdeclaration-after-statement,)
1da177e4 610
070b98bf 611# disable pointer signed / unsigned warnings in gcc 4.0
a0f97e06 612KBUILD_CFLAGS += $(call cc-option,-Wno-pointer-sign,)
1da177e4 613
fe8d0a41 614# disable invalid "can't wrap" optimizations for signed / pointers
a137802e 615KBUILD_CFLAGS += $(call cc-option,-fno-strict-overflow)
d0115552 616
8f7f5c9f
AK
617# conserve stack if available
618KBUILD_CFLAGS += $(call cc-option,-fconserve-stack)
619
bf5438fc
JB
620# check for 'asm goto'
621ifeq ($(shell $(CONFIG_SHELL) $(srctree)/scripts/gcc-goto.sh $(CC)), y)
622 KBUILD_CFLAGS += -DCC_HAVE_ASM_GOTO
623endif
624
06c5040c 625# Add user supplied CPPFLAGS, AFLAGS and CFLAGS as the last assignments
69ee0b35
SR
626# But warn user when we do so
627warn-assign = \
628$(warning "WARNING: Appending $$K$(1) ($(K$(1))) from $(origin K$(1)) to kernel $$$(1)")
629
630ifneq ($(KCPPFLAGS),)
631 $(call warn-assign,CPPFLAGS)
632 KBUILD_CPPFLAGS += $(KCPPFLAGS)
633endif
634ifneq ($(KAFLAGS),)
635 $(call warn-assign,AFLAGS)
636 KBUILD_AFLAGS += $(KAFLAGS)
637endif
638ifneq ($(KCFLAGS),)
639 $(call warn-assign,CFLAGS)
640 KBUILD_CFLAGS += $(KCFLAGS)
641endif
52bcc330 642
18991197
RM
643# Use --build-id when available.
644LDFLAGS_BUILD_ID = $(patsubst -Wl$(comma)%,%,\
f86fd306 645 $(call cc-ldoption, -Wl$(comma)--build-id,))
6588169d 646KBUILD_LDFLAGS_MODULE += $(LDFLAGS_BUILD_ID)
18991197
RM
647LDFLAGS_vmlinux += $(LDFLAGS_BUILD_ID)
648
5d7d18f5 649ifeq ($(CONFIG_STRIP_ASM_SYMS),y)
d79a2719 650LDFLAGS_vmlinux += $(call ld-option, -X,)
5d7d18f5
DH
651endif
652
1da177e4 653# Default kernel image to build when no specific target is given.
070b98bf 654# KBUILD_IMAGE may be overruled on the command line or
1da177e4
LT
655# set in the environment
656# Also any assignments in arch/$(ARCH)/Makefile take precedence over
657# this default value
658export KBUILD_IMAGE ?= vmlinux
659
660#
661# INSTALL_PATH specifies where to place the updated kernel and system map
662# images. Default is /boot, but you can set it to other values
663export INSTALL_PATH ?= /boot
664
665#
666# INSTALL_MOD_PATH specifies a prefix to MODLIB for module directory
667# relocations required by build roots. This is not defined in the
070b98bf 668# makefile but the argument can be passed to make if needed.
1da177e4
LT
669#
670
df9df036 671MODLIB = $(INSTALL_MOD_PATH)/lib/modules/$(KERNELRELEASE)
1da177e4
LT
672export MODLIB
673
ac031f26 674#
2ea03891
SR
675# INSTALL_MOD_STRIP, if defined, will cause modules to be
676# stripped after they are installed. If INSTALL_MOD_STRIP is '1', then
677# the default option --strip-debug will be used. Otherwise,
177b241d 678# INSTALL_MOD_STRIP value will be used as the options to the strip command.
2ea03891 679
ac031f26
TT
680ifdef INSTALL_MOD_STRIP
681ifeq ($(INSTALL_MOD_STRIP),1)
2ea03891 682mod_strip_cmd = $(STRIP) --strip-debug
ac031f26 683else
2ea03891 684mod_strip_cmd = $(STRIP) $(INSTALL_MOD_STRIP)
ac031f26
TT
685endif # INSTALL_MOD_STRIP=1
686else
2ea03891 687mod_strip_cmd = true
ac031f26
TT
688endif # INSTALL_MOD_STRIP
689export mod_strip_cmd
690
1da177e4
LT
691
692ifeq ($(KBUILD_EXTMOD),)
3a65dfe8 693core-y += kernel/ mm/ fs/ ipc/ security/ crypto/ block/
1da177e4
LT
694
695vmlinux-dirs := $(patsubst %/,%,$(filter %/, $(init-y) $(init-m) \
696 $(core-y) $(core-m) $(drivers-y) $(drivers-m) \
697 $(net-y) $(net-m) $(libs-y) $(libs-m)))
698
699vmlinux-alldirs := $(sort $(vmlinux-dirs) $(patsubst %/,%,$(filter %/, \
700 $(init-n) $(init-) \
701 $(core-n) $(core-) $(drivers-n) $(drivers-) \
702 $(net-n) $(net-) $(libs-n) $(libs-))))
703
704init-y := $(patsubst %/, %/built-in.o, $(init-y))
705core-y := $(patsubst %/, %/built-in.o, $(core-y))
706drivers-y := $(patsubst %/, %/built-in.o, $(drivers-y))
707net-y := $(patsubst %/, %/built-in.o, $(net-y))
708libs-y1 := $(patsubst %/, %/lib.a, $(libs-y))
709libs-y2 := $(patsubst %/, %/built-in.o, $(libs-y))
710libs-y := $(libs-y1) $(libs-y2)
711
712# Build vmlinux
713# ---------------------------------------------------------------------------
070b98bf 714# vmlinux is built from the objects selected by $(vmlinux-init) and
1da177e4 715# $(vmlinux-main). Most are built-in.o files from top-level directories
2462566f 716# in the kernel tree, others are specified in arch/$(ARCH)/Makefile.
1da177e4
LT
717# Ordering when linking is important, and $(vmlinux-init) must be first.
718#
719# vmlinux
720# ^
721# |
722# +-< $(vmlinux-init)
723# | +--< init/version.o + more
724# |
725# +--< $(vmlinux-main)
726# | +--< driver/built-in.o mm/built-in.o + more
727# |
728# +-< kallsyms.o (see description in CONFIG_KALLSYMS section)
729#
730# vmlinux version (uname -v) cannot be updated during normal
731# descending-into-subdirs phase since we do not yet know if we need to
732# update vmlinux.
733# Therefore this step is delayed until just before final link of vmlinux -
734# except in the kallsyms case where it is done just before adding the
735# symbols to the kernel.
736#
737# System.map is generated to document addresses of all kernel symbols
738
739vmlinux-init := $(head-y) $(init-y)
740vmlinux-main := $(core-y) $(libs-y) $(drivers-y) $(net-y)
741vmlinux-all := $(vmlinux-init) $(vmlinux-main)
6752ed90 742vmlinux-lds := arch/$(SRCARCH)/kernel/vmlinux.lds
85bd2fdd 743export KBUILD_VMLINUX_OBJS := $(vmlinux-all)
1da177e4
LT
744
745# Rule to link vmlinux - also used during CONFIG_KALLSYMS
746# May be overridden by arch/$(ARCH)/Makefile
747quiet_cmd_vmlinux__ ?= LD $@
748 cmd_vmlinux__ ?= $(LD) $(LDFLAGS) $(LDFLAGS_vmlinux) -o $@ \
749 -T $(vmlinux-lds) $(vmlinux-init) \
750 --start-group $(vmlinux-main) --end-group \
741f98fe 751 $(filter-out $(vmlinux-lds) $(vmlinux-init) $(vmlinux-main) vmlinux.o FORCE ,$^)
1da177e4
LT
752
753# Generate new vmlinux version
754quiet_cmd_vmlinux_version = GEN .version
755 cmd_vmlinux_version = set -e; \
4e25d8bb
JB
756 if [ ! -r .version ]; then \
757 rm -f .version; \
758 echo 1 >.version; \
759 else \
760 mv .version .old_version; \
761 expr 0$$(cat .old_version) + 1 >.version; \
762 fi; \
1da177e4
LT
763 $(MAKE) $(build)=init
764
765# Generate System.map
070b98bf 766quiet_cmd_sysmap = SYSMAP
1da177e4
LT
767 cmd_sysmap = $(CONFIG_SHELL) $(srctree)/scripts/mksysmap
768
769# Link of vmlinux
770# If CONFIG_KALLSYMS is set .version is already updated
771# Generate System.map and verify that the content is consistent
39ca371c
MR
772# Use + in front of the vmlinux_version rule to silent warning with make -j2
773# First command is ':' to allow us to use + in front of the rule
1da177e4 774define rule_vmlinux__
39ca371c 775 :
1da177e4
LT
776 $(if $(CONFIG_KALLSYMS),,+$(call cmd,vmlinux_version))
777
778 $(call cmd,vmlinux__)
779 $(Q)echo 'cmd_$@ := $(cmd_vmlinux__)' > $(@D)/.$(@F).cmd
780
4635281c
SR
781 $(Q)$(if $($(quiet)cmd_sysmap), \
782 echo ' $($(quiet)cmd_sysmap) System.map' &&) \
783 $(cmd_sysmap) $@ System.map; \
784 if [ $$? -ne 0 ]; then \
785 rm -f $@; \
786 /bin/false; \
1da177e4
LT
787 fi;
788 $(verify_kallsyms)
789endef
790
791
792ifdef CONFIG_KALLSYMS
793# Generate section listing all symbols and add it into vmlinux $(kallsyms.o)
794# It's a three stage process:
795# o .tmp_vmlinux1 has all symbols and sections, but __kallsyms is
796# empty
797# Running kallsyms on that gives us .tmp_kallsyms1.o with
798# the right size - vmlinux version (uname -v) is updated during this step
799# o .tmp_vmlinux2 now has a __kallsyms section of the right size,
800# but due to the added section, some addresses have shifted.
801# From here, we generate a correct .tmp_kallsyms2.o
802# o The correct .tmp_kallsyms2.o is linked into the final vmlinux.
803# o Verify that the System.map from vmlinux matches the map from
804# .tmp_vmlinux2, just in case we did not generate kallsyms correctly.
805# o If CONFIG_KALLSYMS_EXTRA_PASS is set, do an extra pass using
806# .tmp_vmlinux3 and .tmp_kallsyms3.o. This is only meant as a
807# temporary bypass to allow the kernel to be built while the
808# maintainers work out what went wrong with kallsyms.
809
810ifdef CONFIG_KALLSYMS_EXTRA_PASS
811last_kallsyms := 3
812else
813last_kallsyms := 2
814endif
815
816kallsyms.o := .tmp_kallsyms$(last_kallsyms).o
817
818define verify_kallsyms
4635281c
SR
819 $(Q)$(if $($(quiet)cmd_sysmap), \
820 echo ' $($(quiet)cmd_sysmap) .tmp_System.map' &&) \
1da177e4 821 $(cmd_sysmap) .tmp_vmlinux$(last_kallsyms) .tmp_System.map
4635281c
SR
822 $(Q)cmp -s System.map .tmp_System.map || \
823 (echo Inconsistent kallsyms data; \
824 echo Try setting CONFIG_KALLSYMS_EXTRA_PASS; \
1da177e4
LT
825 rm .tmp_kallsyms* ; /bin/false )
826endef
827
828# Update vmlinux version before link
829# Use + in front of this rule to silent warning about make -j1
72ba47c1 830# First command is ':' to allow us to use + in front of this rule
1da177e4
LT
831cmd_ksym_ld = $(cmd_vmlinux__)
832define rule_ksym_ld
72ba47c1 833 :
1da177e4
LT
834 +$(call cmd,vmlinux_version)
835 $(call cmd,vmlinux__)
836 $(Q)echo 'cmd_$@ := $(cmd_vmlinux__)' > $(@D)/.$(@F).cmd
837endef
838
839# Generate .S file with all kernel symbols
840quiet_cmd_kallsyms = KSYM $@
2ea03891
SR
841 cmd_kallsyms = $(NM) -n $< | $(KALLSYMS) \
842 $(if $(CONFIG_KALLSYMS_ALL),--all-symbols) > $@
9bb48247 843
2ea03891 844.tmp_kallsyms1.o .tmp_kallsyms2.o .tmp_kallsyms3.o: %.o: %.S scripts FORCE
1da177e4
LT
845 $(call if_changed_dep,as_o_S)
846
2ea03891 847.tmp_kallsyms%.S: .tmp_vmlinux% $(KALLSYMS)
1da177e4
LT
848 $(call cmd,kallsyms)
849
850# .tmp_vmlinux1 must be complete except kallsyms, so update vmlinux version
2ea03891
SR
851.tmp_vmlinux1: $(vmlinux-lds) $(vmlinux-all) FORCE
852 $(call if_changed_rule,ksym_ld)
1da177e4 853
2ea03891
SR
854.tmp_vmlinux2: $(vmlinux-lds) $(vmlinux-all) .tmp_kallsyms1.o FORCE
855 $(call if_changed,vmlinux__)
1da177e4 856
2ea03891
SR
857.tmp_vmlinux3: $(vmlinux-lds) $(vmlinux-all) .tmp_kallsyms2.o FORCE
858 $(call if_changed,vmlinux__)
1da177e4
LT
859
860# Needs to visit scripts/ before $(KALLSYMS) can be used.
861$(KALLSYMS): scripts ;
862
33bc25ea
SR
863# Generate some data for debugging strange kallsyms problems
864debug_kallsyms: .tmp_map$(last_kallsyms)
865
866.tmp_map%: .tmp_vmlinux% FORCE
867 ($(OBJDUMP) -h $< | $(AWK) '/^ +[0-9]/{print $$4 " 0 " $$2}'; $(NM) $<) | sort > $@
868
869.tmp_map3: .tmp_map2
870
871.tmp_map2: .tmp_map1
872
1da177e4
LT
873endif # ifdef CONFIG_KALLSYMS
874
741f98fe
SR
875# Do modpost on a prelinked vmlinux. The finally linked vmlinux has
876# relevant sections renamed as per the linker script.
877quiet_cmd_vmlinux-modpost = LD $@
878 cmd_vmlinux-modpost = $(LD) $(LDFLAGS) -r -o $@ \
879 $(vmlinux-init) --start-group $(vmlinux-main) --end-group \
90ebd878 880 $(filter-out $(vmlinux-init) $(vmlinux-main) FORCE ,$^)
741f98fe
SR
881define rule_vmlinux-modpost
882 :
883 +$(call cmd,vmlinux-modpost)
884 $(Q)$(MAKE) -f $(srctree)/scripts/Makefile.modpost $@
885 $(Q)echo 'cmd_$@ := $(cmd_vmlinux-modpost)' > $(dot-target).cmd
886endef
887
1da177e4 888# vmlinux image - including updated kernel symbols
310f8243 889vmlinux: $(vmlinux-lds) $(vmlinux-init) $(vmlinux-main) vmlinux.o $(kallsyms.o) FORCE
0f836e5f 890ifdef CONFIG_HEADERS_CHECK
0e7af8d0 891 $(Q)$(MAKE) -f $(srctree)/Makefile headers_check
267c4025
MD
892endif
893ifdef CONFIG_SAMPLES
894 $(Q)$(MAKE) $(build)=samples
3794f3e8
RD
895endif
896ifdef CONFIG_BUILD_DOCSRC
897 $(Q)$(MAKE) $(build)=Documentation
0f836e5f 898endif
741f98fe 899 $(call vmlinux-modpost)
1da177e4 900 $(call if_changed_rule,vmlinux__)
4e25d8bb 901 $(Q)rm -f .old_version
1da177e4 902
310f8243 903# build vmlinux.o first to catch section mismatch errors early
cf87dcd1
SR
904ifdef CONFIG_KALLSYMS
905.tmp_vmlinux1: vmlinux.o
906endif
90ebd878
SR
907
908modpost-init := $(filter-out init/built-in.o, $(vmlinux-init))
909vmlinux.o: $(modpost-init) $(vmlinux-main) FORCE
741f98fe
SR
910 $(call if_changed_rule,vmlinux-modpost)
911
1da177e4
LT
912# The actual objects are generated when descending,
913# make sure no implicit rule kicks in
914$(sort $(vmlinux-init) $(vmlinux-main)) $(vmlinux-lds): $(vmlinux-dirs) ;
915
916# Handle descending into subdirectories listed in $(vmlinux-dirs)
917# Preset locale variables to speed up the build process. Limit locale
918# tweaks to this spot to avoid wrong language settings when running
919# make menuconfig etc.
920# Error messages still appears in the original language
921
4f193362 922PHONY += $(vmlinux-dirs)
5bb78269 923$(vmlinux-dirs): prepare scripts
1da177e4
LT
924 $(Q)$(MAKE) $(build)=$@
925
f1d28fb0 926# Store (new) KERNELRELASE string in include/config/kernel.release
f1d28fb0 927include/config/kernel.release: include/config/auto.conf FORCE
2244cbd8 928 $(Q)rm -f $@
7263e715 929 $(Q)echo "$(KERNELVERSION)$$($(CONFIG_SHELL) $(srctree)/scripts/setlocalversion $(srctree))" > $@
cb58455c
SR
930
931
1da177e4 932# Things we need to do before we recursively start building the kernel
5bb78269
SR
933# or the modules are listed in "prepare".
934# A multi level approach is used. prepareN is processed before prepareN-1.
935# archprepare is used in arch Makefiles and when processed asm symlink,
936# version.h and scripts_basic is processed / created.
1da177e4 937
5bb78269 938# Listed in dependency order
4f193362 939PHONY += prepare archprepare prepare0 prepare1 prepare2 prepare3
5bb78269 940
86feeaa8 941# prepare3 is used to check if we are building in a separate output directory,
1da177e4
LT
942# and if so do:
943# 1) Check that make has not been executed in the kernel src $(srctree)
f1d28fb0 944prepare3: include/config/kernel.release
1da177e4 945ifneq ($(KBUILD_SRC),)
fd54f502 946 @$(kecho) ' Using $(srctree) as source for kernel'
c955ccaf 947 $(Q)if [ -f $(srctree)/.config -o -d $(srctree)/include/config ]; then \
1da177e4
LT
948 echo " $(srctree) is not clean, please run 'make mrproper'";\
949 echo " in the '$(srctree)' directory.";\
950 /bin/false; \
951 fi;
1da177e4
LT
952endif
953
86feeaa8
SR
954# prepare2 creates a makefile if using a separate output directory
955prepare2: prepare3 outputmakefile
1da177e4 956
273b281f 957prepare1: prepare2 include/linux/version.h include/generated/utsrelease.h \
f7f16b77 958 include/config/auto.conf
7bb9d092 959 $(cmd_crmodverdir)
1da177e4 960
5bb78269
SR
961archprepare: prepare1 scripts_basic
962
963prepare0: archprepare FORCE
8d36a623 964 $(Q)$(MAKE) $(build)=.
c53aeca0 965 $(Q)$(MAKE) $(build)=. missing-syscalls
86feeaa8 966
1da177e4 967# All the preparing..
d395efb5 968prepare: prepare0
1da177e4 969
1da177e4
LT
970# Generate some files
971# ---------------------------------------------------------------------------
972
973# KERNELRELEASE can change from a few different places, meaning version.h
974# needs to be updated, so this check is forced on all builds
975
976uts_len := 64
63104eec
SR
977define filechk_utsrelease.h
978 if [ `echo -n "$(KERNELRELEASE)" | wc -c ` -gt $(uts_len) ]; then \
979 echo '"$(KERNELRELEASE)" exceeds $(uts_len) characters' >&2; \
980 exit 1; \
981 fi; \
982 (echo \#define UTS_RELEASE \"$(KERNELRELEASE)\";)
983endef
1da177e4
LT
984
985define filechk_version.h
63104eec
SR
986 (echo \#define LINUX_VERSION_CODE $(shell \
987 expr $(VERSION) \* 65536 + $(PATCHLEVEL) \* 256 + $(SUBLEVEL)); \
988 echo '#define KERNEL_VERSION(a,b,c) (((a) << 16) + ((b) << 8) + (c))';)
1da177e4
LT
989endef
990
63104eec 991include/linux/version.h: $(srctree)/Makefile FORCE
1da177e4
LT
992 $(call filechk,version.h)
993
273b281f 994include/generated/utsrelease.h: include/config/kernel.release FORCE
63104eec
SR
995 $(call filechk,utsrelease.h)
996
179efcb4
VN
997PHONY += headerdep
998headerdep:
999 $(Q)find include/ -name '*.h' | xargs --max-args 1 scripts/headerdep.pl
1000
1da177e4
LT
1001# ---------------------------------------------------------------------------
1002
4f193362 1003PHONY += depend dep
1da177e4
LT
1004depend dep:
1005 @echo '*** Warning: make $@ is unnecessary now.'
1006
88ecf814
DW
1007# ---------------------------------------------------------------------------
1008# Firmware install
1009INSTALL_FW_PATH=$(INSTALL_MOD_PATH)/lib/firmware
1010export INSTALL_FW_PATH
1011
1012PHONY += firmware_install
1013firmware_install: FORCE
1014 @mkdir -p $(objtree)/firmware
1015 $(Q)$(MAKE) -f $(srctree)/scripts/Makefile.fwinst obj=firmware __fw_install
1016
8d730cfb
DW
1017# ---------------------------------------------------------------------------
1018# Kernel headers
8d730cfb 1019
e6883b18
SR
1020#Default location for installed headers
1021export INSTALL_HDR_PATH = $(objtree)/usr
6d716275 1022
e6883b18 1023hdr-inst := -rR -f $(srctree)/scripts/Makefile.headersinst obj
2fb9b1bd
SR
1024
1025# If we do an all arch process set dst to asm-$(hdr-arch)
1026hdr-dst = $(if $(KBUILD_HEADERS), dst=include/asm-$(hdr-arch), dst=include/asm)
e6883b18
SR
1027
1028PHONY += __headers
1029__headers: include/linux/version.h scripts_basic FORCE
e1b702cf 1030 $(Q)$(MAKE) $(build)=scripts build_unifdef
e6883b18
SR
1031
1032PHONY += headers_install_all
2fb9b1bd
SR
1033headers_install_all:
1034 $(Q)$(CONFIG_SHELL) $(srctree)/scripts/headers.sh install
6d716275 1035
8d730cfb 1036PHONY += headers_install
e6883b18 1037headers_install: __headers
c95fa08a 1038 $(if $(wildcard $(srctree)/arch/$(hdr-arch)/include/asm/Kbuild),, \
2fb9b1bd 1039 $(error Headers not exportable for the $(SRCARCH) architecture))
88181ec3 1040 $(Q)$(MAKE) $(hdr-inst)=include
c95fa08a 1041 $(Q)$(MAKE) $(hdr-inst)=arch/$(hdr-arch)/include/asm $(hdr-dst)
8d730cfb 1042
1f85712e
MF
1043PHONY += headers_check_all
1044headers_check_all: headers_install_all
2fb9b1bd 1045 $(Q)$(CONFIG_SHELL) $(srctree)/scripts/headers.sh check
1f85712e 1046
68475359
DW
1047PHONY += headers_check
1048headers_check: headers_install
88181ec3 1049 $(Q)$(MAKE) $(hdr-inst)=include HDRCHECK=1
c95fa08a 1050 $(Q)$(MAKE) $(hdr-inst)=arch/$(hdr-arch)/include/asm $(hdr-dst) HDRCHECK=1
68475359 1051
1da177e4
LT
1052# ---------------------------------------------------------------------------
1053# Modules
1054
1055ifdef CONFIG_MODULES
1056
070b98bf 1057# By default, build modules as well
1da177e4 1058
73d1393e 1059all: modules
1da177e4
LT
1060
1061# Build modules
551559e1
TH
1062#
1063# A module can be listed more than once in obj-m resulting in
1064# duplicate lines in modules.order files. Those are removed
1065# using awk while concatenating to the final file.
1da177e4 1066
4f193362 1067PHONY += modules
2da30e70 1068modules: $(vmlinux-dirs) $(if $(KBUILD_BUILTIN),vmlinux) modules.builtin
551559e1 1069 $(Q)$(AWK) '!x[$$0]++' $(vmlinux-dirs:%=$(objtree)/%/modules.order) > $(objtree)/modules.order
fd54f502 1070 @$(kecho) ' Building modules, stage 2.';
b805aa0e 1071 $(Q)$(MAKE) -f $(srctree)/scripts/Makefile.modpost
44463f7d 1072 $(Q)$(MAKE) -f $(srctree)/scripts/Makefile.fwinst obj=firmware __fw_modbuild
1da177e4 1073
a6c36632
MM
1074modules.builtin: $(vmlinux-dirs:%=%/modules.builtin)
1075 $(Q)$(AWK) '!x[$$0]++' $^ > $(objtree)/modules.builtin
1076
73d1393e 1077%/modules.builtin: include/config/auto.conf
a6c36632
MM
1078 $(Q)$(MAKE) $(modbuiltin)=$*
1079
1da177e4
LT
1080
1081# Target to prepare building external modules
4f193362 1082PHONY += modules_prepare
5bb78269 1083modules_prepare: prepare scripts
1da177e4
LT
1084
1085# Target to install modules
4f193362 1086PHONY += modules_install
1da177e4
LT
1087modules_install: _modinst_ _modinst_post
1088
4f193362 1089PHONY += _modinst_
2da30e70 1090_modinst_:
ce454d4d 1091 @if [ -z "`$(DEPMOD) -V 2>/dev/null | grep module-init-tools`" ]; then \
1da177e4
LT
1092 echo "Warning: you may need to install module-init-tools"; \
1093 echo "See http://www.codemonkey.org.uk/docs/post-halloween-2.6.txt";\
1094 sleep 1; \
1095 fi
1096 @rm -rf $(MODLIB)/kernel
1097 @rm -f $(MODLIB)/source
1098 @mkdir -p $(MODLIB)/kernel
1099 @ln -s $(srctree) $(MODLIB)/source
1100 @if [ ! $(objtree) -ef $(MODLIB)/build ]; then \
1101 rm -f $(MODLIB)/build ; \
1102 ln -s $(objtree) $(MODLIB)/build ; \
1103 fi
551559e1 1104 @cp -f $(objtree)/modules.order $(MODLIB)/
bc081dd6 1105 @cp -f $(objtree)/modules.builtin $(MODLIB)/
b805aa0e 1106 $(Q)$(MAKE) -f $(srctree)/scripts/Makefile.modinst
1da177e4 1107
50a8ec31 1108# This depmod is only for convenience to give the initial
1da177e4
LT
1109# boot a modules.dep even before / is mounted read-write. However the
1110# boot script depmod is the master version.
4f193362 1111PHONY += _modinst_post
1da177e4 1112_modinst_post: _modinst_
88ecf814 1113 $(Q)$(MAKE) -f $(srctree)/scripts/Makefile.fwinst obj=firmware __fw_modinst
50a8ec31 1114 $(call cmd,depmod)
1da177e4
LT
1115
1116else # CONFIG_MODULES
1117
1118# Modules not configured
1119# ---------------------------------------------------------------------------
1120
1121modules modules_install: FORCE
1122 @echo
1123 @echo "The present kernel configuration has modules disabled."
1124 @echo "Type 'make config' and enable loadable module support."
1125 @echo "Then build a kernel with module support enabled."
1126 @echo
1127 @exit 1
1128
1129endif # CONFIG_MODULES
1130
1da177e4
LT
1131###
1132# Cleaning is done on three levels.
1133# make clean Delete most generated files
1134# Leave enough to build external modules
1135# make mrproper Delete the current configuration, and all generated files
1136# make distclean Remove editor backup files, patch leftover files and the like
1137
1138# Directories & files removed with 'make clean'
1139CLEAN_DIRS += $(MODVERDIR)
1140CLEAN_FILES += vmlinux System.map \
1141 .tmp_kallsyms* .tmp_version .tmp_vmlinux* .tmp_System.map
1142
1143# Directories & files removed with 'make mrproper'
96f13045 1144MRPROPER_DIRS += include/config usr/include include/generated
f7f16b77 1145MRPROPER_FILES += .config .config.old .version .old_version \
264a2683 1146 include/linux/version.h \
f4ed1009 1147 Module.symvers tags TAGS cscope* GPATH GTAGS GRTAGS GSYMS
1da177e4
LT
1148
1149# clean - Delete most, but leave enough to build external modules
1150#
1151clean: rm-dirs := $(CLEAN_DIRS)
1152clean: rm-files := $(CLEAN_FILES)
c47f214a 1153clean-dirs := $(addprefix _clean_, . $(vmlinux-alldirs) Documentation)
1da177e4 1154
4f193362 1155PHONY += $(clean-dirs) clean archclean
1da177e4
LT
1156$(clean-dirs):
1157 $(Q)$(MAKE) $(clean)=$(patsubst _clean_%,%,$@)
1158
88d7be03 1159clean: archclean
1da177e4
LT
1160
1161# mrproper - Delete all generated files, including .config
1162#
1163mrproper: rm-dirs := $(wildcard $(MRPROPER_DIRS))
1164mrproper: rm-files := $(wildcard $(MRPROPER_FILES))
1165mrproper-dirs := $(addprefix _mrproper_,Documentation/DocBook scripts)
1166
4f193362 1167PHONY += $(mrproper-dirs) mrproper archmrproper
1da177e4
LT
1168$(mrproper-dirs):
1169 $(Q)$(MAKE) $(clean)=$(patsubst _mrproper_%,%,$@)
1170
1171mrproper: clean archmrproper $(mrproper-dirs)
1172 $(call cmd,rmdirs)
1173 $(call cmd,rmfiles)
1174
1175# distclean
1176#
4f193362 1177PHONY += distclean
1da177e4
LT
1178
1179distclean: mrproper
1180 @find $(srctree) $(RCS_FIND_IGNORE) \
070b98bf 1181 \( -name '*.orig' -o -name '*.rej' -o -name '*~' \
1da177e4 1182 -o -name '*.bak' -o -name '#*#' -o -name '.*.orig' \
070b98bf 1183 -o -name '.*.rej' -o -size 0 \
1da177e4
LT
1184 -o -name '*%' -o -name '.*.cmd' -o -name 'core' \) \
1185 -type f -print | xargs rm -f
1186
1187
1188# Packaging of the kernel to various formats
1189# ---------------------------------------------------------------------------
1190# rpm target kept for backward compatibility
1191package-dir := $(srctree)/scripts/package
1192
bafb6747
ACM
1193%src-pkg: FORCE
1194 $(Q)$(MAKE) $(build)=$(package-dir) $@
031ecc6d 1195%pkg: include/config/kernel.release FORCE
6c2133e1 1196 $(Q)$(MAKE) $(build)=$(package-dir) $@
031ecc6d 1197rpm: include/config/kernel.release FORCE
6c2133e1 1198 $(Q)$(MAKE) $(build)=$(package-dir) $@
1da177e4
LT
1199
1200
1201# Brief documentation of the typical targets used
1202# ---------------------------------------------------------------------------
1203
5dffbe81 1204boards := $(wildcard $(srctree)/arch/$(SRCARCH)/configs/*_defconfig)
1da177e4 1205boards := $(notdir $(boards))
5dffbe81
SB
1206board-dirs := $(dir $(wildcard $(srctree)/arch/$(SRCARCH)/configs/*/*_defconfig))
1207board-dirs := $(sort $(notdir $(board-dirs:/=)))
1da177e4
LT
1208
1209help:
1210 @echo 'Cleaning targets:'
5ea084ef 1211 @echo ' clean - Remove most generated files but keep the config and'
5cc8d246 1212 @echo ' enough build support to build external modules'
5ea084ef 1213 @echo ' mrproper - Remove all generated files + config + various backup files'
5cc8d246 1214 @echo ' distclean - mrproper + remove editor backup and patch files'
1da177e4
LT
1215 @echo ''
1216 @echo 'Configuration targets:'
1217 @$(MAKE) -f $(srctree)/scripts/kconfig/Makefile help
1218 @echo ''
1219 @echo 'Other generic targets:'
1220 @echo ' all - Build all targets marked with [*]'
1221 @echo '* vmlinux - Build the bare kernel'
1222 @echo '* modules - Build all modules'
9cc5d74c 1223 @echo ' modules_install - Install all modules to INSTALL_MOD_PATH (default: /)'
88ecf814
DW
1224 @echo ' firmware_install- Install all firmware to INSTALL_FW_PATH'
1225 @echo ' (default: $$(INSTALL_MOD_PATH)/lib/firmware)'
1da177e4 1226 @echo ' dir/ - Build all files in dir and below'
62718979
JP
1227 @echo ' dir/file.[oisS] - Build specified target only'
1228 @echo ' dir/file.lst - Build specified mixed source/assembly target only'
1229 @echo ' (requires a recent binutils and recent build (System.map))'
155ad605 1230 @echo ' dir/file.ko - Build module including final link'
c4d5ee67 1231 @echo ' modules_prepare - Set up for building external modules'
1da177e4
LT
1232 @echo ' tags/TAGS - Generate tags file for editors'
1233 @echo ' cscope - Generate cscope index'
f4ed1009 1234 @echo ' gtags - Generate GNU GLOBAL index'
6d128842 1235 @echo ' kernelrelease - Output the release version string'
cb58455c 1236 @echo ' kernelversion - Output the version stored in Makefile'
2fb9b1bd 1237 @echo ' headers_install - Install sanitised kernel headers to INSTALL_HDR_PATH'; \
59df3230 1238 echo ' (default: $(INSTALL_HDR_PATH))'; \
2fb9b1bd 1239 echo ''
1da177e4 1240 @echo 'Static analysers'
1da177e4
LT
1241 @echo ' checkstack - Generate a list of stack hogs'
1242 @echo ' namespacecheck - Name space analysis on compiled kernel'
aa025e7d 1243 @echo ' versioncheck - Sanity check on version.h usage'
ec2d987f 1244 @echo ' includecheck - Check for duplicate included header files'
295ac051 1245 @echo ' export_report - List the usages of all exported symbols'
179efcb4 1246 @echo ' headers_check - Sanity check on exported headers'
74425eee
NP
1247 @echo ' headerdep - Detect inclusion cycles in headers'
1248 @$(MAKE) -f $(srctree)/scripts/Makefile.help checker-help
1249 @echo ''
1da177e4 1250 @echo 'Kernel packaging:'
6c2133e1 1251 @$(MAKE) $(build)=$(package-dir) help
1da177e4
LT
1252 @echo ''
1253 @echo 'Documentation targets:'
1254 @$(MAKE) -f $(srctree)/Documentation/DocBook/Makefile dochelp
1255 @echo ''
01dee188 1256 @echo 'Architecture specific targets ($(SRCARCH)):'
1da177e4 1257 @$(if $(archhelp),$(archhelp),\
01dee188 1258 echo ' No architecture specific help defined for $(SRCARCH)')
1da177e4
LT
1259 @echo ''
1260 @$(if $(boards), \
1261 $(foreach b, $(boards), \
1262 printf " %-24s - Build for %s\\n" $(b) $(subst _defconfig,,$(b));) \
1263 echo '')
5dffbe81
SB
1264 @$(if $(board-dirs), \
1265 $(foreach b, $(board-dirs), \
1266 printf " %-16s - Show %s-specific targets\\n" help-$(b) $(b);) \
1267 printf " %-16s - Show all of the above\\n" help-boards; \
1268 echo '')
1da177e4
LT
1269
1270 @echo ' make V=0|1 [targets] 0 => quiet build (default), 1 => verbose build'
45d506bd 1271 @echo ' make V=2 [targets] 2 => give reason for rebuild of target'
1da177e4 1272 @echo ' make O=dir [targets] Locate all output files in "dir", including .config'
701842e3
DK
1273 @echo ' make C=1 [targets] Check all c source with $$CHECK (sparse by default)'
1274 @echo ' make C=2 [targets] Force check of all c source with $$CHECK'
4a5838ad 1275 @echo ' make W=1 [targets] Enable extra gcc checks'
1da177e4
LT
1276 @echo ''
1277 @echo 'Execute "make" or "make all" to build all targets marked with [*] '
1278 @echo 'For further info see the ./README file'
1279
1280
5dffbe81
SB
1281help-board-dirs := $(addprefix help-,$(board-dirs))
1282
1283help-boards: $(help-board-dirs)
1284
1285boards-per-dir = $(notdir $(wildcard $(srctree)/arch/$(SRCARCH)/configs/$*/*_defconfig))
1286
1287$(help-board-dirs): help-%:
1288 @echo 'Architecture specific targets ($(SRCARCH) $*):'
1289 @$(if $(boards-per-dir), \
1290 $(foreach b, $(boards-per-dir), \
1291 printf " %-24s - Build for %s\\n" $*/$(b) $(subst _defconfig,,$(b));) \
1292 echo '')
1293
1294
1da177e4
LT
1295# Documentation targets
1296# ---------------------------------------------------------------------------
1297%docs: scripts_basic FORCE
1298 $(Q)$(MAKE) $(build)=Documentation/DocBook $@
1299
1300else # KBUILD_EXTMOD
1301
1302###
1303# External module support.
1304# When building external modules the kernel used as basis is considered
1305# read-only, and no consistency checks are made and the make
1306# system is not used on the basis kernel. If updates are required
1307# in the basis kernel ordinary make commands (without M=...) must
1308# be used.
1309#
1310# The following are the only valid targets when building external
1311# modules.
1312# make M=dir clean Delete all automatically generated files
1313# make M=dir modules Make all modules in specified dir
1314# make M=dir Same as 'make M=dir modules'
1315# make M=dir modules_install
070b98bf 1316# Install the modules built in the module directory
1da177e4
LT
1317# Assumes install directory is already created
1318
1319# We are always building modules
1320KBUILD_MODULES := 1
4f193362 1321PHONY += crmodverdir
1da177e4 1322crmodverdir:
7bb9d092 1323 $(cmd_crmodverdir)
1da177e4 1324
4f193362 1325PHONY += $(objtree)/Module.symvers
1da177e4
LT
1326$(objtree)/Module.symvers:
1327 @test -e $(objtree)/Module.symvers || ( \
1328 echo; \
1329 echo " WARNING: Symbol version dump $(objtree)/Module.symvers"; \
1330 echo " is missing; modules will have no dependencies and modversions."; \
1331 echo )
1332
1333module-dirs := $(addprefix _module_,$(KBUILD_EXTMOD))
4f193362 1334PHONY += $(module-dirs) modules
1da177e4
LT
1335$(module-dirs): crmodverdir $(objtree)/Module.symvers
1336 $(Q)$(MAKE) $(build)=$(patsubst _module_%,%,$@)
1337
1338modules: $(module-dirs)
fd54f502 1339 @$(kecho) ' Building modules, stage 2.';
b805aa0e 1340 $(Q)$(MAKE) -f $(srctree)/scripts/Makefile.modpost
1da177e4 1341
4f193362 1342PHONY += modules_install
a67dc21a 1343modules_install: _emodinst_ _emodinst_post
e6304663 1344
4f193362
PS
1345install-dir := $(if $(INSTALL_MOD_DIR),$(INSTALL_MOD_DIR),extra)
1346PHONY += _emodinst_
a67dc21a 1347_emodinst_:
a67dc21a 1348 $(Q)mkdir -p $(MODLIB)/$(install-dir)
b805aa0e 1349 $(Q)$(MAKE) -f $(srctree)/scripts/Makefile.modinst
1da177e4 1350
4f193362 1351PHONY += _emodinst_post
a67dc21a
SR
1352_emodinst_post: _emodinst_
1353 $(call cmd,depmod)
1354
1da177e4
LT
1355clean-dirs := $(addprefix _clean_,$(KBUILD_EXTMOD))
1356
4f193362 1357PHONY += $(clean-dirs) clean
1da177e4
LT
1358$(clean-dirs):
1359 $(Q)$(MAKE) $(clean)=$(patsubst _clean_%,%,$@)
1360
1361clean: rm-dirs := $(MODVERDIR)
88d7be03 1362clean: rm-files := $(KBUILD_EXTMOD)/Module.symvers
1da177e4
LT
1363
1364help:
1365 @echo ' Building external modules.'
1366 @echo ' Syntax: make -C path/to/kernel/src M=$$PWD target'
1367 @echo ''
1368 @echo ' modules - default target, build the module(s)'
1369 @echo ' modules_install - install the module'
1370 @echo ' clean - remove generated files in module directory only'
1371 @echo ''
06300b21
SR
1372
1373# Dummies...
4f193362 1374PHONY += prepare scripts
06300b21
SR
1375prepare: ;
1376scripts: ;
1da177e4
LT
1377endif # KBUILD_EXTMOD
1378
88d7be03
MM
1379clean: $(clean-dirs)
1380 $(call cmd,rmdirs)
1381 $(call cmd,rmfiles)
1382 @find $(or $(KBUILD_EXTMOD), .) $(RCS_FIND_IGNORE) \
1383 \( -name '*.[oas]' -o -name '*.ko' -o -name '.*.cmd' \
1384 -o -name '.*.d' -o -name '.*.tmp' -o -name '*.mod.c' \
1385 -o -name '*.symtypes' -o -name 'modules.order' \
1386 -o -name modules.builtin -o -name '.tmp_*.o.*' \
1387 -o -name '*.gcno' \) -type f -print | xargs rm -f
1388
1da177e4
LT
1389# Generate tags for editors
1390# ---------------------------------------------------------------------------
a680eedc
SR
1391quiet_cmd_tags = GEN $@
1392 cmd_tags = $(CONFIG_SHELL) $(srctree)/scripts/tags.sh $@
1da177e4 1393
f4ed1009 1394tags TAGS cscope gtags: FORCE
1da177e4
LT
1395 $(call cmd,tags)
1396
1da177e4
LT
1397# Scripts to check various things for consistency
1398# ---------------------------------------------------------------------------
1399
1da177e4
LT
1400includecheck:
1401 find * $(RCS_FIND_IGNORE) \
1402 -name '*.[hcS]' -type f -print | sort \
80007434 1403 | xargs $(PERL) -w $(srctree)/scripts/checkincludes.pl
1da177e4
LT
1404
1405versioncheck:
1406 find * $(RCS_FIND_IGNORE) \
1407 -name '*.[hcS]' -type f -print | sort \
80007434 1408 | xargs $(PERL) -w $(srctree)/scripts/checkversion.pl
1da177e4 1409
74425eee
NP
1410coccicheck:
1411 $(Q)$(CONFIG_SHELL) $(srctree)/scripts/$@
1412
1da177e4
LT
1413namespacecheck:
1414 $(PERL) $(srctree)/scripts/namespace.pl
1415
295ac051
AB
1416export_report:
1417 $(PERL) $(srctree)/scripts/export_report.pl
1418
1da177e4
LT
1419endif #ifeq ($(config-targets),1)
1420endif #ifeq ($(mixed-targets),1)
1421
c30a02e0 1422PHONY += checkstack kernelrelease kernelversion
e3ccf6e3 1423
011e3a9a
JD
1424# UML needs a little special treatment here. It wants to use the host
1425# toolchain, so needs $(SUBARCH) passed to checkstack.pl. Everyone
1426# else wants $(ARCH), including people doing cross-builds, which means
1427# that $(SUBARCH) doesn't work here.
1428ifeq ($(ARCH), um)
1429CHECKSTACK_ARCH := $(SUBARCH)
1430else
1431CHECKSTACK_ARCH := $(ARCH)
1432endif
1da177e4
LT
1433checkstack:
1434 $(OBJDUMP) -d vmlinux $$(find . -name '*.ko') | \
011e3a9a 1435 $(PERL) $(src)/scripts/checkstack.pl $(CHECKSTACK_ARCH)
1da177e4 1436
7b8ea53d
AW
1437kernelrelease:
1438 @echo "$(KERNELVERSION)$$($(CONFIG_SHELL) $(srctree)/scripts/setlocalversion $(srctree))"
01ab1788 1439
cb58455c 1440kernelversion:
2244cbd8 1441 @echo $(KERNELVERSION)
1da177e4 1442
06300b21
SR
1443# Single targets
1444# ---------------------------------------------------------------------------
bc2546a6 1445# Single targets are compatible with:
e1b8513d 1446# - build with mixed source and output
bc2546a6
SR
1447# - build with separate output dir 'make O=...'
1448# - external modules
1449#
1450# target-dir => where to store outputfile
1451# build-dir => directory in kernel source tree to use
1452
1453ifeq ($(KBUILD_EXTMOD),)
aa360879 1454 build-dir = $(patsubst %/,%,$(dir $@))
bc2546a6
SR
1455 target-dir = $(dir $@)
1456else
1457 zap-slash=$(filter-out .,$(patsubst %/,%,$(dir $@)))
1458 build-dir = $(KBUILD_EXTMOD)$(if $(zap-slash),/$(zap-slash))
1459 target-dir = $(if $(KBUILD_EXTMOD),$(dir $<),$(dir $@))
1460endif
1461
f6ecebd6 1462%.s: %.c prepare scripts FORCE
bc2546a6 1463 $(Q)$(MAKE) $(build)=$(build-dir) $(target-dir)$(notdir $@)
f6ecebd6 1464%.i: %.c prepare scripts FORCE
bc2546a6 1465 $(Q)$(MAKE) $(build)=$(build-dir) $(target-dir)$(notdir $@)
f6ecebd6 1466%.o: %.c prepare scripts FORCE
bc2546a6 1467 $(Q)$(MAKE) $(build)=$(build-dir) $(target-dir)$(notdir $@)
f6ecebd6 1468%.lst: %.c prepare scripts FORCE
bc2546a6 1469 $(Q)$(MAKE) $(build)=$(build-dir) $(target-dir)$(notdir $@)
f6ecebd6 1470%.s: %.S prepare scripts FORCE
bc2546a6 1471 $(Q)$(MAKE) $(build)=$(build-dir) $(target-dir)$(notdir $@)
f6ecebd6 1472%.o: %.S prepare scripts FORCE
bc2546a6 1473 $(Q)$(MAKE) $(build)=$(build-dir) $(target-dir)$(notdir $@)
15fde675
AG
1474%.symtypes: %.c prepare scripts FORCE
1475 $(Q)$(MAKE) $(build)=$(build-dir) $(target-dir)$(notdir $@)
06300b21 1476
bc2546a6 1477# Modules
31110ebb
SR
1478/: prepare scripts FORCE
1479 $(cmd_crmodverdir)
1480 $(Q)$(MAKE) KBUILD_MODULES=$(if $(CONFIG_MODULES),1) \
1481 $(build)=$(build-dir)
1482%/: prepare scripts FORCE
7bb9d092 1483 $(cmd_crmodverdir)
06300b21 1484 $(Q)$(MAKE) KBUILD_MODULES=$(if $(CONFIG_MODULES),1) \
bc2546a6
SR
1485 $(build)=$(build-dir)
1486%.ko: prepare scripts FORCE
7bb9d092 1487 $(cmd_crmodverdir)
06300b21 1488 $(Q)$(MAKE) KBUILD_MODULES=$(if $(CONFIG_MODULES),1) \
bc2546a6 1489 $(build)=$(build-dir) $(@:.ko=.o)
b805aa0e 1490 $(Q)$(MAKE) -f $(srctree)/scripts/Makefile.modpost
06300b21 1491
1da177e4
LT
1492# FIXME Should go into a make.lib or something
1493# ===========================================================================
1494
1495quiet_cmd_rmdirs = $(if $(wildcard $(rm-dirs)),CLEAN $(wildcard $(rm-dirs)))
1496 cmd_rmdirs = rm -rf $(rm-dirs)
1497
1498quiet_cmd_rmfiles = $(if $(wildcard $(rm-files)),CLEAN $(wildcard $(rm-files)))
1499 cmd_rmfiles = rm -f $(rm-files)
1500
bc3c26fe 1501# Run depmod only if we have System.map and depmod is executable
50a8ec31
SR
1502quiet_cmd_depmod = DEPMOD $(KERNELRELEASE)
1503 cmd_depmod = \
d8d2e78a 1504 if [ -r System.map -a -x $(DEPMOD) ]; then \
50a8ec31 1505 $(DEPMOD) -ae -F System.map \
75bccd88 1506 $(if $(strip $(INSTALL_MOD_PATH)), -b $(INSTALL_MOD_PATH) ) \
50a8ec31
SR
1507 $(KERNELRELEASE); \
1508 fi
1509
7bb9d092 1510# Create temporary dir for module support files
ab19f879
SR
1511# clean it up only when building all modules
1512cmd_crmodverdir = $(Q)mkdir -p $(MODVERDIR) \
1513 $(if $(KBUILD_MODULES),; rm -f $(MODVERDIR)/*)
1da177e4 1514
222d394d 1515a_flags = -Wp,-MD,$(depfile) $(KBUILD_AFLAGS) $(AFLAGS_KERNEL) \
80c00ba9 1516 $(KBUILD_AFLAGS_KERNEL) \
d8672b40 1517 $(NOSTDINC_FLAGS) $(LINUXINCLUDE) $(KBUILD_CPPFLAGS) \
5e8d780d 1518 $(modkern_aflags) $(EXTRA_AFLAGS) $(AFLAGS_$(basetarget).o)
1da177e4
LT
1519
1520quiet_cmd_as_o_S = AS $@
1521cmd_as_o_S = $(CC) $(a_flags) -c -o $@ $<
1522
1523# read all saved command lines
1524
1525targets := $(wildcard $(sort $(targets)))
1526cmd_files := $(wildcard .*.cmd $(foreach f,$(targets),$(dir $(f)).$(notdir $(f)).cmd))
1527
1528ifneq ($(cmd_files),)
1529 $(cmd_files): ; # Do not try to update included dependency files
1530 include $(cmd_files)
1531endif
1532
1da177e4
LT
1533# Shorthand for $(Q)$(MAKE) -f scripts/Makefile.clean obj=dir
1534# Usage:
1535# $(Q)$(MAKE) $(clean)=dir
1536clean := -f $(if $(KBUILD_SRC),$(srctree)/)scripts/Makefile.clean obj
1537
1da177e4
LT
1538endif # skip-makefile
1539
4f193362 1540PHONY += FORCE
1da177e4 1541FORCE:
4f193362 1542
4f193362 1543# Declare the contents of the .PHONY variable as phony. We keep that
fe8d0a41 1544# information in a variable so we can use it in if_changed and friends.
4f193362 1545.PHONY: $(PHONY)