xref: /openbmc/u-boot/Makefile (revision 276511871b405ced706fc8dde11352940bd947c8)
17ebf7443Swdenk#
2eca3aeb3SWolfgang Denk# (C) Copyright 2000-2013
37ebf7443Swdenk# Wolfgang Denk, DENX Software Engineering, wd@denx.de.
47ebf7443Swdenk#
5eca3aeb3SWolfgang Denk# SPDX-License-Identifier:	GPL-2.0+
67ebf7443Swdenk#
77ebf7443Swdenk
8d19ad726STom RiniVERSION = 2014
90a8e823aSTom RiniPATCHLEVEL = 04
10211e4754SWolfgang DenkSUBLEVEL =
110a8e823aSTom RiniEXTRAVERSION = -rc1
125f30f3beSMasahiro YamadaNAME =
13ae6d1056SWolfgang Denk
146825a95bSMasahiro Yamada# *DOCUMENTATION*
156825a95bSMasahiro Yamada# To see a list of typical targets execute "make help"
166825a95bSMasahiro Yamada# More info can be located in ./README
176825a95bSMasahiro Yamada# Comments in this file are targeted only to the developer, do not
186825a95bSMasahiro Yamada# expect to learn how to build the kernel reading this file.
196825a95bSMasahiro Yamada
206825a95bSMasahiro Yamada# Do not:
216825a95bSMasahiro Yamada# o  use make's built-in rules and variables
226825a95bSMasahiro Yamada#    (this increases performance and avoids hard-to-debug behaviour);
236825a95bSMasahiro Yamada# o  print "Entering directory ...";
246825a95bSMasahiro YamadaMAKEFLAGS += -rR --no-print-directory
256825a95bSMasahiro Yamada
266825a95bSMasahiro Yamada# Avoid funny character set dependencies
276825a95bSMasahiro Yamadaunexport LC_ALL
286825a95bSMasahiro YamadaLC_COLLATE=C
296825a95bSMasahiro YamadaLC_NUMERIC=C
306825a95bSMasahiro Yamadaexport LC_COLLATE LC_NUMERIC
316825a95bSMasahiro Yamada
326825a95bSMasahiro Yamada# We are using a recursive build, so we need to do a little thinking
336825a95bSMasahiro Yamada# to get the ordering right.
346825a95bSMasahiro Yamada#
356825a95bSMasahiro Yamada# Most importantly: sub-Makefiles should only ever modify files in
366825a95bSMasahiro Yamada# their own directory. If in some directory we have a dependency on
376825a95bSMasahiro Yamada# a file in another dir (which doesn't happen often, but it's often
386825a95bSMasahiro Yamada# unavoidable when linking the built-in.o targets which finally
396825a95bSMasahiro Yamada# turn into vmlinux), we will call a sub make in that other dir, and
406825a95bSMasahiro Yamada# after that we are sure that everything which is in that other dir
416825a95bSMasahiro Yamada# is now up to date.
426825a95bSMasahiro Yamada#
436825a95bSMasahiro Yamada# The only cases where we need to modify files which have global
446825a95bSMasahiro Yamada# effects are thus separated out and done before the recursive
456825a95bSMasahiro Yamada# descending is started. They are now explicitly listed as the
466825a95bSMasahiro Yamada# prepare rule.
476825a95bSMasahiro Yamada
486825a95bSMasahiro Yamada# To put more focus on warnings, be less verbose as default
496825a95bSMasahiro Yamada# Use 'make V=1' to see the full commands
506825a95bSMasahiro Yamada
516825a95bSMasahiro Yamadaifeq ("$(origin V)", "command line")
526825a95bSMasahiro Yamada  KBUILD_VERBOSE = $(V)
537ebf7443Swdenkendif
546825a95bSMasahiro Yamadaifndef KBUILD_VERBOSE
556825a95bSMasahiro Yamada  KBUILD_VERBOSE = 0
566825a95bSMasahiro Yamadaendif
576825a95bSMasahiro Yamada
586825a95bSMasahiro Yamada# Call a source code checker (by default, "sparse") as part of the
596825a95bSMasahiro Yamada# C compilation.
606825a95bSMasahiro Yamada#
616825a95bSMasahiro Yamada# Use 'make C=1' to enable checking of only re-compiled files.
626825a95bSMasahiro Yamada# Use 'make C=2' to enable checking of *all* source files, regardless
636825a95bSMasahiro Yamada# of whether they are re-compiled or not.
646825a95bSMasahiro Yamada#
656825a95bSMasahiro Yamada# See the file "Documentation/sparse.txt" for more details, including
666825a95bSMasahiro Yamada# where to get the "sparse" utility.
676825a95bSMasahiro Yamada
686825a95bSMasahiro Yamadaifeq ("$(origin C)", "command line")
696825a95bSMasahiro Yamada  KBUILD_CHECKSRC = $(C)
706825a95bSMasahiro Yamadaendif
716825a95bSMasahiro Yamadaifndef KBUILD_CHECKSRC
726825a95bSMasahiro Yamada  KBUILD_CHECKSRC = 0
736825a95bSMasahiro Yamadaendif
746825a95bSMasahiro Yamada
756825a95bSMasahiro Yamada# Use make M=dir to specify directory of external module to build
766825a95bSMasahiro Yamada# Old syntax make ... SUBDIRS=$PWD is still supported
776825a95bSMasahiro Yamada# Setting the environment variable KBUILD_EXTMOD take precedence
786825a95bSMasahiro Yamadaifdef SUBDIRS
796825a95bSMasahiro Yamada  KBUILD_EXTMOD ?= $(SUBDIRS)
806825a95bSMasahiro Yamadaendif
816825a95bSMasahiro Yamada
826825a95bSMasahiro Yamadaifeq ("$(origin M)", "command line")
836825a95bSMasahiro Yamada  KBUILD_EXTMOD := $(M)
846825a95bSMasahiro Yamadaendif
856825a95bSMasahiro Yamada
869e414032SMasahiro Yamada# kbuild supports saving output files in a separate directory.
879e414032SMasahiro Yamada# To locate output files in a separate directory two syntaxes are supported.
889e414032SMasahiro Yamada# In both cases the working directory must be the root of the kernel src.
899e414032SMasahiro Yamada# 1) O=
909e414032SMasahiro Yamada# Use "make O=dir/to/store/output/files/"
91f9328639SMarian Balakowicz#
929e414032SMasahiro Yamada# 2) Set KBUILD_OUTPUT
939e414032SMasahiro Yamada# Set the environment variable KBUILD_OUTPUT to point to the directory
949e414032SMasahiro Yamada# where the output files shall be placed.
959e414032SMasahiro Yamada# export KBUILD_OUTPUT=dir/to/store/output/files/
969e414032SMasahiro Yamada# make
97f9328639SMarian Balakowicz#
989e414032SMasahiro Yamada# The O= assignment takes precedence over the KBUILD_OUTPUT environment
999e414032SMasahiro Yamada# variable.
1007ebf7443Swdenk
1019e414032SMasahiro Yamada
1029e414032SMasahiro Yamada# KBUILD_SRC is set on invocation of make in OBJ directory
1039e414032SMasahiro Yamada# KBUILD_SRC is not intended to be used by the regular user (for now)
1049e414032SMasahiro Yamadaifeq ($(KBUILD_SRC),)
1059e414032SMasahiro Yamada
1069e414032SMasahiro Yamada# OK, Make called in directory where kernel src resides
1079e414032SMasahiro Yamada# Do we want to locate output files in a separate directory?
108f9328639SMarian Balakowiczifeq ("$(origin O)", "command line")
1099e414032SMasahiro Yamada  KBUILD_OUTPUT := $(O)
110f9328639SMarian Balakowiczendif
1117ebf7443Swdenk
1129e414032SMasahiro Yamadaifeq ("$(origin W)", "command line")
1139e414032SMasahiro Yamada  export KBUILD_ENABLE_EXTRA_GCC_CHECKS := $(W)
1149e414032SMasahiro Yamadaendif
1159e414032SMasahiro Yamada
1169e414032SMasahiro Yamada# That's our default target when none is given on the command line
1179e414032SMasahiro YamadaPHONY := _all
1189e414032SMasahiro Yamada_all:
1199e414032SMasahiro Yamada
1209e414032SMasahiro Yamada# Cancel implicit rules on top Makefile
1219e414032SMasahiro Yamada$(CURDIR)/Makefile Makefile: ;
1229e414032SMasahiro Yamada
1239e414032SMasahiro Yamadaifneq ($(KBUILD_OUTPUT),)
1249e414032SMasahiro Yamada# Invoke a second make in the output directory, passing relevant variables
1259e414032SMasahiro Yamada# check that the output directory actually exists
1269e414032SMasahiro Yamadasaved-output := $(KBUILD_OUTPUT)
1279e414032SMasahiro YamadaKBUILD_OUTPUT := $(shell cd $(KBUILD_OUTPUT) && /bin/pwd)
1289e414032SMasahiro Yamada$(if $(KBUILD_OUTPUT),, \
1299e414032SMasahiro Yamada     $(error output directory "$(saved-output)" does not exist))
1309e414032SMasahiro Yamada
1319e414032SMasahiro YamadaPHONY += $(MAKECMDGOALS) sub-make
1329e414032SMasahiro Yamada
1339e414032SMasahiro Yamada$(filter-out _all sub-make $(CURDIR)/Makefile, $(MAKECMDGOALS)) _all: sub-make
1349e414032SMasahiro Yamada	@:
1359e414032SMasahiro Yamada
1369e414032SMasahiro Yamadasub-make: FORCE
1379e414032SMasahiro Yamada	$(if $(KBUILD_VERBOSE:1=),@)$(MAKE) -C $(KBUILD_OUTPUT) \
1389e414032SMasahiro Yamada	KBUILD_SRC=$(CURDIR) \
1399e414032SMasahiro Yamada	KBUILD_EXTMOD="$(KBUILD_EXTMOD)" -f $(CURDIR)/Makefile \
1409e414032SMasahiro Yamada	$(filter-out _all sub-make,$(MAKECMDGOALS))
1419e414032SMasahiro Yamada
1429e414032SMasahiro Yamada# Leave processing to above invocation of make
1439e414032SMasahiro Yamadaskip-makefile := 1
1449e414032SMasahiro Yamadaendif # ifneq ($(KBUILD_OUTPUT),)
1459e414032SMasahiro Yamadaendif # ifeq ($(KBUILD_SRC),)
1469e414032SMasahiro Yamada
1479e414032SMasahiro Yamada# We process the rest of the Makefile if this is the final invocation of make
1489e414032SMasahiro Yamadaifeq ($(skip-makefile),)
1499e414032SMasahiro Yamada
1506825a95bSMasahiro Yamada# If building an external module we do not care about the all: rule
1516825a95bSMasahiro Yamada# but instead _all depend on modules
1529e414032SMasahiro YamadaPHONY += all
1536825a95bSMasahiro Yamadaifeq ($(KBUILD_EXTMOD),)
1549e414032SMasahiro Yamada_all: all
1556825a95bSMasahiro Yamadaelse
1566825a95bSMasahiro Yamada_all: modules
1576825a95bSMasahiro Yamadaendif
1589e414032SMasahiro Yamada
1599e414032SMasahiro Yamadasrctree		:= $(if $(KBUILD_SRC),$(KBUILD_SRC),$(CURDIR))
1609e414032SMasahiro Yamadaobjtree		:= $(CURDIR)
1619e414032SMasahiro Yamadasrc		:= $(srctree)
1629e414032SMasahiro Yamadaobj		:= $(objtree)
1639e414032SMasahiro Yamada
1649e414032SMasahiro YamadaVPATH		:= $(srctree)$(if $(KBUILD_EXTMOD),:$(KBUILD_EXTMOD))
1659e414032SMasahiro Yamada
1669e414032SMasahiro Yamadaexport srctree objtree VPATH
1679e414032SMasahiro Yamada
1689e414032SMasahiro YamadaOBJTREE		:= $(objtree)
169c8f9c302SDaniel SchwierzeckSPLTREE		:= $(OBJTREE)/spl
1703aa29de0SYing ZhangTPLTREE		:= $(OBJTREE)/tpl
1719e414032SMasahiro YamadaSRCTREE		:= $(srctree)
172f9328639SMarian BalakowiczTOPDIR		:= $(SRCTREE)
1739e414032SMasahiro Yamadaexport	TOPDIR SRCTREE OBJTREE SPLTREE TPLTREE
174f9328639SMarian Balakowicz
175f9328639SMarian BalakowiczMKCONFIG	:= $(SRCTREE)/mkconfig
176f9328639SMarian Balakowiczexport MKCONFIG
177f9328639SMarian Balakowicz
1785013c09fSWolfgang Denk# Make sure CDPATH settings don't interfere
1795013c09fSWolfgang Denkunexport CDPATH
1805013c09fSWolfgang Denk
181f9328639SMarian Balakowicz#########################################################################
182f9328639SMarian Balakowicz
1835f30f3beSMasahiro YamadaTIMESTAMP_FILE = include/generated/timestamp_autogenerated.h
1845f30f3beSMasahiro YamadaVERSION_FILE = include/generated/version_autogenerated.h
1857ebf7443Swdenk
1867ebf7443SwdenkHOSTARCH := $(shell uname -m | \
1877ebf7443Swdenk	sed -e s/i.86/x86/ \
1887ebf7443Swdenk	    -e s/sun4u/sparc64/ \
1897ebf7443Swdenk	    -e s/arm.*/arm/ \
1907ebf7443Swdenk	    -e s/sa110/arm/ \
1917ebf7443Swdenk	    -e s/ppc64/powerpc/ \
1927ebf7443Swdenk	    -e s/ppc/powerpc/ \
1937ebf7443Swdenk	    -e s/macppc/powerpc/\
1947ebf7443Swdenk	    -e s/sh.*/sh/)
1957ebf7443Swdenk
1967ebf7443SwdenkHOSTOS := $(shell uname -s | tr '[:upper:]' '[:lower:]' | \
1977ebf7443Swdenk	    sed -e 's/\(cygwin\).*/cygwin/')
1987ebf7443Swdenk
1997ebf7443Swdenkexport	HOSTARCH HOSTOS
2007ebf7443Swdenk
2017ebf7443Swdenk# Deal with colliding definitions from tcsh etc.
2027ebf7443SwdenkVENDOR=
2037ebf7443Swdenk
2047ebf7443Swdenk#########################################################################
205f9328639SMarian Balakowicz
2061ea6bcd8SMike Frysinger# set default to nothing for native builds
207a5284efdSWolfgang Denkifeq ($(HOSTARCH),$(ARCH))
2081ea6bcd8SMike FrysingerCROSS_COMPILE ?=
2097ebf7443Swdenkendif
2107ebf7443Swdenk
211f6322eb7SMasahiro Yamada# SHELL used by kbuild
212f6322eb7SMasahiro YamadaCONFIG_SHELL := $(shell if [ -x "$$BASH" ]; then echo $$BASH; \
213f6322eb7SMasahiro Yamada	  else if [ -x /bin/bash ]; then echo /bin/bash; \
214f6322eb7SMasahiro Yamada	  else echo sh; fi ; fi)
215f6322eb7SMasahiro Yamada
216f6322eb7SMasahiro YamadaHOSTCC       = gcc
217f6322eb7SMasahiro YamadaHOSTCFLAGS   = -Wall -Wstrict-prototypes -O2 -fomit-frame-pointer
218f6322eb7SMasahiro Yamada
219f6322eb7SMasahiro Yamadaifeq ($(HOSTOS),cygwin)
220f6322eb7SMasahiro YamadaHOSTCFLAGS	+= -ansi
221f6322eb7SMasahiro Yamadaendif
222f6322eb7SMasahiro Yamada
223f6322eb7SMasahiro Yamada# Mac OS X / Darwin's C preprocessor is Apple specific.  It
224f6322eb7SMasahiro Yamada# generates numerous errors and warnings.  We want to bypass it
225f6322eb7SMasahiro Yamada# and use GNU C's cpp.	To do this we pass the -traditional-cpp
226f6322eb7SMasahiro Yamada# option to the compiler.  Note that the -traditional-cpp flag
227f6322eb7SMasahiro Yamada# DOES NOT have the same semantics as GNU C's flag, all it does
228f6322eb7SMasahiro Yamada# is invoke the GNU preprocessor in stock ANSI/ISO C fashion.
229f6322eb7SMasahiro Yamada#
230f6322eb7SMasahiro Yamada# Apple's linker is similar, thanks to the new 2 stage linking
231f6322eb7SMasahiro Yamada# multiple symbol definitions are treated as errors, hence the
232f6322eb7SMasahiro Yamada# -multiply_defined suppress option to turn off this error.
233f6322eb7SMasahiro Yamada#
234f6322eb7SMasahiro Yamadaifeq ($(HOSTOS),darwin)
235f6322eb7SMasahiro Yamada# get major and minor product version (e.g. '10' and '6' for Snow Leopard)
236f6322eb7SMasahiro YamadaDARWIN_MAJOR_VERSION	= $(shell sw_vers -productVersion | cut -f 1 -d '.')
237f6322eb7SMasahiro YamadaDARWIN_MINOR_VERSION	= $(shell sw_vers -productVersion | cut -f 2 -d '.')
238f6322eb7SMasahiro Yamada
239f6322eb7SMasahiro Yamadaos_x_before	= $(shell if [ $(DARWIN_MAJOR_VERSION) -le $(1) -a \
240f6322eb7SMasahiro Yamada	$(DARWIN_MINOR_VERSION) -le $(2) ] ; then echo "$(3)"; else echo "$(4)"; fi ;)
241f6322eb7SMasahiro Yamada
242f6322eb7SMasahiro Yamada# Snow Leopards build environment has no longer restrictions as described above
243f6322eb7SMasahiro YamadaHOSTCC       = $(call os_x_before, 10, 5, "cc", "gcc")
244f6322eb7SMasahiro YamadaHOSTCFLAGS  += $(call os_x_before, 10, 4, "-traditional-cpp")
245f6322eb7SMasahiro YamadaHOSTLDFLAGS += $(call os_x_before, 10, 5, "-multiply_defined suppress")
246f6322eb7SMasahiro Yamadaendif
247f6322eb7SMasahiro Yamada
2486825a95bSMasahiro Yamada# Decide whether to build built-in, modular, or both.
2496825a95bSMasahiro Yamada# Normally, just do built-in.
2506825a95bSMasahiro Yamada
2516825a95bSMasahiro YamadaKBUILD_MODULES :=
2526825a95bSMasahiro YamadaKBUILD_BUILTIN := 1
2536825a95bSMasahiro Yamada
2546825a95bSMasahiro Yamada#	If we have only "make modules", don't compile built-in objects.
2556825a95bSMasahiro Yamada#	When we're building modules with modversions, we need to consider
2566825a95bSMasahiro Yamada#	the built-in objects during the descend as well, in order to
2576825a95bSMasahiro Yamada#	make sure the checksums are up to date before we record them.
2586825a95bSMasahiro Yamada
2596825a95bSMasahiro Yamadaifeq ($(MAKECMDGOALS),modules)
2606825a95bSMasahiro Yamada  KBUILD_BUILTIN := $(if $(CONFIG_MODVERSIONS),1)
2616825a95bSMasahiro Yamadaendif
2626825a95bSMasahiro Yamada
2636825a95bSMasahiro Yamada#	If we have "make <whatever> modules", compile modules
2646825a95bSMasahiro Yamada#	in addition to whatever we do anyway.
2656825a95bSMasahiro Yamada#	Just "make" or "make all" shall build modules as well
2666825a95bSMasahiro Yamada
2676825a95bSMasahiro Yamada# U-Boot does not need modules
2686825a95bSMasahiro Yamada#ifneq ($(filter all _all modules,$(MAKECMDGOALS)),)
2696825a95bSMasahiro Yamada#  KBUILD_MODULES := 1
2706825a95bSMasahiro Yamada#endif
2716825a95bSMasahiro Yamada
2726825a95bSMasahiro Yamada#ifeq ($(MAKECMDGOALS),)
2736825a95bSMasahiro Yamada#  KBUILD_MODULES := 1
2746825a95bSMasahiro Yamada#endif
2756825a95bSMasahiro Yamada
2766825a95bSMasahiro Yamadaexport KBUILD_MODULES KBUILD_BUILTIN
2776825a95bSMasahiro Yamadaexport KBUILD_CHECKSRC KBUILD_SRC KBUILD_EXTMOD
2786825a95bSMasahiro Yamada
2796825a95bSMasahiro Yamada# Beautify output
2806825a95bSMasahiro Yamada# ---------------------------------------------------------------------------
2816825a95bSMasahiro Yamada#
2826825a95bSMasahiro Yamada# Normally, we echo the whole command before executing it. By making
2836825a95bSMasahiro Yamada# that echo $($(quiet)$(cmd)), we now have the possibility to set
2846825a95bSMasahiro Yamada# $(quiet) to choose other forms of output instead, e.g.
2856825a95bSMasahiro Yamada#
2866825a95bSMasahiro Yamada#         quiet_cmd_cc_o_c = Compiling $(RELDIR)/$@
2876825a95bSMasahiro Yamada#         cmd_cc_o_c       = $(CC) $(c_flags) -c -o $@ $<
2886825a95bSMasahiro Yamada#
2896825a95bSMasahiro Yamada# If $(quiet) is empty, the whole command will be printed.
2906825a95bSMasahiro Yamada# If it is set to "quiet_", only the short version will be printed.
2916825a95bSMasahiro Yamada# If it is set to "silent_", nothing will be printed at all, since
2926825a95bSMasahiro Yamada# the variable $(silent_cmd_cc_o_c) doesn't exist.
2936825a95bSMasahiro Yamada#
2946825a95bSMasahiro Yamada# A simple variant is to prefix commands with $(Q) - that's useful
2956825a95bSMasahiro Yamada# for commands that shall be hidden in non-verbose mode.
2966825a95bSMasahiro Yamada#
2976825a95bSMasahiro Yamada#	$(Q)ln $@ :<
2986825a95bSMasahiro Yamada#
2996825a95bSMasahiro Yamada# If KBUILD_VERBOSE equals 0 then the above command will be hidden.
3006825a95bSMasahiro Yamada# If KBUILD_VERBOSE equals 1 then the above command is displayed.
3016825a95bSMasahiro Yamada
3026825a95bSMasahiro Yamadaifeq ($(KBUILD_VERBOSE),1)
3036825a95bSMasahiro Yamada  quiet =
3046825a95bSMasahiro Yamada  Q =
3056825a95bSMasahiro Yamadaelse
3066825a95bSMasahiro Yamada  quiet=quiet_
3076825a95bSMasahiro Yamada  Q = @
3086825a95bSMasahiro Yamadaendif
3096825a95bSMasahiro Yamada
3106825a95bSMasahiro Yamada# If the user is running make -s (silent mode), suppress echoing of
3116825a95bSMasahiro Yamada# commands
3126825a95bSMasahiro Yamada
3136825a95bSMasahiro Yamadaifneq ($(filter s% -s%,$(MAKEFLAGS)),)
3146825a95bSMasahiro Yamada  quiet=silent_
3156825a95bSMasahiro Yamadaendif
3166825a95bSMasahiro Yamada
3176825a95bSMasahiro Yamadaexport quiet Q KBUILD_VERBOSE
3186825a95bSMasahiro Yamada
3196825a95bSMasahiro Yamada
3209e414032SMasahiro Yamada# Look for make include files relative to root of kernel src
3219e414032SMasahiro YamadaMAKEFLAGS += --include-dir=$(srctree)
3229e414032SMasahiro Yamada
323bf4b3de1SMasahiro Yamada# We need some generic definitions (do not try to remake the file).
324bf4b3de1SMasahiro Yamada$(srctree)/scripts/Kbuild.include: ;
325bf4b3de1SMasahiro Yamadainclude $(srctree)/scripts/Kbuild.include
326bf4b3de1SMasahiro Yamada
327f6322eb7SMasahiro Yamada# Make variables (CC, etc...)
328f6322eb7SMasahiro Yamada
329f6322eb7SMasahiro YamadaAS		= $(CROSS_COMPILE)as
330f6322eb7SMasahiro Yamada# Always use GNU ld
331f6322eb7SMasahiro Yamadaifneq ($(shell $(CROSS_COMPILE)ld.bfd -v 2> /dev/null),)
332f6322eb7SMasahiro YamadaLD		= $(CROSS_COMPILE)ld.bfd
333f6322eb7SMasahiro Yamadaelse
334f6322eb7SMasahiro YamadaLD		= $(CROSS_COMPILE)ld
335f6322eb7SMasahiro Yamadaendif
336f6322eb7SMasahiro YamadaCC		= $(CROSS_COMPILE)gcc
337f6322eb7SMasahiro YamadaCPP		= $(CC) -E
338f6322eb7SMasahiro YamadaAR		= $(CROSS_COMPILE)ar
339f6322eb7SMasahiro YamadaNM		= $(CROSS_COMPILE)nm
340f6322eb7SMasahiro YamadaLDR		= $(CROSS_COMPILE)ldr
341f6322eb7SMasahiro YamadaSTRIP		= $(CROSS_COMPILE)strip
342f6322eb7SMasahiro YamadaOBJCOPY		= $(CROSS_COMPILE)objcopy
343f6322eb7SMasahiro YamadaOBJDUMP		= $(CROSS_COMPILE)objdump
344f6322eb7SMasahiro YamadaAWK		= awk
345f6322eb7SMasahiro YamadaRANLIB		= $(CROSS_COMPILE)RANLIB
346f6322eb7SMasahiro YamadaDTC		= dtc
347f6322eb7SMasahiro YamadaCHECK		= sparse
348f6322eb7SMasahiro Yamada
349f6322eb7SMasahiro YamadaCHECKFLAGS     := -D__linux__ -Dlinux -D__STDC__ -Dunix -D__unix__ \
350f6322eb7SMasahiro Yamada		  -Wbitwise -Wno-return-void -D__CHECK_ENDIAN__ $(CF)
351f6322eb7SMasahiro Yamada
3522b3c9d3dSMasahiro YamadaKBUILD_CPPFLAGS := -D__KERNEL__
3532b3c9d3dSMasahiro Yamada
3542b3c9d3dSMasahiro YamadaKBUILD_CFLAGS   := -Wall -Wstrict-prototypes \
3552b3c9d3dSMasahiro Yamada		   -Wno-format-security \
3562b3c9d3dSMasahiro Yamada		   -fno-builtin -ffreestanding
3572b3c9d3dSMasahiro YamadaKBUILD_AFLAGS   := -D__ASSEMBLY__
3582b3c9d3dSMasahiro Yamada
3595f30f3beSMasahiro YamadaU_BOOT_VERSION = $(VERSION)$(if $(PATCHLEVEL),.$(PATCHLEVEL)$(if $(SUBLEVEL),.$(SUBLEVEL)))$(EXTRAVERSION)
3605f30f3beSMasahiro Yamada
3615f30f3beSMasahiro Yamadaexport VERSION PATCHLEVEL SUBLEVEL U_BOOT_VERSION
362433b2f1eSMasahiro Yamadaexport ARCH CPU BOARD VENDOR SOC
363f6322eb7SMasahiro Yamadaexport CONFIG_SHELL HOSTCC HOSTCFLAGS HOSTLDFLAGS CROSS_COMPILE AS LD CC
364f6322eb7SMasahiro Yamadaexport CPP AR NM LDR STRIP OBJCOPY OBJDUMP
365f6322eb7SMasahiro Yamadaexport MAKE AWK
366f6322eb7SMasahiro Yamadaexport DTC CHECK CHECKFLAGS
367f6322eb7SMasahiro Yamada
368fea1ca8eSMasahiro Yamadaexport KBUILD_CPPFLAGS NOSTDINC_FLAGS UBOOTINCLUDE
3692b3c9d3dSMasahiro Yamadaexport KBUILD_CFLAGS KBUILD_AFLAGS
3702b3c9d3dSMasahiro Yamada
3716825a95bSMasahiro Yamada# When compiling out-of-tree modules, put MODVERDIR in the module
3726825a95bSMasahiro Yamada# tree rather than in the kernel tree. The kernel tree might
3736825a95bSMasahiro Yamada# even be read-only.
3746825a95bSMasahiro Yamadaexport MODVERDIR := $(if $(KBUILD_EXTMOD),$(firstword $(KBUILD_EXTMOD))/).tmp_versions
3756825a95bSMasahiro Yamada
3766825a95bSMasahiro Yamada# Files to ignore in find ... statements
3776825a95bSMasahiro Yamada
3786825a95bSMasahiro YamadaRCS_FIND_IGNORE := \( -name SCCS -o -name BitKeeper -o -name .svn -o -name CVS \
3796825a95bSMasahiro Yamada		   -o -name .pc -o -name .hg -o -name .git \) -prune -o
3806825a95bSMasahiro Yamadaexport RCS_TAR_IGNORE := --exclude SCCS --exclude BitKeeper --exclude .svn \
3816825a95bSMasahiro Yamada			 --exclude CVS --exclude .pc --exclude .hg --exclude .git
3826825a95bSMasahiro Yamada
3836825a95bSMasahiro Yamada# ===========================================================================
3846825a95bSMasahiro Yamada# Rules shared between *config targets and build targets
3856825a95bSMasahiro Yamada
3866825a95bSMasahiro Yamada# Basic helpers built in scripts/
3876825a95bSMasahiro YamadaPHONY += scripts_basic
3886825a95bSMasahiro Yamadascripts_basic:
3896825a95bSMasahiro Yamada	$(Q)$(MAKE) $(build)=scripts/basic
3906825a95bSMasahiro Yamada	$(Q)rm -f .tmp_quiet_recordmcount
3916825a95bSMasahiro Yamada
3926825a95bSMasahiro Yamada# To avoid any implicit rule to kick in, define an empty command.
3936825a95bSMasahiro Yamadascripts/basic/%: scripts_basic ;
3946825a95bSMasahiro Yamada
3953341bfecSMasahiro YamadaPHONY += outputmakefile
3963341bfecSMasahiro Yamada# outputmakefile generates a Makefile in the output directory, if using a
3973341bfecSMasahiro Yamada# separate output directory. This allows convenient use of make in the
3983341bfecSMasahiro Yamada# output directory.
3993341bfecSMasahiro Yamadaoutputmakefile:
4003341bfecSMasahiro Yamadaifneq ($(KBUILD_SRC),)
4013341bfecSMasahiro Yamada	$(Q)ln -fsn $(srctree) source
4023341bfecSMasahiro Yamada	$(Q)$(CONFIG_SHELL) $(srctree)/scripts/mkmakefile \
4033341bfecSMasahiro Yamada	    $(srctree) $(objtree) $(VERSION) $(PATCHLEVEL)
4043341bfecSMasahiro Yamadaendif
4053341bfecSMasahiro Yamada
406433b2f1eSMasahiro Yamada# To make sure we do not include .config for any of the *config targets
407433b2f1eSMasahiro Yamada# catch them early, and hand them over to scripts/kconfig/Makefile
408433b2f1eSMasahiro Yamada# It is allowed to specify more targets when calling make, including
409433b2f1eSMasahiro Yamada# mixing *config targets and build targets.
410433b2f1eSMasahiro Yamada# For example 'make oldconfig all'.
411433b2f1eSMasahiro Yamada# Detect when mixed targets is specified, and make a second invocation
412433b2f1eSMasahiro Yamada# of make so .config is not included in this case either (for *config).
4136825a95bSMasahiro Yamada
414433b2f1eSMasahiro Yamadano-dot-config-targets := clean clobber mrproper distclean \
415*27651187SMasahiro Yamada			 help %docs check% coccicheck \
416433b2f1eSMasahiro Yamada			 backup
4172b3c9d3dSMasahiro Yamada
418433b2f1eSMasahiro Yamadaconfig-targets := 0
419433b2f1eSMasahiro Yamadamixed-targets  := 0
420433b2f1eSMasahiro Yamadadot-config     := 1
4212b3c9d3dSMasahiro Yamada
422433b2f1eSMasahiro Yamadaifneq ($(filter $(no-dot-config-targets), $(MAKECMDGOALS)),)
423433b2f1eSMasahiro Yamada	ifeq ($(filter-out $(no-dot-config-targets), $(MAKECMDGOALS)),)
424433b2f1eSMasahiro Yamada		dot-config := 0
4252b3c9d3dSMasahiro Yamada	endif
4262b3c9d3dSMasahiro Yamadaendif
4272b3c9d3dSMasahiro Yamada
428433b2f1eSMasahiro Yamadaifeq ($(KBUILD_EXTMOD),)
429433b2f1eSMasahiro Yamada        ifneq ($(filter config %config,$(MAKECMDGOALS)),)
430433b2f1eSMasahiro Yamada                config-targets := 1
431433b2f1eSMasahiro Yamada                ifneq ($(filter-out config %config,$(MAKECMDGOALS)),)
432433b2f1eSMasahiro Yamada                        mixed-targets := 1
433433b2f1eSMasahiro Yamada                endif
434433b2f1eSMasahiro Yamada        endif
435433b2f1eSMasahiro Yamadaendif
436433b2f1eSMasahiro Yamada
437433b2f1eSMasahiro Yamadaifeq ($(mixed-targets),1)
438433b2f1eSMasahiro Yamada# ===========================================================================
439433b2f1eSMasahiro Yamada# We're called with mixed targets (*config and build targets).
440433b2f1eSMasahiro Yamada# Handle them one by one.
441433b2f1eSMasahiro Yamada
44253bca5abSMasahiro YamadaPHONY += $(MAKECMDGOALS) build-one-by-one
44353bca5abSMasahiro Yamada
44453bca5abSMasahiro Yamada$(MAKECMDGOALS): build-one-by-one
44553bca5abSMasahiro Yamada	@:
44653bca5abSMasahiro Yamada
44753bca5abSMasahiro Yamadabuild-one-by-one:
44853bca5abSMasahiro Yamada	$(Q)set -e; \
44953bca5abSMasahiro Yamada	for i in $(MAKECMDGOALS); do \
45053bca5abSMasahiro Yamada		$(MAKE) -f $(srctree)/Makefile $$i; \
45153bca5abSMasahiro Yamada	done
452433b2f1eSMasahiro Yamada
453433b2f1eSMasahiro Yamadaelse
454433b2f1eSMasahiro Yamadaifeq ($(config-targets),1)
455433b2f1eSMasahiro Yamada# ===========================================================================
456433b2f1eSMasahiro Yamada# *config targets only - make sure prerequisites are updated, and descend
457433b2f1eSMasahiro Yamada# in scripts/kconfig to make the *config target
458433b2f1eSMasahiro Yamada
459433b2f1eSMasahiro Yamada# Read arch specific Makefile to set KBUILD_DEFCONFIG as needed.
460433b2f1eSMasahiro Yamada# KBUILD_DEFCONFIG may point out an alternative default configuration
461433b2f1eSMasahiro Yamada# used for 'make defconfig'
462433b2f1eSMasahiro Yamada
4633341bfecSMasahiro Yamada%_config:: outputmakefile
464433b2f1eSMasahiro Yamada	@$(MKCONFIG) -A $(@:_config=)
465433b2f1eSMasahiro Yamada
466433b2f1eSMasahiro Yamadaelse
467433b2f1eSMasahiro Yamada# ===========================================================================
468433b2f1eSMasahiro Yamada# Build targets only - this includes vmlinux, arch specific targets, clean
469433b2f1eSMasahiro Yamada# targets and others. In general all targets except *config targets.
470433b2f1eSMasahiro Yamada
471433b2f1eSMasahiro Yamada# load ARCH, BOARD, and CPU configuration
472433b2f1eSMasahiro Yamada-include include/config.mk
473433b2f1eSMasahiro Yamada
474433b2f1eSMasahiro Yamadaifeq ($(dot-config),1)
475433b2f1eSMasahiro Yamada# Read in config
476433b2f1eSMasahiro Yamada-include include/autoconf.mk
477433b2f1eSMasahiro Yamada-include include/autoconf.mk.dep
478433b2f1eSMasahiro Yamada
47992b197f0SWolfgang Denk# load other configuration
480433b2f1eSMasahiro Yamadainclude $(srctree)/config.mk
48192b197f0SWolfgang Denk
482433b2f1eSMasahiro Yamadaifeq ($(wildcard include/config.mk),)
483433b2f1eSMasahiro Yamada$(error "System not configured - see README")
484ced0715dSMasahiro Yamadaendif
485fada9e20SSimon Glass
486ced0715dSMasahiro Yamadaifeq ($(__HAVE_ARCH_GENERIC_BOARD),)
487ced0715dSMasahiro Yamadaifneq ($(CONFIG_SYS_GENERIC_BOARD),)
488433b2f1eSMasahiro Yamada$(error Your architecture does not support generic board. \
489ced0715dSMasahiro YamadaPlease undefined CONFIG_SYS_GENERIC_BOARD in your board config file)
490fada9e20SSimon Glassendif
491fada9e20SSimon Glassendif
492fada9e20SSimon Glass
493d51dfff7SIlya Yanok# If board code explicitly specified LDSCRIPT or CONFIG_SYS_LDSCRIPT, use
494d51dfff7SIlya Yanok# that (or fail if absent).  Otherwise, search for a linker script in a
495d51dfff7SIlya Yanok# standard location.
496d51dfff7SIlya Yanok
497ee60197eSSimon GlassLDSCRIPT_MAKEFILE_DIR = $(dir $(LDSCRIPT))
498ee60197eSSimon Glass
499d51dfff7SIlya Yanokifndef LDSCRIPT
500d51dfff7SIlya Yanok	#LDSCRIPT := $(TOPDIR)/board/$(BOARDDIR)/u-boot.lds.debug
501d51dfff7SIlya Yanok	ifdef CONFIG_SYS_LDSCRIPT
502d51dfff7SIlya Yanok		# need to strip off double quotes
503a8c07541SMasahiro Yamada		LDSCRIPT := $(CONFIG_SYS_LDSCRIPT:"%"=%)
504d51dfff7SIlya Yanok	endif
505d51dfff7SIlya Yanokendif
506d51dfff7SIlya Yanok
507ee60197eSSimon Glass# If there is no specified link script, we look in a number of places for it
508d51dfff7SIlya Yanokifndef LDSCRIPT
509d51dfff7SIlya Yanok	ifeq ($(CONFIG_NAND_U_BOOT),y)
510d51dfff7SIlya Yanok		LDSCRIPT := $(TOPDIR)/board/$(BOARDDIR)/u-boot-nand.lds
511d51dfff7SIlya Yanok		ifeq ($(wildcard $(LDSCRIPT)),)
512d51dfff7SIlya Yanok			LDSCRIPT := $(TOPDIR)/$(CPUDIR)/u-boot-nand.lds
513d51dfff7SIlya Yanok		endif
514d51dfff7SIlya Yanok	endif
515d51dfff7SIlya Yanok	ifeq ($(wildcard $(LDSCRIPT)),)
516d51dfff7SIlya Yanok		LDSCRIPT := $(TOPDIR)/board/$(BOARDDIR)/u-boot.lds
517d51dfff7SIlya Yanok	endif
518d51dfff7SIlya Yanok	ifeq ($(wildcard $(LDSCRIPT)),)
519d51dfff7SIlya Yanok		LDSCRIPT := $(TOPDIR)/$(CPUDIR)/u-boot.lds
520d51dfff7SIlya Yanok	endif
521d51dfff7SIlya Yanok	ifeq ($(wildcard $(LDSCRIPT)),)
522ee60197eSSimon Glass		LDSCRIPT := $(TOPDIR)/arch/$(ARCH)/cpu/u-boot.lds
523ee60197eSSimon Glass		# We don't expect a Makefile here
524ee60197eSSimon Glass		LDSCRIPT_MAKEFILE_DIR =
525ee60197eSSimon Glass	endif
526ee60197eSSimon Glass	ifeq ($(wildcard $(LDSCRIPT)),)
527d51dfff7SIlya Yanok$(error could not find linker script)
528d51dfff7SIlya Yanok	endif
529d51dfff7SIlya Yanokendif
530d51dfff7SIlya Yanok
531433b2f1eSMasahiro Yamadaelse
532433b2f1eSMasahiro Yamada
533433b2f1eSMasahiro Yamada
534433b2f1eSMasahiro Yamadaendif # $(dot-config)
535433b2f1eSMasahiro Yamada
536433b2f1eSMasahiro YamadaKBUILD_CFLAGS += -Os #-fomit-frame-pointer
537433b2f1eSMasahiro Yamada
538433b2f1eSMasahiro Yamadaifdef BUILD_TAG
539433b2f1eSMasahiro YamadaKBUILD_CFLAGS += -DBUILD_TAG='"$(BUILD_TAG)"'
540433b2f1eSMasahiro Yamadaendif
541433b2f1eSMasahiro Yamada
542433b2f1eSMasahiro YamadaKBUILD_CFLAGS += $(call cc-option,-fno-stack-protector)
543433b2f1eSMasahiro Yamada
544433b2f1eSMasahiro YamadaKBUILD_CFLAGS	+= -g
545433b2f1eSMasahiro Yamada# $(KBUILD_AFLAGS) sets -g, which causes gcc to pass a suitable -g<format>
546433b2f1eSMasahiro Yamada# option to the assembler.
547433b2f1eSMasahiro YamadaKBUILD_AFLAGS	+= -g
548433b2f1eSMasahiro Yamada
549433b2f1eSMasahiro Yamada# Report stack usage if supported
550433b2f1eSMasahiro YamadaKBUILD_CFLAGS += $(call cc-option,-fstack-usage)
551433b2f1eSMasahiro Yamada
552433b2f1eSMasahiro YamadaKBUILD_CFLAGS += $(call cc-option,-Wno-format-nonliteral)
553433b2f1eSMasahiro Yamada
554433b2f1eSMasahiro Yamada# turn jbsr into jsr for m68k
555433b2f1eSMasahiro Yamadaifeq ($(ARCH),m68k)
556433b2f1eSMasahiro Yamadaifeq ($(findstring 3.4,$(shell $(CC) --version)),3.4)
557433b2f1eSMasahiro YamadaKBUILD_AFLAGS += -Wa,-gstabs,-S
558433b2f1eSMasahiro Yamadaendif
559433b2f1eSMasahiro Yamadaendif
560433b2f1eSMasahiro Yamada
561433b2f1eSMasahiro Yamadaifneq ($(CONFIG_SYS_TEXT_BASE),)
562433b2f1eSMasahiro YamadaKBUILD_CPPFLAGS += -DCONFIG_SYS_TEXT_BASE=$(CONFIG_SYS_TEXT_BASE)
563433b2f1eSMasahiro Yamadaendif
564433b2f1eSMasahiro Yamada
565433b2f1eSMasahiro Yamadaexport CONFIG_SYS_TEXT_BASE
566433b2f1eSMasahiro Yamada
567433b2f1eSMasahiro Yamada# Use UBOOTINCLUDE when you must reference the include/ directory.
568433b2f1eSMasahiro Yamada# Needed to be compatible with the O= option
569433b2f1eSMasahiro YamadaUBOOTINCLUDE    :=
570433b2f1eSMasahiro Yamadaifneq ($(OBJTREE),$(SRCTREE))
571433b2f1eSMasahiro YamadaUBOOTINCLUDE	+= -I$(OBJTREE)/include
572433b2f1eSMasahiro Yamadaendif
573433b2f1eSMasahiro YamadaUBOOTINCLUDE	+= -I$(srctree)/include \
574433b2f1eSMasahiro Yamada		-I$(srctree)/arch/$(ARCH)/include
575433b2f1eSMasahiro Yamada
576433b2f1eSMasahiro YamadaNOSTDINC_FLAGS += -nostdinc -isystem $(shell $(CC) -print-file-name=include)
577433b2f1eSMasahiro YamadaCHECKFLAGS     += $(NOSTDINC_FLAGS)
578433b2f1eSMasahiro Yamada
579433b2f1eSMasahiro Yamada# FIX ME
580433b2f1eSMasahiro Yamadacpp_flags := $(KBUILD_CPPFLAGS) $(CPPFLAGS) $(UBOOTINCLUDE) $(NOSTDINC_FLAGS)
581433b2f1eSMasahiro Yamadac_flags := $(KBUILD_CFLAGS) $(cpp_flags)
582433b2f1eSMasahiro Yamada
583656de6b8SMasahiro Yamada.PHONY : $(VERSION_FILE) $(TIMESTAMP_FILE)
584433b2f1eSMasahiro Yamada
5857ebf7443Swdenk#########################################################################
5867ebf7443Swdenk# U-Boot objects....order is important (i.e. start must be first)
5877ebf7443Swdenk
588e8a8b824SMasahiro Yamadahead-y := $(CPUDIR)/start.o
589e8a8b824SMasahiro Yamadahead-$(CONFIG_4xx) += arch/powerpc/cpu/ppc4xx/resetvec.o
590e8a8b824SMasahiro Yamadahead-$(CONFIG_MPC85xx) += arch/powerpc/cpu/mpc85xx/resetvec.o
5917ebf7443Swdenk
5929e414032SMasahiro YamadaHAVE_VENDOR_COMMON_LIB = $(if $(wildcard $(srctree)/board/$(VENDOR)/common/Makefile),y,n)
593f9328639SMarian Balakowicz
594656de6b8SMasahiro Yamadalibs-y += lib/
595656de6b8SMasahiro Yamadalibs-$(HAVE_VENDOR_COMMON_LIB) += board/$(VENDOR)/common/
596656de6b8SMasahiro Yamadalibs-y += $(CPUDIR)/
5971d9f4105Swdenkifdef SOC
598656de6b8SMasahiro Yamadalibs-y += $(CPUDIR)/$(SOC)/
5991d9f4105Swdenkendif
600656de6b8SMasahiro Yamadalibs-$(CONFIG_OF_EMBED) += dts/
601656de6b8SMasahiro Yamadalibs-y += arch/$(ARCH)/lib/
602656de6b8SMasahiro Yamadalibs-y += fs/
603656de6b8SMasahiro Yamadalibs-y += net/
604656de6b8SMasahiro Yamadalibs-y += disk/
605656de6b8SMasahiro Yamadalibs-y += drivers/
606656de6b8SMasahiro Yamadalibs-y += drivers/dma/
607656de6b8SMasahiro Yamadalibs-y += drivers/gpio/
608656de6b8SMasahiro Yamadalibs-y += drivers/i2c/
609656de6b8SMasahiro Yamadalibs-y += drivers/input/
610656de6b8SMasahiro Yamadalibs-y += drivers/mmc/
611656de6b8SMasahiro Yamadalibs-y += drivers/mtd/
612656de6b8SMasahiro Yamadalibs-$(CONFIG_CMD_NAND) += drivers/mtd/nand/
613656de6b8SMasahiro Yamadalibs-y += drivers/mtd/onenand/
614656de6b8SMasahiro Yamadalibs-$(CONFIG_CMD_UBI) += drivers/mtd/ubi/
615656de6b8SMasahiro Yamadalibs-y += drivers/mtd/spi/
616656de6b8SMasahiro Yamadalibs-y += drivers/net/
617656de6b8SMasahiro Yamadalibs-y += drivers/net/phy/
618656de6b8SMasahiro Yamadalibs-y += drivers/pci/
619656de6b8SMasahiro Yamadalibs-y += drivers/power/ \
620e2906a59SMasahiro Yamada	drivers/power/fuel_gauge/ \
621e2906a59SMasahiro Yamada	drivers/power/mfd/ \
622e2906a59SMasahiro Yamada	drivers/power/pmic/ \
623e2906a59SMasahiro Yamada	drivers/power/battery/
624656de6b8SMasahiro Yamadalibs-y += drivers/spi/
625656de6b8SMasahiro Yamadalibs-$(CONFIG_FMAN_ENET) += drivers/net/fm/
626656de6b8SMasahiro Yamadalibs-$(CONFIG_SYS_FSL_DDR) += drivers/ddr/fsl/
627656de6b8SMasahiro Yamadalibs-y += drivers/serial/
628656de6b8SMasahiro Yamadalibs-y += drivers/usb/eth/
629656de6b8SMasahiro Yamadalibs-y += drivers/usb/gadget/
630656de6b8SMasahiro Yamadalibs-y += drivers/usb/host/
631656de6b8SMasahiro Yamadalibs-y += drivers/usb/musb/
632656de6b8SMasahiro Yamadalibs-y += drivers/usb/musb-new/
633656de6b8SMasahiro Yamadalibs-y += drivers/usb/phy/
634656de6b8SMasahiro Yamadalibs-y += drivers/usb/ulpi/
635656de6b8SMasahiro Yamadalibs-y += common/
636656de6b8SMasahiro Yamadalibs-y += lib/libfdt/
637656de6b8SMasahiro Yamadalibs-$(CONFIG_API) += api/
638656de6b8SMasahiro Yamadalibs-$(CONFIG_HAS_POST) += post/
639656de6b8SMasahiro Yamadalibs-y += test/
640f9328639SMarian Balakowicz
64124e8bee5SAlison Wangifneq (,$(filter $(SOC), mx25 mx27 mx5 mx6 mx31 mx35 mxs vf610))
642656de6b8SMasahiro Yamadalibs-y += arch/$(ARCH)/imx-common/
64318936ee2SJason Liuendif
64418936ee2SJason Liu
645656de6b8SMasahiro Yamadalibs-$(CONFIG_ARM) += arch/arm/cpu/
646656de6b8SMasahiro Yamadalibs-$(CONFIG_PPC) += arch/powerpc/cpu/
647852bd07cSMinkyu Kang
648656de6b8SMasahiro Yamadalibs-y += board/$(BOARDDIR)/
64908e39a84SMasahiro Yamada
650656de6b8SMasahiro Yamadalibs-y := $(sort $(libs-y))
651656de6b8SMasahiro Yamada
652656de6b8SMasahiro Yamadau-boot-dirs	:= $(patsubst %/,%,$(filter %/, $(libs-y))) tools examples
653656de6b8SMasahiro Yamada
654656de6b8SMasahiro Yamadau-boot-alldirs	:= $(sort $(u-boot-dirs) $(patsubst %/,%,$(filter %/, $(libs-))))
655656de6b8SMasahiro Yamada
656656de6b8SMasahiro Yamadalibs-y		:= $(patsubst %/, %/built-in.o, $(libs-y))
657656de6b8SMasahiro Yamada
658656de6b8SMasahiro Yamadau-boot-init := $(head-y)
659656de6b8SMasahiro Yamadau-boot-main := $(libs-y)
660656de6b8SMasahiro Yamada
661a8c7c708Swdenk
6624f7cb08eSwdenk# Add GCC lib
66352b1bf2cSWolfgang Denkifdef USE_PRIVATE_LIBGCC
66452b1bf2cSWolfgang Denkifeq ("$(USE_PRIVATE_LIBGCC)", "yes")
6656825a95bSMasahiro YamadaPLATFORM_LIBGCC = $(OBJTREE)/arch/$(ARCH)/lib/lib.a
66652b1bf2cSWolfgang Denkelse
66752b1bf2cSWolfgang DenkPLATFORM_LIBGCC = -L $(USE_PRIVATE_LIBGCC) -lgcc
66852b1bf2cSWolfgang Denkendif
66952b1bf2cSWolfgang Denkelse
6706825a95bSMasahiro YamadaPLATFORM_LIBGCC := -L $(shell dirname `$(CC) $(c_flags) -print-libgcc-file-name`) -lgcc
67152b1bf2cSWolfgang Denkendif
67252b1bf2cSWolfgang DenkPLATFORM_LIBS += $(PLATFORM_LIBGCC)
67352b1bf2cSWolfgang Denkexport PLATFORM_LIBS
6743d3befa7Swdenk
6756ac9f479SMike Frysinger# Special flags for CPP when processing the linker script.
6766ac9f479SMike Frysinger# Pass the version down so we can handle backwards compatibility
6776ac9f479SMike Frysinger# on the fly.
6786ac9f479SMike FrysingerLDPPFLAGS += \
6796ac9f479SMike Frysinger	-include $(TOPDIR)/include/u-boot/u-boot.lds.h \
6807e6403a6SSimon Glass	-DCPUDIR=$(CPUDIR) \
6816ac9f479SMike Frysinger	$(shell $(LD) --version | \
6826ac9f479SMike Frysinger	  sed -ne 's/GNU ld version \([0-9][0-9]*\)\.\([0-9][0-9]*\).*/-DLD_MAJOR=\1 -DLD_MINOR=\2/p')
6836ac9f479SMike Frysinger
6847ebf7443Swdenk#########################################################################
685bdccc4feSwdenk#########################################################################
6867ebf7443Swdenk
687f3a14d37SMike Frysingerifneq ($(CONFIG_BOARD_SIZE_LIMIT),)
688f3a14d37SMike FrysingerBOARD_SIZE_CHECK = \
689f3a14d37SMike Frysinger	@actual=`wc -c $@ | awk '{print $$1}'`; \
690d060e6f4SJoe Hershberger	limit=`printf "%d" $(CONFIG_BOARD_SIZE_LIMIT)`; \
691f3a14d37SMike Frysinger	if test $$actual -gt $$limit; then \
692d060e6f4SJoe Hershberger		echo "$@ exceeds file size limit:" >&2 ; \
693d060e6f4SJoe Hershberger		echo "  limit:  $$limit bytes" >&2 ; \
694d060e6f4SJoe Hershberger		echo "  actual: $$actual bytes" >&2 ; \
695d060e6f4SJoe Hershberger		echo "  excess: $$((actual - limit)) bytes" >&2; \
696f3a14d37SMike Frysinger		exit 1; \
697f3a14d37SMike Frysinger	fi
698f3a14d37SMike Frysingerelse
699f3a14d37SMike FrysingerBOARD_SIZE_CHECK =
700f3a14d37SMike Frysingerendif
701f3a14d37SMike Frysinger
7028137af19SScott Wood# Statically apply RELA-style relocations (currently arm64 only)
7038137af19SScott Woodifneq ($(CONFIG_STATIC_RELA),)
7048137af19SScott Wood# $(1) is u-boot ELF, $(2) is u-boot bin, $(3) is text base
7058137af19SScott WoodDO_STATIC_RELA = \
7068137af19SScott Wood	start=$$($(NM) $(1) | grep __rel_dyn_start | cut -f 1 -d ' '); \
7078137af19SScott Wood	end=$$($(NM) $(1) | grep __rel_dyn_end | cut -f 1 -d ' '); \
7089e414032SMasahiro Yamada	tools/relocate-rela $(2) $(3) $$start $$end
7098137af19SScott Woodelse
7108137af19SScott WoodDO_STATIC_RELA =
7118137af19SScott Woodendif
7128137af19SScott Wood
7133e88337bSMike Frysinger# Always append ALL so that arch config.mk's can add custom ones
7149e414032SMasahiro YamadaALL-y += u-boot.srec u-boot.bin System.map
715e935a374SHaiying Wang
7169e414032SMasahiro YamadaALL-$(CONFIG_NAND_U_BOOT) += u-boot-nand.bin
7179e414032SMasahiro YamadaALL-$(CONFIG_ONENAND_U_BOOT) += u-boot-onenand.bin
7189e414032SMasahiro YamadaALL-$(CONFIG_RAMBOOT_PBL) += u-boot.pbl
7199e414032SMasahiro YamadaALL-$(CONFIG_SPL) += spl/u-boot-spl.bin
7209e414032SMasahiro YamadaALL-$(CONFIG_SPL_FRAMEWORK) += u-boot.img
7219e414032SMasahiro YamadaALL-$(CONFIG_TPL) += tpl/u-boot-tpl.bin
7226ab6b2afSMasahiro YamadaALL-$(CONFIG_OF_SEPARATE) += u-boot-dtb.bin
723b343bbb5SVadim Bendeburyifneq ($(CONFIG_SPL_TARGET),)
7249e414032SMasahiro YamadaALL-$(CONFIG_SPL) += $(CONFIG_SPL_TARGET:"%"=%)
725b343bbb5SVadim Bendeburyendif
7269e414032SMasahiro YamadaALL-$(CONFIG_REMAKE_ELF) += u-boot.elf
7277ebf7443Swdenk
72812b7b70cSAllen Martin# enable combined SPL/u-boot/dtb rules for tegra
7296d6c0baeSTom Warrenifneq ($(CONFIG_TEGRA),)
7307dcd3a21SVidya Sagarifeq ($(CONFIG_SPL),y)
73112b7b70cSAllen Martinifeq ($(CONFIG_OF_SEPARATE),y)
7329e414032SMasahiro YamadaALL-y += u-boot-dtb-tegra.bin
73312b7b70cSAllen Martinelse
7349e414032SMasahiro YamadaALL-y += u-boot-nodtb-tegra.bin
73512b7b70cSAllen Martinendif
73612b7b70cSAllen Martinendif
7377dcd3a21SVidya Sagarendif
73812b7b70cSAllen Martin
739433b2f1eSMasahiro YamadaLDFLAGS_u-boot += -T u-boot.lds $(LDFLAGS_FINAL)
740433b2f1eSMasahiro Yamadaifneq ($(CONFIG_SYS_TEXT_BASE),)
741433b2f1eSMasahiro YamadaLDFLAGS_u-boot += -Ttext $(CONFIG_SYS_TEXT_BASE)
742433b2f1eSMasahiro Yamadaendif
74371f84ef0SMasahiro Yamada
744656de6b8SMasahiro Yamadaall:		$(ALL-y)
7457ebf7443Swdenk
7466ab6b2afSMasahiro YamadaPHONY += dtbs
7476ab6b2afSMasahiro Yamadadtbs dts/dt.dtb: checkdtc u-boot
7486ab6b2afSMasahiro Yamada	$(Q)$(MAKE) $(build)=dts dtbs
7492c0f79e4SSimon Glass
7506ab6b2afSMasahiro Yamadau-boot-dtb.bin: u-boot.bin dts/dt.dtb
7512c0f79e4SSimon Glass		cat $^ >$@
7522c0f79e4SSimon Glass
7539e414032SMasahiro Yamadau-boot.hex:	u-boot
7546310eb9dSwdenk		$(OBJCOPY) ${OBJCFLAGS} -O ihex $< $@
7556310eb9dSwdenk
7569e414032SMasahiro Yamadau-boot.srec:	u-boot
75747ed5dd0SAlbert ARIBAUD		$(OBJCOPY) ${OBJCFLAGS} -O srec $< $@
7587ebf7443Swdenk
7599e414032SMasahiro Yamadau-boot.bin:	u-boot
7607ebf7443Swdenk		$(OBJCOPY) ${OBJCFLAGS} -O binary $< $@
7618137af19SScott Wood		$(call DO_STATIC_RELA,$<,$@,$(CONFIG_SYS_TEXT_BASE))
762f3a14d37SMike Frysinger		$(BOARD_SIZE_CHECK)
7637ebf7443Swdenk
7649e414032SMasahiro Yamadau-boot.ldr:	u-boot
76576d82187SMike Frysinger		$(CREATE_LDR_ENV)
76668e56324SMike Frysinger		$(LDR) -T $(CONFIG_BFIN_CPU) -c $@ $< $(LDR_FLAGS)
767f3a14d37SMike Frysinger		$(BOARD_SIZE_CHECK)
76894a91e24SMike Frysinger
7699e414032SMasahiro Yamadau-boot.ldr.hex:	u-boot.ldr
77094a91e24SMike Frysinger		$(OBJCOPY) ${OBJCFLAGS} -O ihex $< $@ -I binary
77194a91e24SMike Frysinger
7729e414032SMasahiro Yamadau-boot.ldr.srec:	u-boot.ldr
77394a91e24SMike Frysinger		$(OBJCOPY) ${OBJCFLAGS} -O srec $< $@ -I binary
77494a91e24SMike Frysinger
775b40bda6bSStefan Roese#
776b40bda6bSStefan Roese# U-Boot entry point, needed for booting of full-blown U-Boot
777b40bda6bSStefan Roese# from the SPL U-Boot version.
778b40bda6bSStefan Roese#
779b40bda6bSStefan Roeseifndef CONFIG_SYS_UBOOT_START
780b40bda6bSStefan RoeseCONFIG_SYS_UBOOT_START := 0
781b40bda6bSStefan Roeseendif
782b40bda6bSStefan Roese
7839e414032SMasahiro Yamadau-boot.img:	u-boot.bin
7849e414032SMasahiro Yamada		tools/mkimage -A $(ARCH) -T firmware -C none \
785b40bda6bSStefan Roese		-O u-boot -a $(CONFIG_SYS_TEXT_BASE) \
786b40bda6bSStefan Roese		-e $(CONFIG_SYS_UBOOT_START) \
787881a87ecSWolfgang Denk		-n $(shell sed -n -e 's/.*U_BOOT_VERSION//p' $(VERSION_FILE) | \
788bdccc4feSwdenk			sed -e 's/"[	 ]*$$/ for $(BOARD) board"/') \
789bdccc4feSwdenk		-d $< $@
790bdccc4feSwdenk
791656de6b8SMasahiro Yamadau-boot.imx: u-boot.bin
7929e414032SMasahiro Yamada		$(MAKE) $(build)=arch/arm/imx-common $(objtree)/u-boot.imx
7938edcde5eSStefano Babic
7949e414032SMasahiro Yamadau-boot.kwb:       u-boot.bin
7959e414032SMasahiro Yamada		tools/mkimage -n $(CONFIG_SYS_KWD_CONFIG) -T kwbimage \
7962ea88b06SEric Cooper		-a $(CONFIG_SYS_TEXT_BASE) -e $(CONFIG_SYS_TEXT_BASE) -d $< $@
797aa0c7a86SPrafulla Wadaskar
7989e414032SMasahiro Yamadau-boot.pbl:	u-boot.bin
7999e414032SMasahiro Yamada		tools/mkimage -n $(CONFIG_SYS_FSL_PBL_RCW) \
800690e4258SPrabhakar Kushwaha		-R $(CONFIG_SYS_FSL_PBL_PBI) -T pblimage \
8015d898a00SShaohui Xie		-d $< $@
8025d898a00SShaohui Xie
8039e414032SMasahiro Yamadau-boot.sha1:	u-boot.bin
8049e414032SMasahiro Yamada		tools/ubsha1 u-boot.bin
805566a494fSHeiko Schocher
8069e414032SMasahiro Yamadau-boot.dis:	u-boot
8077ebf7443Swdenk		$(OBJDUMP) -d $< > $@
8087ebf7443Swdenk
8093aa29de0SYing Zhang# $@ is output, $(1) and $(2) are inputs, $(3) is padded intermediate,
8103aa29de0SYing Zhang# $(4) is pad-to
8113aa29de0SYing ZhangSPL_PAD_APPEND = \
8123aa29de0SYing Zhang		$(OBJCOPY) ${OBJCFLAGS} --pad-to=$(4) -I binary -O binary \
8139e414032SMasahiro Yamada		$(1) $(3); \
8149e414032SMasahiro Yamada		cat $(3) $(2) > $@; \
8159e414032SMasahiro Yamada		rm $(3)
81674752baaSScott Wood
8173aa29de0SYing Zhangifdef CONFIG_TPL
8189e414032SMasahiro YamadaSPL_PAYLOAD := tpl/u-boot-with-tpl.bin
8193aa29de0SYing Zhangelse
8209e414032SMasahiro YamadaSPL_PAYLOAD := u-boot.bin
8213aa29de0SYing Zhangendif
82274752baaSScott Wood
8239e414032SMasahiro Yamadau-boot-with-spl.bin: spl/u-boot-spl.bin $(SPL_PAYLOAD)
8243aa29de0SYing Zhang		$(call SPL_PAD_APPEND,$<,$(SPL_PAYLOAD),spl/u-boot-spl-pad.bin,$(CONFIG_SPL_PAD_TO))
8253aa29de0SYing Zhang
8269e414032SMasahiro Yamadatpl/u-boot-with-tpl.bin: tpl/u-boot-tpl.bin u-boot.bin
8279e414032SMasahiro Yamada		$(call SPL_PAD_APPEND,$<,u-boot.bin,tpl/u-boot-tpl-pad.bin,$(CONFIG_TPL_PAD_TO))
8287816f2cfSHeiko Schocher
8299e414032SMasahiro Yamadau-boot-with-spl.imx: spl/u-boot-spl.bin u-boot.bin
8309e414032SMasahiro Yamada		$(MAKE) $(build)=arch/arm/imx-common \
831ba597609SBenoît Thébaudeau			$(OBJTREE)/u-boot-with-spl.imx
832ba597609SBenoît Thébaudeau
8339e414032SMasahiro Yamadau-boot-with-nand-spl.imx: spl/u-boot-spl.bin u-boot.bin
8349e414032SMasahiro Yamada		$(MAKE) $(build)=arch/arm/imx-common \
8357d5a5c79SBenoît Thébaudeau			$(OBJTREE)/u-boot-with-nand-spl.imx
8367d5a5c79SBenoît Thébaudeau
8379e414032SMasahiro Yamadau-boot.ubl:       u-boot-with-spl.bin
8389e414032SMasahiro Yamada		tools/mkimage -n $(UBL_CONFIG) -T ublimage \
8399e414032SMasahiro Yamada		-e $(CONFIG_SYS_TEXT_BASE) -d $< u-boot.ubl
840277f00f5SJosé Miguel Gonçalves
8419e414032SMasahiro Yamadau-boot.ais:       spl/u-boot-spl.bin u-boot.img
8429e414032SMasahiro Yamada		tools/mkimage -s -n $(if $(CONFIG_AIS_CONFIG_FILE),$(srctree)/$(CONFIG_AIS_CONFIG_FILE:"%"=%),"/dev/null") \
8436d660e77SSughosh Ganu			-T aisimage \
844d36d8859SChristian Riesch			-e $(CONFIG_SPL_TEXT_BASE) \
8459e414032SMasahiro Yamada			-d spl/u-boot-spl.bin \
8469e414032SMasahiro Yamada			spl/u-boot-spl.ais
847d36d8859SChristian Riesch		$(OBJCOPY) ${OBJCFLAGS} -I binary \
848d36d8859SChristian Riesch			--pad-to=$(CONFIG_SPL_MAX_SIZE) -O binary \
8499e414032SMasahiro Yamada			spl/u-boot-spl.ais spl/u-boot-spl-pad.ais
8509e414032SMasahiro Yamada		cat spl/u-boot-spl-pad.ais u-boot.img > u-boot.ais
851d36d8859SChristian Riesch
852a5453555SOtavio Salvador
8539e414032SMasahiro Yamadau-boot.sb:       u-boot.bin spl/u-boot-spl.bin
8549e414032SMasahiro Yamada		$(MAKE) $(build)=$(CPUDIR)/$(SOC)/ $(OBJTREE)/u-boot.sb
85530b9b932SMarek Vasut
85694aebe6cSStefan Roese# On x600 (SPEAr600) U-Boot is appended to U-Boot SPL.
85794aebe6cSStefan Roese# Both images are created using mkimage (crc etc), so that the ROM
85894aebe6cSStefan Roese# bootloader can check its integrity. Padding needs to be done to the
85994aebe6cSStefan Roese# SPL image (with mkimage header) and not the binary. Otherwise the resulting image
86094aebe6cSStefan Roese# which is loaded/copied by the ROM bootloader to SRAM doesn't fit.
86194aebe6cSStefan Roese# The resulting image containing both U-Boot images is called u-boot.spr
8629e414032SMasahiro Yamadau-boot.spr:	u-boot.img spl/u-boot-spl.bin
8639e414032SMasahiro Yamada		tools/mkimage -A $(ARCH) -T firmware -C none \
86494aebe6cSStefan Roese		-a $(CONFIG_SPL_TEXT_BASE) -e $(CONFIG_SPL_TEXT_BASE) -n XLOADER \
8659e414032SMasahiro Yamada		-d spl/u-boot-spl.bin $@
86657270260SMasahiro Yamada		$(OBJCOPY) -I binary -O binary \
86757270260SMasahiro Yamada			--pad-to=$(CONFIG_SPL_PAD_TO) --gap-fill=0xff $@
8689e414032SMasahiro Yamada		cat u-boot.img >> $@
86994aebe6cSStefan Roese
8706d6c0baeSTom Warrenifneq ($(CONFIG_TEGRA),)
8719e414032SMasahiro Yamadau-boot-nodtb-tegra.bin: spl/u-boot-spl.bin u-boot.bin
8729e414032SMasahiro Yamada		$(OBJCOPY) ${OBJCFLAGS} --pad-to=$(CONFIG_SYS_TEXT_BASE) -O binary spl/u-boot-spl spl/u-boot-spl-pad.bin
8739e414032SMasahiro Yamada		cat spl/u-boot-spl-pad.bin u-boot.bin > $@
8749e414032SMasahiro Yamada		rm spl/u-boot-spl-pad.bin
8759972db5cSStephen Warren
8769972db5cSStephen Warrenifeq ($(CONFIG_OF_SEPARATE),y)
8776ab6b2afSMasahiro Yamadau-boot-dtb-tegra.bin: u-boot-nodtb-tegra.bin dts/dt.dtb
8786ab6b2afSMasahiro Yamada		cat $^ > $@
8799972db5cSStephen Warrenendif
880984df4ecSAllen Martinendif
881984df4ecSAllen Martin
8829e414032SMasahiro Yamadau-boot-img.bin: spl/u-boot-spl.bin u-boot.img
8839e414032SMasahiro Yamada		cat spl/u-boot-spl.bin u-boot.img > $@
884fb3d2b8aSStefan Roese
885ecddccd0SStefan Roese# PPC4xx needs the SPL at the end of the image, since the reset vector
886ecddccd0SStefan Roese# is located at 0xfffffffc. So we can't use the "u-boot-img.bin" target
887ecddccd0SStefan Roese# and need to introduce a new build target with the full blown U-Boot
888ecddccd0SStefan Roese# at the start padded up to the start of the SPL image. And then concat
889ecddccd0SStefan Roese# the SPL image to the end.
8909e414032SMasahiro Yamadau-boot-img-spl-at-end.bin: spl/u-boot-spl.bin u-boot.img
89157270260SMasahiro Yamada		$(OBJCOPY) -I binary -O binary --pad-to=$(CONFIG_UBOOT_PAD_TO) \
8929e414032SMasahiro Yamada			 --gap-fill=0xff u-boot.img $@
8939e414032SMasahiro Yamada		cat spl/u-boot-spl.bin >> $@
894ecddccd0SStefan Roese
895f4dc714aSScott Wood# Create a new ELF from a raw binary file.  This is useful for arm64
896f4dc714aSScott Wood# where static relocation needs to be performed on the raw binary,
897f4dc714aSScott Wood# but certain simulators only accept an ELF file (but don't do the
898f4dc714aSScott Wood# relocation).
899f4dc714aSScott Wood# FIXME refactor dts/Makefile to share target/arch detection
9009e414032SMasahiro Yamadau-boot.elf: u-boot.bin
901f4dc714aSScott Wood	@$(OBJCOPY)  -B aarch64 -I binary -O elf64-littleaarch64 \
9029e414032SMasahiro Yamada		$< u-boot-elf.o
9039e414032SMasahiro Yamada	@$(LD) u-boot-elf.o -o $@ \
904f4dc714aSScott Wood		--defsym=_start=$(CONFIG_SYS_TEXT_BASE) \
905f4dc714aSScott Wood		-Ttext=$(CONFIG_SYS_TEXT_BASE)
906f4dc714aSScott Wood
90786eb49b3SSimon Glassifeq ($(CONFIG_SANDBOX),y)
90886eb49b3SSimon GlassGEN_UBOOT = \
9099e414032SMasahiro Yamada		$(CC) $(SYMS) -T u-boot.lds \
910656de6b8SMasahiro Yamada			-Wl,--start-group $(u-boot-main) -Wl,--end-group \
91186eb49b3SSimon Glass			$(PLATFORM_LIBS) -Wl,-Map -Wl,u-boot.map -o u-boot
91286eb49b3SSimon Glasselse
913ecb1dc89SMike FrysingerGEN_UBOOT = \
9149e414032SMasahiro Yamada		$(LD) $(LDFLAGS) $(LDFLAGS_$(@F)) \
915656de6b8SMasahiro Yamada			$(u-boot-init) \
916656de6b8SMasahiro Yamada			--start-group $(u-boot-main) --end-group $(PLATFORM_LIBS) \
917b2184c31Swdenk			-Map u-boot.map -o u-boot
91886eb49b3SSimon Glassendif
91986eb49b3SSimon Glass
920656de6b8SMasahiro Yamadau-boot:	$(u-boot-init) $(u-boot-main) u-boot.lds
921ecb1dc89SMike Frysinger		$(GEN_UBOOT)
922ecb1dc89SMike Frysingerifeq ($(CONFIG_KALLSYMS),y)
9239e414032SMasahiro Yamada		smap=`$(call SYSTEM_MAP,u-boot) | \
9241aada9cdSWolfgang Denk			awk '$$2 ~ /[tTwW]/ {printf $$1 $$3 "\\\\000"}'` ; \
9256825a95bSMasahiro Yamada		$(CC) $(c_flags) -DSYSTEM_MAP="\"$${smap}\"" \
9269e414032SMasahiro Yamada			-c $(srctree)/common/system_map.c -o common/system_map.o
9279e414032SMasahiro Yamada		$(GEN_UBOOT) common/system_map.o
928ecb1dc89SMike Frysingerendif
9297ebf7443Swdenk
930656de6b8SMasahiro Yamada# The actual objects are generated when descending,
931656de6b8SMasahiro Yamada# make sure no implicit rule kicks in
932656de6b8SMasahiro Yamada$(sort $(u-boot-init) $(u-boot-main)): $(u-boot-dirs) ;
933f9328639SMarian Balakowicz
934656de6b8SMasahiro Yamada# Handle descending into subdirectories listed in $(vmlinux-dirs)
935656de6b8SMasahiro Yamada# Preset locale variables to speed up the build process. Limit locale
936656de6b8SMasahiro Yamada# tweaks to this spot to avoid wrong language settings when running
937656de6b8SMasahiro Yamada# make menuconfig etc.
938656de6b8SMasahiro Yamada# Error messages still appears in the original language
939a8c7c708Swdenk
940656de6b8SMasahiro YamadaPHONY += $(u-boot-dirs)
9413341bfecSMasahiro Yamada$(u-boot-dirs): depend prepare scripts
9426825a95bSMasahiro Yamada	$(Q)$(MAKE) $(build)=$@
943940db16dSMasahiro Yamada
944656de6b8SMasahiro Yamadatools: $(TIMESTAMP_FILE) $(VERSION_FILE)
945656de6b8SMasahiro Yamada# The "tools" are needed early
946656de6b8SMasahiro Yamada$(filter-out tools, $(u-boot-dirs)): tools
947656de6b8SMasahiro Yamada# The "examples" conditionally depend on U-Boot (say, when USE_PRIVATE_LIBGCC
948656de6b8SMasahiro Yamada# is "yes"), so compile examples after U-Boot is compiled.
949656de6b8SMasahiro Yamadaexamples: $(filter-out examples, $(u-boot-dirs))
950656de6b8SMasahiro Yamada
9513341bfecSMasahiro Yamada# Things we need to do before we recursively start building the kernel
9523341bfecSMasahiro Yamada# or the modules are listed in "prepare".
9533341bfecSMasahiro Yamada# A multi level approach is used. prepareN is processed before prepareN-1.
9543341bfecSMasahiro Yamada# archprepare is used in arch Makefiles and when processed asm symlink,
9553341bfecSMasahiro Yamada# version.h and scripts_basic is processed / created.
9563341bfecSMasahiro Yamada
9573341bfecSMasahiro Yamada# Listed in dependency order
9583341bfecSMasahiro YamadaPHONY += prepare archprepare prepare0 prepare1 prepare2 prepare3
9593341bfecSMasahiro Yamada
9603341bfecSMasahiro Yamada# prepare3 is used to check if we are building in a separate output directory,
9613341bfecSMasahiro Yamada# and if so do:
9623341bfecSMasahiro Yamada# 1) Check that make has not been executed in the kernel src $(srctree)
9633341bfecSMasahiro Yamadaprepare3:
9643341bfecSMasahiro Yamadaifneq ($(KBUILD_SRC),)
9653341bfecSMasahiro Yamada	@$(kecho) '  Using $(srctree) as source for u-boot'
9663341bfecSMasahiro Yamada	$(Q)if [ -f $(srctree)/include/config.mk ]; then \
9673341bfecSMasahiro Yamada		echo >&2 "  $(srctree) is not clean, please run 'make mrproper'"; \
9683341bfecSMasahiro Yamada		echo >&2 "  in the '$(srctree)' directory.";\
9693341bfecSMasahiro Yamada		/bin/false; \
9703341bfecSMasahiro Yamada	fi;
9713341bfecSMasahiro Yamadaendif
9723341bfecSMasahiro Yamada
9733341bfecSMasahiro Yamada# prepare2 creates a makefile if using a separate output directory
9743341bfecSMasahiro Yamadaprepare2: prepare3 outputmakefile
9753341bfecSMasahiro Yamada
9763341bfecSMasahiro Yamadaprepare1: prepare2
9777ebf7443Swdenk	@:
9787ebf7443Swdenk
9793341bfecSMasahiro Yamadaarchprepare: prepare1 scripts_basic
980a8c7c708Swdenk
9813341bfecSMasahiro Yamadaprepare0: archprepare FORCE
9823341bfecSMasahiro Yamada	@:
9837ebf7443Swdenk
9843341bfecSMasahiro Yamada# All the preparing..
9853341bfecSMasahiro Yamadaprepare: prepare0
986349e83f0SChe-liang Chiou
987433b2f1eSMasahiro Yamada#
988433b2f1eSMasahiro Yamada# Auto-generate the autoconf.mk file (which is included by all makefiles)
989433b2f1eSMasahiro Yamada#
990433b2f1eSMasahiro Yamada# This target actually generates 2 files; autoconf.mk and autoconf.mk.dep.
991433b2f1eSMasahiro Yamada# the dep file is only include in this top level makefile to determine when
992433b2f1eSMasahiro Yamada# to regenerate the autoconf.mk file.
9931aada9cdSWolfgang Denk
994433b2f1eSMasahiro Yamadaquiet_cmd_autoconf_dep = GEN     $@
995433b2f1eSMasahiro Yamada      cmd_autoconf_dep = $(CC) -x c -DDO_DEPS_ONLY -M $(c_flags) \
996433b2f1eSMasahiro Yamada	-MQ include/autoconf.mk $(srctree)/include/common.h > $@ || rm $@
997887e2ec9SStefan Roese
998433b2f1eSMasahiro Yamadainclude/autoconf.mk.dep: include/config.h include/common.h
999433b2f1eSMasahiro Yamada	$(call cmd,autoconf_dep)
1000887e2ec9SStefan Roese
1001433b2f1eSMasahiro Yamadaquiet_cmd_autoconf = GEN     $@
1002433b2f1eSMasahiro Yamada      cmd_autoconf = \
1003433b2f1eSMasahiro Yamada	$(CPP) $(c_flags) -DDO_DEPS_ONLY -dM $(srctree)/include/common.h > $@.tmp && \
1004433b2f1eSMasahiro Yamada	sed -n -f $(srctree)/tools/scripts/define2mk.sed $@.tmp > $@; \
1005433b2f1eSMasahiro Yamada	rm $@.tmp
10065df2ee27SDaniel Schwierzeck
1007433b2f1eSMasahiro Yamadainclude/autoconf.mk: include/config.h
1008433b2f1eSMasahiro Yamada	$(call cmd,autoconf)
1009433b2f1eSMasahiro Yamada
10109e414032SMasahiro Yamadau-boot.lds: $(LDSCRIPT) depend
10116825a95bSMasahiro Yamada		$(CPP) $(cpp_flags) $(LDPPFLAGS) -ansi -D__ASSEMBLY__ -P - <$< >$@
1012f2302d44SStefan Roese
10133341bfecSMasahiro Yamadanand_spl:	$(TIMESTAMP_FILE) $(VERSION_FILE) depend prepare
10149e414032SMasahiro Yamada		$(MAKE) $(build)=nand_spl/board/$(BOARDDIR) all
1015ca6189dbSKyungmin Park
10169e414032SMasahiro Yamadau-boot-nand.bin:	nand_spl u-boot.bin
10179e414032SMasahiro Yamada		cat nand_spl/u-boot-spl-16k.bin u-boot.bin > u-boot-nand.bin
10180d3c62e4SChander Kashyap
10193341bfecSMasahiro Yamadaspl/u-boot-spl.bin: tools depend prepare
10209e414032SMasahiro Yamada		$(MAKE) obj=spl -f $(srctree)/spl/Makefile all
10210d3c62e4SChander Kashyap
10223341bfecSMasahiro Yamadatpl/u-boot-tpl.bin: tools depend prepare
10239e414032SMasahiro Yamada		$(MAKE) obj=tpl -f $(srctree)/spl/Makefile all CONFIG_TPL_BUILD=y
10243aa29de0SYing Zhang
10252a998793SDaniel Hobi# Explicitly make _depend in subdirs containing multiple targets to prevent
10262a998793SDaniel Hobi# parallel sub-makes creating .depend files simultaneously.
102716a354f9SWolfgang Denkdepend dep:	$(TIMESTAMP_FILE) $(VERSION_FILE) \
10289e414032SMasahiro Yamada		include/generated/generic-asm-offsets.h \
10299e414032SMasahiro Yamada		include/generated/asm-offsets.h
10307ebf7443Swdenk
1031656de6b8SMasahiro YamadaTAG_SUBDIRS := $(u-boot-dirs) include
1032a340c325SJean-Christophe PLAGNIOL-VILLARD
1033857d9ea6SHorst KronstorferFIND := find
1034857d9ea6SHorst KronstorferFINDFLAGS := -L
1035857d9ea6SHorst Kronstorfer
103647f15711SMasahiro YamadaPHONY += checkstack
103747f15711SMasahiro Yamada
10381064d980STom Rinicheckstack:
103947f15711SMasahiro Yamada	$(OBJDUMP) -d u-boot $$(find . -name u-boot-spl) | \
104047f15711SMasahiro Yamada	$(PERL) $(src)/scripts/checkstack.pl $(ARCH)
10411064d980STom Rini
1042f9328639SMarian Balakowicztags ctags:
10439e414032SMasahiro Yamada		ctags -w -o ctags `$(FIND) $(FINDFLAGS) $(TAG_SUBDIRS) \
1044e5e4e705SLi Yang						-name '*.[chS]' -print`
10457ebf7443Swdenk
10467ebf7443Swdenketags:
1047857d9ea6SHorst Kronstorfer		etags -a -o $(obj)etags `$(FIND) $(FINDFLAGS) $(TAG_SUBDIRS) \
1048e5e4e705SLi Yang						-name '*.[chS]' -print`
1049ffda586fSLi Yangcscope:
1050857d9ea6SHorst Kronstorfer		$(FIND) $(FINDFLAGS) $(TAG_SUBDIRS) -name '*.[chS]' -print > \
1051857d9ea6SHorst Kronstorfer						cscope.files
1052ffda586fSLi Yang		cscope -b -q -k
10537ebf7443Swdenk
1054ecb1dc89SMike FrysingerSYSTEM_MAP = \
1055ecb1dc89SMike Frysinger		$(NM) $1 | \
10567ebf7443Swdenk		grep -v '\(compiled\)\|\(\.o$$\)\|\( [aUw] \)\|\(\.\.ng$$\)\|\(LASH[RL]DI\)' | \
1057ecb1dc89SMike Frysinger		LC_ALL=C sort
10589e414032SMasahiro YamadaSystem.map:	u-boot
1059bc8bb6ecSMasahiro Yamada		@$(call SYSTEM_MAP,$<) > $@
10607ebf7443Swdenk
106106a119a0STom Rinicheckthumb:
106206a119a0STom Rini	@if test $(call cc-version) -lt 0404; then \
106306a119a0STom Rini		echo -n '*** Your GCC does not produce working '; \
106406a119a0STom Rini		echo 'binaries in THUMB mode.'; \
106506a119a0STom Rini		echo '*** Your board is configured for THUMB mode.'; \
106606a119a0STom Rini		false; \
106706a119a0STom Rini	fi
10686ec63f41SScott Wood
10696ec63f41SScott Wood# GCC 3.x is reported to have problems generating the type of relocation
10706ec63f41SScott Wood# that U-Boot wants.
10716ec63f41SScott Wood# See http://lists.denx.de/pipermail/u-boot/2012-September/135156.html
10726ec63f41SScott Woodcheckgcc4:
10736ec63f41SScott Wood	@if test $(call cc-version) -lt 0400; then \
10746ec63f41SScott Wood		echo -n '*** Your GCC is too old, please upgrade to GCC 4.x or newer'; \
10756ec63f41SScott Wood		false; \
10766ec63f41SScott Wood	fi
10776ec63f41SScott Wood
1078501ebdf2SStephen Warrencheckdtc:
1079501ebdf2SStephen Warren	@if test $(call dtc-version) -lt 0104; then \
1080501ebdf2SStephen Warren		echo '*** Your dtc is too old, please upgrade to dtc 1.4 or newer'; \
1081501ebdf2SStephen Warren		false; \
1082501ebdf2SStephen Warren	fi
1083501ebdf2SStephen Warren
108447f15711SMasahiro Yamadaquiet_cmd_offsets = GEN     $@
108547f15711SMasahiro Yamada      cmd_offsets = $(srctree)/tools/scripts/make-asm-offsets $< $@
10861510b82dSWolfgang Denk
108747f15711SMasahiro Yamadainclude/generated/generic-asm-offsets.h: lib/asm-offsets.s
108847f15711SMasahiro Yamada	$(call cmd,offsets)
10892f155f6cSGrant Likely
109047f15711SMasahiro Yamadaquiet_cmd_asm-offsets.s = CC      $@
109147f15711SMasahiro Yamada      cmd_asm-offsets.s = mkdir -p lib; \
109216a354f9SWolfgang Denk		$(CC) -DDO_DEPS_ONLY \
10936825a95bSMasahiro Yamada		$(c_flags) $(CFLAGS_$(BCURDIR)/$(@F)) $(CFLAGS_$(BCURDIR)) \
109447f15711SMasahiro Yamada		-o $@ $< -c -S
109516a354f9SWolfgang Denk
109647f15711SMasahiro Yamadalib/asm-offsets.s: $(srctree)/lib/asm-offsets.c include/config.h
109747f15711SMasahiro Yamada	$(call cmd,asm-offsets.s)
1098a4814a69SStefano Babic
10999e414032SMasahiro Yamadainclude/generated/asm-offsets.h: $(CPUDIR)/$(SOC)/asm-offsets.s
110047f15711SMasahiro Yamada	$(call cmd,offsets)
1101a4814a69SStefano Babic
110247f15711SMasahiro Yamadaquiet_cmd_soc_asm-offsets.s = CC      $@
110347f15711SMasahiro Yamada      cmd_soc_asm-offsets.s = mkdir -p $(CPUDIR)/$(SOC); \
11049e414032SMasahiro Yamada	if [ -f $(srctree)/$(CPUDIR)/$(SOC)/asm-offsets.c ];then \
1105a4814a69SStefano Babic		$(CC) -DDO_DEPS_ONLY \
11066825a95bSMasahiro Yamada		$(c_flags) $(CFLAGS_$(BCURDIR)/$(@F)) $(CFLAGS_$(BCURDIR)) \
11079e414032SMasahiro Yamada			-o $@ $(srctree)/$(CPUDIR)/$(SOC)/asm-offsets.c -c -S; \
1108a4814a69SStefano Babic	else \
1109a4814a69SStefano Babic		touch $@; \
1110a4814a69SStefano Babic	fi
1111a4814a69SStefano Babic
111247f15711SMasahiro Yamada$(CPUDIR)/$(SOC)/asm-offsets.s:	include/config.h
111347f15711SMasahiro Yamada	$(call cmd,soc_asm-offsets.s)
1114c7c0d542SMike Frysinger
1115f9328639SMarian Balakowicz#########################################################################
11167ebf7443Swdenk
111754799e45SScott Wood# ARM relocations should all be R_ARM_RELATIVE (32-bit) or
111854799e45SScott Wood# R_AARCH64_RELATIVE (64-bit).
11199e414032SMasahiro Yamadacheckarmreloc: u-boot
112054799e45SScott Wood	@RELOC="`$(CROSS_COMPILE)readelf -r -W $< | cut -d ' ' -f 4 | \
112154799e45SScott Wood		grep R_A | sort -u`"; \
112254799e45SScott Wood	if test "$$RELOC" != "R_ARM_RELATIVE" -a \
112354799e45SScott Wood		 "$$RELOC" != "R_AARCH64_RELATIVE"; then \
112454799e45SScott Wood		echo "$< contains unexpected relocations: $$RELOC"; \
112554799e45SScott Wood		false; \
112654799e45SScott Wood	fi
1127c37980c3SAlbert ARIBAUD
112828abd48fSIlya Yanok$(VERSION_FILE):
112914ce91b1SMike Frysinger		@mkdir -p $(dir $(VERSION_FILE))
1130dd88ab32SMasahiro Yamada		@( localvers='$(shell $(TOPDIR)/scripts/setlocalversion $(TOPDIR))' ; \
113128abd48fSIlya Yanok		   printf '#define PLAIN_VERSION "%s%s"\n' \
113228abd48fSIlya Yanok			"$(U_BOOT_VERSION)" "$${localvers}" ; \
113328abd48fSIlya Yanok		   printf '#define U_BOOT_VERSION "U-Boot %s%s"\n' \
113428abd48fSIlya Yanok			"$(U_BOOT_VERSION)" "$${localvers}" ; \
113528abd48fSIlya Yanok		) > $@.tmp
113628abd48fSIlya Yanok		@( printf '#define CC_VERSION_STRING "%s"\n' \
113728abd48fSIlya Yanok		 '$(shell $(CC) --version | head -n 1)' )>>  $@.tmp
113828abd48fSIlya Yanok		@( printf '#define LD_VERSION_STRING "%s"\n' \
113928abd48fSIlya Yanok		 '$(shell $(LD) -v | head -n 1)' )>>  $@.tmp
114028abd48fSIlya Yanok		@cmp -s $@ $@.tmp && rm -f $@.tmp || mv -f $@.tmp $@
114128abd48fSIlya Yanok
1142249b53a6SLoïc Minier$(TIMESTAMP_FILE):
1143249b53a6SLoïc Minier		@mkdir -p $(dir $(TIMESTAMP_FILE))
1144a76406fbSLoïc Minier		@LC_ALL=C date +'#define U_BOOT_DATE "%b %d %C%y"' > $@.tmp
1145a76406fbSLoïc Minier		@LC_ALL=C date +'#define U_BOOT_TIME "%T"' >> $@.tmp
1146a76406fbSLoïc Minier		@cmp -s $@ $@.tmp && rm -f $@.tmp || mv -f $@.tmp $@
1147249b53a6SLoïc Minier
11482887c473SMasahiro Yamadaenv: depend scripts_basic
11493f76e984SMasahiro Yamada	$(Q)$(MAKE) $(build)=tools/$@
11500358df42SMike Frysinger
11512887c473SMasahiro Yamadatools-all: HOST_TOOLS_ALL=y
11522887c473SMasahiro Yamadatools-all: env tools ;
11530358df42SMike Frysinger
11544e53a258SWolfgang Denk.PHONY : CHANGELOG
11554e53a258SWolfgang DenkCHANGELOG:
1156b985b5d6SBen Warren	git log --no-merges U-Boot-1_1_5.. | \
1157b985b5d6SBen Warren	unexpand -a | sed -e 's/\s\s*$$//' > $@
11584e53a258SWolfgang Denk
11590a823aa2SHarald Welteinclude/license.h: tools/bin2header COPYING
11600a823aa2SHarald Welte	cat COPYING | gzip -9 -c | ./tools/bin2header license_gzip > include/license.h
11617ebf7443Swdenk#########################################################################
11627ebf7443Swdenk
1163efcf8619SMasahiro Yamada###
1164efcf8619SMasahiro Yamada# Cleaning is done on three levels.
1165efcf8619SMasahiro Yamada# make clean     Delete most generated files
1166efcf8619SMasahiro Yamada#                Leave enough to build external modules
1167efcf8619SMasahiro Yamada# make mrproper  Delete the current configuration, and all generated files
1168efcf8619SMasahiro Yamada# make distclean Remove editor backup files, patch leftover files and the like
11697ebf7443Swdenk
1170efcf8619SMasahiro Yamada# Directories & files removed with 'make clean'
1171efcf8619SMasahiro YamadaCLEAN_DIRS  += $(MODVERDIR)
1172efcf8619SMasahiro YamadaCLEAN_FILES += u-boot.lds include/bmp_logo.h include/bmp_logo_data.h \
11736ab6b2afSMasahiro Yamada	       board/*/config.tmp board/*/*/config.tmp \
1174efcf8619SMasahiro Yamada	       include/autoconf.mk* include/spl-autoconf.mk \
1175433b2f1eSMasahiro Yamada	       include/tpl-autoconf.mk
1176a6862bc1SWolfgang Denk
1177efcf8619SMasahiro Yamada# Directories & files removed with 'make clobber'
1178efcf8619SMasahiro YamadaCLOBBER_DIRS  += $(patsubst %,spl/%, $(filter-out Makefile, \
1179efcf8619SMasahiro Yamada		 $(shell ls -1 spl 2>/dev/null))) \
1180efcf8619SMasahiro Yamada		 tpl
118173c8b52bSMasahiro YamadaCLOBBER_FILES += u-boot* MLO* SPL System.map nand_spl/u-boot*
11829f4a4206SMike Frysinger
1183efcf8619SMasahiro Yamada# Directories & files removed with 'make mrproper'
1184efcf8619SMasahiro YamadaMRPROPER_DIRS  += include/config include/generated
1185efcf8619SMasahiro YamadaMRPROPER_FILES += .config .config.old \
1186efcf8619SMasahiro Yamada		  tags TAGS cscope* GPATH GTAGS GRTAGS GSYMS \
1187efcf8619SMasahiro Yamada		  include/config.h include/config.mk
11887ebf7443Swdenk
1189efcf8619SMasahiro Yamada# clean - Delete most, but leave enough to build external modules
1190efcf8619SMasahiro Yamada#
1191efcf8619SMasahiro Yamadaclean: rm-dirs  := $(CLEAN_DIRS)
1192efcf8619SMasahiro Yamadaclean: rm-files := $(CLEAN_FILES)
11937ebf7443Swdenk
1194efcf8619SMasahiro Yamadaclean-dirs	:= $(foreach f,$(u-boot-alldirs),$(if $(wildcard $f/Makefile),$f))
1195734329f9SAndy Fleming
1196efcf8619SMasahiro Yamadaclean-dirs      := $(addprefix _clean_, $(clean-dirs) doc/DocBook)
11977ebf7443Swdenk
1198efcf8619SMasahiro YamadaPHONY += $(clean-dirs) clean archclean
1199efcf8619SMasahiro Yamada$(clean-dirs):
1200efcf8619SMasahiro Yamada	$(Q)$(MAKE) $(clean)=$(patsubst _clean_%,%,$@)
1201efcf8619SMasahiro Yamada
1202efcf8619SMasahiro Yamada# TODO: Do not use *.cfgtmp
1203efcf8619SMasahiro Yamadaclean: $(clean-dirs)
1204efcf8619SMasahiro Yamada	$(call cmd,rmdirs)
1205efcf8619SMasahiro Yamada	$(call cmd,rmfiles)
1206efcf8619SMasahiro Yamada	@find $(if $(KBUILD_EXTMOD), $(KBUILD_EXTMOD), .) $(RCS_FIND_IGNORE) \
1207efcf8619SMasahiro Yamada		\( -name '*.[oas]' -o -name '*.ko' -o -name '.*.cmd' \
1208efcf8619SMasahiro Yamada		-o -name '*.ko.*' -o -name '*.su' -o -name '*.cfgtmp' \
1209efcf8619SMasahiro Yamada		-o -name '.*.d' -o -name '.*.tmp' -o -name '*.mod.c' \
1210efcf8619SMasahiro Yamada		-o -name '*.symtypes' -o -name 'modules.order' \
1211efcf8619SMasahiro Yamada		-o -name modules.builtin -o -name '.tmp_*.o.*' \
1212efcf8619SMasahiro Yamada		-o -name '*.gcno' \) -type f -print | xargs rm -f
1213efcf8619SMasahiro Yamada	@find $(if $(KBUILD_EXTMOD), $(KBUILD_EXTMOD), .) $(RCS_FIND_IGNORE) \
1214efcf8619SMasahiro Yamada		-path './nand_spl/*' -type l -print | xargs rm -f
1215efcf8619SMasahiro Yamada
1216efcf8619SMasahiro Yamada# clobber
1217efcf8619SMasahiro Yamada#
1218efcf8619SMasahiro Yamadaclobber: rm-dirs  := $(CLOBBER_DIRS)
1219efcf8619SMasahiro Yamadaclobber: rm-files := $(CLOBBER_FILES)
1220efcf8619SMasahiro Yamada
1221efcf8619SMasahiro YamadaPHONY += clobber
1222efcf8619SMasahiro Yamada
1223efcf8619SMasahiro Yamadaclobber: clean
1224efcf8619SMasahiro Yamada	$(call cmd,rmdirs)
1225efcf8619SMasahiro Yamada	$(call cmd,rmfiles)
1226efcf8619SMasahiro Yamada
1227efcf8619SMasahiro Yamada# mrproper - Delete all generated files, including .config
1228efcf8619SMasahiro Yamada#
1229efcf8619SMasahiro Yamadamrproper: rm-dirs  := $(wildcard $(MRPROPER_DIRS))
1230efcf8619SMasahiro Yamadamrproper: rm-files := $(wildcard $(MRPROPER_FILES))
1231efcf8619SMasahiro Yamadamrproper-dirs      := $(addprefix _mrproper_,scripts)
1232efcf8619SMasahiro Yamada
1233efcf8619SMasahiro YamadaPHONY += $(mrproper-dirs) mrproper archmrproper
1234efcf8619SMasahiro Yamada$(mrproper-dirs):
1235efcf8619SMasahiro Yamada	$(Q)$(MAKE) $(clean)=$(patsubst _mrproper_%,%,$@)
1236efcf8619SMasahiro Yamada
1237efcf8619SMasahiro Yamadamrproper: clobber $(mrproper-dirs)
1238efcf8619SMasahiro Yamada	$(call cmd,rmdirs)
1239efcf8619SMasahiro Yamada	$(call cmd,rmfiles)
1240efcf8619SMasahiro Yamada	@rm -f arch/*/include/asm/arch arch/*/include/asm/proc
1241efcf8619SMasahiro Yamada
1242efcf8619SMasahiro Yamada# distclean
1243efcf8619SMasahiro Yamada#
1244efcf8619SMasahiro YamadaPHONY += distclean
1245efcf8619SMasahiro Yamada
1246433b2f1eSMasahiro Yamadadistclean: mrproper
1247efcf8619SMasahiro Yamada	@find $(srctree) $(RCS_FIND_IGNORE) \
1248efcf8619SMasahiro Yamada		\( -name '*.orig' -o -name '*.rej' -o -name '*~' \
1249efcf8619SMasahiro Yamada		-o -name '*.bak' -o -name '#*#' -o -name '.*.orig' \
1250efcf8619SMasahiro Yamada		-o -name '.*.rej' \
1251efcf8619SMasahiro Yamada		-o -name '*%' -o -name '.*.cmd' -o -name 'core' \) \
1252efcf8619SMasahiro Yamada		-type f -print | xargs rm -f
12537ebf7443Swdenk
12547ebf7443Swdenkbackup:
12557ebf7443Swdenk	F=`basename $(TOPDIR)` ; cd .. ; \
1256d6b93714SIlya Yanok	gtar --force-local -zcvf `LC_ALL=C date "+$$F-%Y-%m-%d-%T.tar.gz"` $$F
12577ebf7443Swdenk
12588fac9c7bSMasahiro Yamada
12598fac9c7bSMasahiro Yamada# Documentation targets
12608fac9c7bSMasahiro Yamada# ---------------------------------------------------------------------------
12618fac9c7bSMasahiro Yamada%docs: scripts_basic FORCE
12628fac9c7bSMasahiro Yamada	$(Q)$(MAKE) $(build)=scripts build_docproc
12638fac9c7bSMasahiro Yamada	$(Q)$(MAKE) $(build)=doc/DocBook $@
12648fac9c7bSMasahiro Yamada
12653341bfecSMasahiro Yamada# Dummies...
12663341bfecSMasahiro YamadaPHONY += prepare scripts
12673341bfecSMasahiro Yamadaprepare: ;
12683341bfecSMasahiro Yamadascripts: ;
12699e414032SMasahiro Yamada
1270433b2f1eSMasahiro Yamadaendif #ifeq ($(config-targets),1)
1271433b2f1eSMasahiro Yamadaendif #ifeq ($(mixed-targets),1)
1272433b2f1eSMasahiro Yamada
1273efcf8619SMasahiro Yamadaquiet_cmd_rmdirs = $(if $(wildcard $(rm-dirs)),CLEAN   $(wildcard $(rm-dirs)))
1274efcf8619SMasahiro Yamada      cmd_rmdirs = rm -rf $(rm-dirs)
1275efcf8619SMasahiro Yamada
1276efcf8619SMasahiro Yamadaquiet_cmd_rmfiles = $(if $(wildcard $(rm-files)),CLEAN   $(wildcard $(rm-files)))
1277efcf8619SMasahiro Yamada      cmd_rmfiles = rm -f $(rm-files)
1278efcf8619SMasahiro Yamada
1279efcf8619SMasahiro Yamada# Shorthand for $(Q)$(MAKE) -f scripts/Makefile.clean obj=dir
1280efcf8619SMasahiro Yamada# Usage:
1281efcf8619SMasahiro Yamada# $(Q)$(MAKE) $(clean)=dir
1282efcf8619SMasahiro Yamadaclean := -f $(if $(KBUILD_SRC),$(srctree)/)scripts/Makefile.clean obj
1283efcf8619SMasahiro Yamada
12849e414032SMasahiro Yamadaendif	# skip-makefile
12859e414032SMasahiro Yamada
12869e414032SMasahiro YamadaPHONY += FORCE
12879e414032SMasahiro YamadaFORCE:
12889e414032SMasahiro Yamada
12899e414032SMasahiro Yamada# Declare the contents of the .PHONY variable as phony.  We keep that
12909e414032SMasahiro Yamada# information in a variable so we can use it in if_changed and friends.
12919e414032SMasahiro Yamada.PHONY: $(PHONY)
1292