blob: 1409c8bf39815de08ed082a9271dfcfe0b7ac545 [file] [log] [blame]
wdenk7ebf7442002-11-02 23:17:16 +00001#
Wolfgang Denkeca3aeb2013-06-21 10:22:36 +02002# (C) Copyright 2000-2013
wdenk7ebf7442002-11-02 23:17:16 +00003# Wolfgang Denk, DENX Software Engineering, wd@denx.de.
4#
Wolfgang Denkeca3aeb2013-06-21 10:22:36 +02005# SPDX-License-Identifier: GPL-2.0+
wdenk7ebf7442002-11-02 23:17:16 +00006#
7
Tom Rinid19ad722013-11-25 16:49:32 -05008VERSION = 2014
9PATCHLEVEL = 01
Wolfgang Denk211e4752012-07-10 09:21:12 +020010SUBLEVEL =
Tom Rinib44bd2c2014-01-20 17:52:59 -050011EXTRAVERSION =
Wolfgang Denk8b9e4782008-09-09 23:55:18 +020012ifneq "$(SUBLEVEL)" ""
Wolfgang Denk881a87e2006-02-21 17:33:04 +010013U_BOOT_VERSION = $(VERSION).$(PATCHLEVEL).$(SUBLEVEL)$(EXTRAVERSION)
Wolfgang Denk8b9e4782008-09-09 23:55:18 +020014else
15U_BOOT_VERSION = $(VERSION).$(PATCHLEVEL)$(EXTRAVERSION)
16endif
Masahiro Yamada9e414032014-02-04 17:24:24 +090017TIMESTAMP_FILE = include/generated/timestamp_autogenerated.h
18VERSION_FILE = include/generated/version_autogenerated.h
Wolfgang Denk881a87e2006-02-21 17:33:04 +010019
wdenk7ebf7442002-11-02 23:17:16 +000020HOSTARCH := $(shell uname -m | \
Graeme Russfea25722011-04-13 19:43:28 +100021 sed -e s/i.86/x86/ \
wdenk7ebf7442002-11-02 23:17:16 +000022 -e s/sun4u/sparc64/ \
23 -e s/arm.*/arm/ \
24 -e s/sa110/arm/ \
Kumar Galad0179082010-04-28 02:52:02 -050025 -e s/ppc64/powerpc/ \
26 -e s/ppc/powerpc/ \
Nobuhiro Iwamatsu8d1f6352010-06-16 07:59:17 +090027 -e s/macppc/powerpc/\
28 -e s/sh.*/sh/)
wdenk7ebf7442002-11-02 23:17:16 +000029
Wolfgang Denkf9d77ed2005-08-12 23:23:46 +020030HOSTOS := $(shell uname -s | tr '[:upper:]' '[:lower:]' | \
wdenk7ebf7442002-11-02 23:17:16 +000031 sed -e 's/\(cygwin\).*/cygwin/')
32
Benoît Thébaudeau120ae602013-04-11 09:35:54 +000033export HOSTARCH HOSTOS
wdenk7ebf7442002-11-02 23:17:16 +000034
35# Deal with colliding definitions from tcsh etc.
36VENDOR=
37
38#########################################################################
Wolfgang Denkae6d1052008-01-13 00:59:21 +010039# Allow for silent builds
40ifeq (,$(findstring s,$(MAKEFLAGS)))
41XECHO = echo
42else
43XECHO = :
44endif
45
Masahiro Yamada9e414032014-02-04 17:24:24 +090046# kbuild supports saving output files in a separate directory.
47# To locate output files in a separate directory two syntaxes are supported.
48# In both cases the working directory must be the root of the kernel src.
49# 1) O=
50# Use "make O=dir/to/store/output/files/"
Marian Balakowiczf9328632006-09-01 19:49:50 +020051#
Masahiro Yamada9e414032014-02-04 17:24:24 +090052# 2) Set KBUILD_OUTPUT
53# Set the environment variable KBUILD_OUTPUT to point to the directory
54# where the output files shall be placed.
55# export KBUILD_OUTPUT=dir/to/store/output/files/
56# make
Stefan Roese887e2ec2006-09-07 11:51:23 +020057#
Masahiro Yamada9e414032014-02-04 17:24:24 +090058# The O= assignment takes precedence over the KBUILD_OUTPUT environment
59# variable.
wdenk7ebf7442002-11-02 23:17:16 +000060
Masahiro Yamada9e414032014-02-04 17:24:24 +090061
62# KBUILD_SRC is set on invocation of make in OBJ directory
63# KBUILD_SRC is not intended to be used by the regular user (for now)
64ifeq ($(KBUILD_SRC),)
65
66# OK, Make called in directory where kernel src resides
67# Do we want to locate output files in a separate directory?
Marian Balakowiczf9328632006-09-01 19:49:50 +020068ifeq ("$(origin O)", "command line")
Masahiro Yamada9e414032014-02-04 17:24:24 +090069 KBUILD_OUTPUT := $(O)
Marian Balakowiczf9328632006-09-01 19:49:50 +020070endif
wdenk7ebf7442002-11-02 23:17:16 +000071
Masahiro Yamada9e414032014-02-04 17:24:24 +090072ifeq ("$(origin W)", "command line")
73 export KBUILD_ENABLE_EXTRA_GCC_CHECKS := $(W)
74endif
75
76# That's our default target when none is given on the command line
77PHONY := _all
78_all:
79
80# Cancel implicit rules on top Makefile
81$(CURDIR)/Makefile Makefile: ;
82
83ifneq ($(KBUILD_OUTPUT),)
84# Invoke a second make in the output directory, passing relevant variables
85# check that the output directory actually exists
86saved-output := $(KBUILD_OUTPUT)
87KBUILD_OUTPUT := $(shell cd $(KBUILD_OUTPUT) && /bin/pwd)
88$(if $(KBUILD_OUTPUT),, \
89 $(error output directory "$(saved-output)" does not exist))
90
91PHONY += $(MAKECMDGOALS) sub-make
92
93$(filter-out _all sub-make $(CURDIR)/Makefile, $(MAKECMDGOALS)) _all: sub-make
94 @:
95
96sub-make: FORCE
97 $(if $(KBUILD_VERBOSE:1=),@)$(MAKE) -C $(KBUILD_OUTPUT) \
98 KBUILD_SRC=$(CURDIR) \
99 KBUILD_EXTMOD="$(KBUILD_EXTMOD)" -f $(CURDIR)/Makefile \
100 $(filter-out _all sub-make,$(MAKECMDGOALS))
101
102# Leave processing to above invocation of make
103skip-makefile := 1
104endif # ifneq ($(KBUILD_OUTPUT),)
105endif # ifeq ($(KBUILD_SRC),)
106
107# We process the rest of the Makefile if this is the final invocation of make
108ifeq ($(skip-makefile),)
109
110PHONY += all
111_all: all
112
113srctree := $(if $(KBUILD_SRC),$(KBUILD_SRC),$(CURDIR))
114objtree := $(CURDIR)
115src := $(srctree)
116obj := $(objtree)
117
118VPATH := $(srctree)$(if $(KBUILD_EXTMOD),:$(KBUILD_EXTMOD))
119
120export srctree objtree VPATH
121
Kim Phillips4ab64932012-09-21 12:28:17 +0000122# Call a source code checker (by default, "sparse") as part of the
123# C compilation.
124#
125# Use 'make C=1' to enable checking of re-compiled files.
126#
127# See the linux kernel file "Documentation/sparse.txt" for more details,
128# including where to get the "sparse" utility.
129
130ifdef C
131ifeq ("$(origin C)", "command line")
132CHECKSRC := $(C)
133endif
134endif
135ifndef CHECKSRC
136 CHECKSRC = 0
137endif
138export CHECKSRC
139
Masahiro Yamada9e414032014-02-04 17:24:24 +0900140OBJTREE := $(objtree)
Daniel Schwierzeckc8f9c302011-07-18 06:09:15 +0000141SPLTREE := $(OBJTREE)/spl
Ying Zhang3aa29de2013-08-16 15:16:15 +0800142TPLTREE := $(OBJTREE)/tpl
Masahiro Yamada9e414032014-02-04 17:24:24 +0900143SRCTREE := $(srctree)
Marian Balakowiczf9328632006-09-01 19:49:50 +0200144TOPDIR := $(SRCTREE)
Masahiro Yamada9e414032014-02-04 17:24:24 +0900145export TOPDIR SRCTREE OBJTREE SPLTREE TPLTREE
Marian Balakowiczf9328632006-09-01 19:49:50 +0200146
147MKCONFIG := $(SRCTREE)/mkconfig
148export MKCONFIG
149
Wolfgang Denk5013c092008-03-02 22:45:33 +0100150# Make sure CDPATH settings don't interfere
151unexport CDPATH
152
Marian Balakowiczf9328632006-09-01 19:49:50 +0200153#########################################################################
154
Mike Frysinger6d1ce382009-05-30 01:02:03 -0400155# The "tools" are needed early, so put this first
156# Don't include stuff already done in $(LIBS)
Che-liang Chiou349e83f2011-10-17 21:04:15 +0000157# The "examples" conditionally depend on U-Boot (say, when USE_PRIVATE_LIBGCC
158# is "yes"), so compile examples after U-Boot is compiled.
159SUBDIR_TOOLS = tools
Che-liang Chiou349e83f2011-10-17 21:04:15 +0000160SUBDIRS = $(SUBDIR_TOOLS)
Mike Frysinger6d1ce382009-05-30 01:02:03 -0400161
Loïc Minier249b53a2011-10-03 11:57:10 +0200162.PHONY : $(SUBDIRS) $(VERSION_FILE) $(TIMESTAMP_FILE)
Mike Frysinger6d1ce382009-05-30 01:02:03 -0400163
Masahiro Yamada9e414032014-02-04 17:24:24 +0900164ifeq (include/config.mk,$(wildcard include/config.mk))
Marian Balakowiczf9328632006-09-01 19:49:50 +0200165
Mike Frysinger2632c002009-07-21 22:59:36 -0400166# Include autoconf.mk before config.mk so that the config options are available
167# to all top level build files. We need the dummy all: target to prevent the
168# dependency target in autoconf.mk.dep from being the default.
169all:
Masahiro Yamada9e414032014-02-04 17:24:24 +0900170sinclude include/autoconf.mk.dep
171sinclude include/autoconf.mk
Mike Frysinger2632c002009-07-21 22:59:36 -0400172
Masahiro Yamada8a7e7d52013-11-18 11:08:35 +0900173SUBDIR_EXAMPLES-y := examples/standalone
174SUBDIR_EXAMPLES-$(CONFIG_API) += examples/api
Simon Glassb5728752011-10-25 11:29:28 +0000175ifndef CONFIG_SANDBOX
Masahiro Yamada8a7e7d52013-11-18 11:08:35 +0900176SUBDIRS += $(SUBDIR_EXAMPLES-y)
Simon Glassb5728752011-10-25 11:29:28 +0000177endif
178
wdenk7ebf7442002-11-02 23:17:16 +0000179# load ARCH, BOARD, and CPU configuration
Masahiro Yamada9e414032014-02-04 17:24:24 +0900180include include/config.mk
wdenk1d9f4102004-10-09 22:21:29 +0000181export ARCH CPU BOARD VENDOR SOC
Marian Balakowiczf9328632006-09-01 19:49:50 +0200182
Mike Frysinger1ea6bcd2009-06-14 23:33:14 -0400183# set default to nothing for native builds
Wolfgang Denka5284ef2007-03-06 18:01:47 +0100184ifeq ($(HOSTARCH),$(ARCH))
Mike Frysinger1ea6bcd2009-06-14 23:33:14 -0400185CROSS_COMPILE ?=
wdenk7ebf7442002-11-02 23:17:16 +0000186endif
wdenk7ebf7442002-11-02 23:17:16 +0000187
Masahiro Yamadaf6322eb2014-02-04 17:24:15 +0900188# SHELL used by kbuild
189CONFIG_SHELL := $(shell if [ -x "$$BASH" ]; then echo $$BASH; \
190 else if [ -x /bin/bash ]; then echo /bin/bash; \
191 else echo sh; fi ; fi)
192
193HOSTCC = gcc
194HOSTCFLAGS = -Wall -Wstrict-prototypes -O2 -fomit-frame-pointer
195
196ifeq ($(HOSTOS),cygwin)
197HOSTCFLAGS += -ansi
198endif
199
200# Mac OS X / Darwin's C preprocessor is Apple specific. It
201# generates numerous errors and warnings. We want to bypass it
202# and use GNU C's cpp. To do this we pass the -traditional-cpp
203# option to the compiler. Note that the -traditional-cpp flag
204# DOES NOT have the same semantics as GNU C's flag, all it does
205# is invoke the GNU preprocessor in stock ANSI/ISO C fashion.
206#
207# Apple's linker is similar, thanks to the new 2 stage linking
208# multiple symbol definitions are treated as errors, hence the
209# -multiply_defined suppress option to turn off this error.
210#
211ifeq ($(HOSTOS),darwin)
212# get major and minor product version (e.g. '10' and '6' for Snow Leopard)
213DARWIN_MAJOR_VERSION = $(shell sw_vers -productVersion | cut -f 1 -d '.')
214DARWIN_MINOR_VERSION = $(shell sw_vers -productVersion | cut -f 2 -d '.')
215
216os_x_before = $(shell if [ $(DARWIN_MAJOR_VERSION) -le $(1) -a \
217 $(DARWIN_MINOR_VERSION) -le $(2) ] ; then echo "$(3)"; else echo "$(4)"; fi ;)
218
219# Snow Leopards build environment has no longer restrictions as described above
220HOSTCC = $(call os_x_before, 10, 5, "cc", "gcc")
221HOSTCFLAGS += $(call os_x_before, 10, 4, "-traditional-cpp")
222HOSTLDFLAGS += $(call os_x_before, 10, 5, "-multiply_defined suppress")
223endif
224
Masahiro Yamada9e414032014-02-04 17:24:24 +0900225# Look for make include files relative to root of kernel src
226MAKEFLAGS += --include-dir=$(srctree)
227
Masahiro Yamadabf4b3de2014-02-04 17:24:18 +0900228# We need some generic definitions (do not try to remake the file).
229$(srctree)/scripts/Kbuild.include: ;
230include $(srctree)/scripts/Kbuild.include
231
Masahiro Yamadaf6322eb2014-02-04 17:24:15 +0900232# Make variables (CC, etc...)
233
234AS = $(CROSS_COMPILE)as
235# Always use GNU ld
236ifneq ($(shell $(CROSS_COMPILE)ld.bfd -v 2> /dev/null),)
237LD = $(CROSS_COMPILE)ld.bfd
238else
239LD = $(CROSS_COMPILE)ld
240endif
241CC = $(CROSS_COMPILE)gcc
242CPP = $(CC) -E
243AR = $(CROSS_COMPILE)ar
244NM = $(CROSS_COMPILE)nm
245LDR = $(CROSS_COMPILE)ldr
246STRIP = $(CROSS_COMPILE)strip
247OBJCOPY = $(CROSS_COMPILE)objcopy
248OBJDUMP = $(CROSS_COMPILE)objdump
249AWK = awk
250RANLIB = $(CROSS_COMPILE)RANLIB
251DTC = dtc
252CHECK = sparse
253
254CHECKFLAGS := -D__linux__ -Dlinux -D__STDC__ -Dunix -D__unix__ \
255 -Wbitwise -Wno-return-void -D__CHECK_ENDIAN__ $(CF)
256
Masahiro Yamadafea1ca82014-02-04 17:24:20 +0900257# Use UBOOTINCLUDE when you must reference the include/ directory.
258# Needed to be compatible with the O= option
259UBOOTINCLUDE :=
260ifneq ($(OBJTREE),$(SRCTREE))
261UBOOTINCLUDE += -I$(OBJTREE)/include
262endif
263UBOOTINCLUDE += -I$(srctree)/include \
264 -I$(srctree)/arch/$(ARCH)/include
265
Masahiro Yamada2b3c9d32014-02-04 17:24:19 +0900266KBUILD_CPPFLAGS := -D__KERNEL__
267
268KBUILD_CFLAGS := -Wall -Wstrict-prototypes \
269 -Wno-format-security \
270 -fno-builtin -ffreestanding
271KBUILD_AFLAGS := -D__ASSEMBLY__
272
Masahiro Yamadaf6322eb2014-02-04 17:24:15 +0900273export CONFIG_SHELL HOSTCC HOSTCFLAGS HOSTLDFLAGS CROSS_COMPILE AS LD CC
274export CPP AR NM LDR STRIP OBJCOPY OBJDUMP
275export MAKE AWK
276export DTC CHECK CHECKFLAGS
277
Masahiro Yamadafea1ca82014-02-04 17:24:20 +0900278export KBUILD_CPPFLAGS NOSTDINC_FLAGS UBOOTINCLUDE
Masahiro Yamada2b3c9d32014-02-04 17:24:19 +0900279export KBUILD_CFLAGS KBUILD_AFLAGS
280
281KBUILD_CFLAGS += -Os #-fomit-frame-pointer
282
283ifdef BUILD_TAG
284KBUILD_CFLAGS += -DBUILD_TAG='"$(BUILD_TAG)"'
285endif
286
287KBUILD_CFLAGS += $(call cc-option,-fno-stack-protector)
288
289KBUILD_CFLAGS += -g
290# $(KBUILD_AFLAGS) sets -g, which causes gcc to pass a suitable -g<format>
291# option to the assembler.
292KBUILD_AFLAGS += -g
293
Masahiro Yamadafea1ca82014-02-04 17:24:20 +0900294NOSTDINC_FLAGS += -nostdinc -isystem $(shell $(CC) -print-file-name=include)
295CHECKFLAGS += $(NOSTDINC_FLAGS)
296
Masahiro Yamada2b3c9d32014-02-04 17:24:19 +0900297# Report stack usage if supported
298KBUILD_CFLAGS += $(call cc-option,-fstack-usage)
299
300KBUILD_CFLAGS += $(call cc-option,-Wno-format-nonliteral)
301
302# turn jbsr into jsr for m68k
303ifeq ($(ARCH),m68k)
304ifeq ($(findstring 3.4,$(shell $(CC) --version)),3.4)
305KBUILD_AFLAGS += -Wa,-gstabs,-S
306endif
307endif
308
Wolfgang Denk92b197f2006-03-12 01:37:50 +0100309# load other configuration
310include $(TOPDIR)/config.mk
311
Masahiro Yamadaced07152014-02-04 17:24:21 +0900312ifneq ($(CONFIG_SYS_TEXT_BASE),)
313KBUILD_CPPFLAGS += -DCONFIG_SYS_TEXT_BASE=$(CONFIG_SYS_TEXT_BASE)
314endif
315
316export CONFIG_SYS_TEXT_BASE
317
Masahiro Yamada9e414032014-02-04 17:24:24 +0900318LDFLAGS_u-boot += -T u-boot.lds $(LDFLAGS_FINAL)
Masahiro Yamadaced07152014-02-04 17:24:21 +0900319ifneq ($(CONFIG_SYS_TEXT_BASE),)
320LDFLAGS_u-boot += -Ttext $(CONFIG_SYS_TEXT_BASE)
321endif
322
Simon Glassfada9e22013-04-20 08:42:36 +0000323# Targets which don't build the source code
Masahiro Yamadaced07152014-02-04 17:24:21 +0900324NON_BUILD_TARGETS = backup clean clobber distclean mrproper tidy unconfig %_config
Simon Glassfada9e22013-04-20 08:42:36 +0000325
326# Only do the generic board check when actually building, not configuring
327ifeq ($(filter $(NON_BUILD_TARGETS),$(MAKECMDGOALS)),)
Masahiro Yamadaced07152014-02-04 17:24:21 +0900328ifeq ($(__HAVE_ARCH_GENERIC_BOARD),)
329ifneq ($(CONFIG_SYS_GENERIC_BOARD),)
330CHECK_GENERIC_BOARD = $(error Your architecture does not support generic board. \
331Please undefined CONFIG_SYS_GENERIC_BOARD in your board config file)
332endif
Simon Glassfada9e22013-04-20 08:42:36 +0000333endif
334endif
335
Ilya Yanokd51dfff2011-06-20 12:45:37 +0000336# If board code explicitly specified LDSCRIPT or CONFIG_SYS_LDSCRIPT, use
337# that (or fail if absent). Otherwise, search for a linker script in a
338# standard location.
339
Simon Glassee601972011-11-21 10:49:37 +0000340LDSCRIPT_MAKEFILE_DIR = $(dir $(LDSCRIPT))
341
Ilya Yanokd51dfff2011-06-20 12:45:37 +0000342ifndef LDSCRIPT
343 #LDSCRIPT := $(TOPDIR)/board/$(BOARDDIR)/u-boot.lds.debug
344 ifdef CONFIG_SYS_LDSCRIPT
345 # need to strip off double quotes
Masahiro Yamadaa8c07542013-12-05 15:08:31 +0900346 LDSCRIPT := $(CONFIG_SYS_LDSCRIPT:"%"=%)
Ilya Yanokd51dfff2011-06-20 12:45:37 +0000347 endif
348endif
349
Simon Glassee601972011-11-21 10:49:37 +0000350# If there is no specified link script, we look in a number of places for it
Ilya Yanokd51dfff2011-06-20 12:45:37 +0000351ifndef LDSCRIPT
352 ifeq ($(CONFIG_NAND_U_BOOT),y)
353 LDSCRIPT := $(TOPDIR)/board/$(BOARDDIR)/u-boot-nand.lds
354 ifeq ($(wildcard $(LDSCRIPT)),)
355 LDSCRIPT := $(TOPDIR)/$(CPUDIR)/u-boot-nand.lds
356 endif
357 endif
358 ifeq ($(wildcard $(LDSCRIPT)),)
359 LDSCRIPT := $(TOPDIR)/board/$(BOARDDIR)/u-boot.lds
360 endif
361 ifeq ($(wildcard $(LDSCRIPT)),)
362 LDSCRIPT := $(TOPDIR)/$(CPUDIR)/u-boot.lds
363 endif
364 ifeq ($(wildcard $(LDSCRIPT)),)
Simon Glassee601972011-11-21 10:49:37 +0000365 LDSCRIPT := $(TOPDIR)/arch/$(ARCH)/cpu/u-boot.lds
366 # We don't expect a Makefile here
367 LDSCRIPT_MAKEFILE_DIR =
368 endif
369 ifeq ($(wildcard $(LDSCRIPT)),)
Ilya Yanokd51dfff2011-06-20 12:45:37 +0000370$(error could not find linker script)
371 endif
372endif
373
wdenk7ebf7442002-11-02 23:17:16 +0000374#########################################################################
375# U-Boot objects....order is important (i.e. start must be first)
376
Masahiro Yamadae8a8b822013-11-28 12:09:59 +0900377head-y := $(CPUDIR)/start.o
378head-$(CONFIG_4xx) += arch/powerpc/cpu/ppc4xx/resetvec.o
379head-$(CONFIG_MPC85xx) += arch/powerpc/cpu/mpc85xx/resetvec.o
wdenk7ebf7442002-11-02 23:17:16 +0000380
Masahiro Yamada9e414032014-02-04 17:24:24 +0900381OBJS := $(head-y)
Marian Balakowiczf9328632006-09-01 19:49:50 +0200382
Masahiro Yamada9e414032014-02-04 17:24:24 +0900383HAVE_VENDOR_COMMON_LIB = $(if $(wildcard $(srctree)/board/$(VENDOR)/common/Makefile),y,n)
Daniel Schwierzeck8b5a0262012-07-19 13:39:58 +0000384
Masahiro Yamadae2906a52013-11-11 14:36:00 +0900385LIBS-y += lib/
Masahiro Yamadae2906a52013-11-11 14:36:00 +0900386LIBS-$(HAVE_VENDOR_COMMON_LIB) += board/$(VENDOR)/common/
387LIBS-y += $(CPUDIR)/
wdenk1d9f4102004-10-09 22:21:29 +0000388ifdef SOC
Masahiro Yamadae2906a52013-11-11 14:36:00 +0900389LIBS-y += $(CPUDIR)/$(SOC)/
wdenk1d9f4102004-10-09 22:21:29 +0000390endif
Masahiro Yamadae2906a52013-11-11 14:36:00 +0900391LIBS-$(CONFIG_IXP4XX_NPE) += drivers/net/npe/
392LIBS-$(CONFIG_OF_EMBED) += dts/
393LIBS-y += arch/$(ARCH)/lib/
Masahiro Yamada57c3e5f2013-11-11 14:36:09 +0900394LIBS-y += fs/
Masahiro Yamadae2906a52013-11-11 14:36:00 +0900395LIBS-y += net/
396LIBS-y += disk/
397LIBS-y += drivers/
398LIBS-y += drivers/dma/
399LIBS-y += drivers/gpio/
400LIBS-y += drivers/i2c/
401LIBS-y += drivers/input/
402LIBS-y += drivers/mmc/
403LIBS-y += drivers/mtd/
Masahiro Yamada392ba522013-11-28 12:22:17 +0900404LIBS-$(CONFIG_CMD_NAND) += drivers/mtd/nand/
Masahiro Yamadae2906a52013-11-11 14:36:00 +0900405LIBS-y += drivers/mtd/onenand/
Masahiro Yamada392ba522013-11-28 12:22:17 +0900406LIBS-$(CONFIG_CMD_UBI) += drivers/mtd/ubi/
Masahiro Yamadae2906a52013-11-11 14:36:00 +0900407LIBS-y += drivers/mtd/spi/
408LIBS-y += drivers/net/
409LIBS-y += drivers/net/phy/
410LIBS-y += drivers/pci/
411LIBS-y += drivers/power/ \
412 drivers/power/fuel_gauge/ \
413 drivers/power/mfd/ \
414 drivers/power/pmic/ \
415 drivers/power/battery/
416LIBS-y += drivers/spi/
417LIBS-$(CONFIG_FMAN_ENET) += drivers/net/fm/
York Sun5614e712013-09-30 09:22:09 -0700418LIBS-$(CONFIG_SYS_FSL_DDR) += drivers/ddr/fsl/
Masahiro Yamadae2906a52013-11-11 14:36:00 +0900419LIBS-y += drivers/serial/
420LIBS-y += drivers/usb/eth/
421LIBS-y += drivers/usb/gadget/
422LIBS-y += drivers/usb/host/
423LIBS-y += drivers/usb/musb/
424LIBS-y += drivers/usb/musb-new/
425LIBS-y += drivers/usb/phy/
426LIBS-y += drivers/usb/ulpi/
427LIBS-y += common/
428LIBS-y += lib/libfdt/
Masahiro Yamada8a7e7d52013-11-18 11:08:35 +0900429LIBS-$(CONFIG_API) += api/
Masahiro Yamada755e08f2013-11-28 12:09:58 +0900430LIBS-$(CONFIG_HAS_POST) += post/
Masahiro Yamadae2906a52013-11-11 14:36:00 +0900431LIBS-y += test/
Marian Balakowiczf9328632006-09-01 19:49:50 +0200432
Alison Wang24e8bee2013-05-27 22:55:42 +0000433ifneq (,$(filter $(SOC), mx25 mx27 mx5 mx6 mx31 mx35 mxs vf610))
Masahiro Yamadae2906a52013-11-11 14:36:00 +0900434LIBS-y += arch/$(ARCH)/imx-common/
Jason Liu18936ee2011-11-25 00:18:01 +0000435endif
436
Masahiro Yamadae2906a52013-11-11 14:36:00 +0900437LIBS-$(CONFIG_ARM) += arch/arm/cpu/
438LIBS-$(CONFIG_PPC) += arch/powerpc/cpu/
Minkyu Kang852bd072010-08-19 13:48:11 +0900439
Masahiro Yamadae2906a52013-11-11 14:36:00 +0900440LIBS-y += board/$(BOARDDIR)/
Masahiro Yamada08e39a82013-11-11 14:35:55 +0900441
Masahiro Yamadae2906a52013-11-11 14:36:00 +0900442LIBS-y := $(patsubst %/, %/built-in.o, $(LIBS-y))
Masahiro Yamada9e414032014-02-04 17:24:24 +0900443LIBS := $(sort $(LIBS-y))
Loïc Minier249b53a2011-10-03 11:57:10 +0200444.PHONY : $(LIBS)
wdenka8c7c702003-12-06 19:49:23 +0000445
wdenk4f7cb082003-09-11 23:06:34 +0000446# Add GCC lib
Wolfgang Denk52b1bf22009-07-23 13:15:59 +0200447ifdef USE_PRIVATE_LIBGCC
448ifeq ("$(USE_PRIVATE_LIBGCC)", "yes")
Matthias Weisser635d1b32010-11-18 09:35:09 +0100449PLATFORM_LIBGCC = $(OBJTREE)/arch/$(ARCH)/lib/libgcc.o
Wolfgang Denk52b1bf22009-07-23 13:15:59 +0200450else
451PLATFORM_LIBGCC = -L $(USE_PRIVATE_LIBGCC) -lgcc
452endif
453else
Wolfgang Denkcca4e4a2011-11-01 20:54:02 +0000454PLATFORM_LIBGCC := -L $(shell dirname `$(CC) $(CFLAGS) -print-libgcc-file-name`) -lgcc
Wolfgang Denk52b1bf22009-07-23 13:15:59 +0200455endif
456PLATFORM_LIBS += $(PLATFORM_LIBGCC)
457export PLATFORM_LIBS
wdenk3d3befa2004-03-14 15:06:13 +0000458
Mike Frysinger6ac9f472009-08-23 02:47:59 -0400459# Special flags for CPP when processing the linker script.
460# Pass the version down so we can handle backwards compatibility
461# on the fly.
462LDPPFLAGS += \
463 -include $(TOPDIR)/include/u-boot/u-boot.lds.h \
Simon Glass7e6403a2011-11-21 10:49:40 +0000464 -DCPUDIR=$(CPUDIR) \
Mike Frysinger6ac9f472009-08-23 02:47:59 -0400465 $(shell $(LD) --version | \
466 sed -ne 's/GNU ld version \([0-9][0-9]*\)\.\([0-9][0-9]*\).*/-DLD_MAJOR=\1 -DLD_MINOR=\2/p')
467
wdenk7ebf7442002-11-02 23:17:16 +0000468#########################################################################
wdenkbdccc4f2003-08-05 17:43:17 +0000469#########################################################################
wdenk7ebf7442002-11-02 23:17:16 +0000470
Mike Frysingerf3a14d32010-10-13 22:58:23 -0400471ifneq ($(CONFIG_BOARD_SIZE_LIMIT),)
472BOARD_SIZE_CHECK = \
473 @actual=`wc -c $@ | awk '{print $$1}'`; \
Joe Hershbergerd060e6f2012-11-08 10:19:09 +0000474 limit=`printf "%d" $(CONFIG_BOARD_SIZE_LIMIT)`; \
Mike Frysingerf3a14d32010-10-13 22:58:23 -0400475 if test $$actual -gt $$limit; then \
Joe Hershbergerd060e6f2012-11-08 10:19:09 +0000476 echo "$@ exceeds file size limit:" >&2 ; \
477 echo " limit: $$limit bytes" >&2 ; \
478 echo " actual: $$actual bytes" >&2 ; \
479 echo " excess: $$((actual - limit)) bytes" >&2; \
Mike Frysingerf3a14d32010-10-13 22:58:23 -0400480 exit 1; \
481 fi
482else
483BOARD_SIZE_CHECK =
484endif
485
Scott Wood8137af12013-12-14 11:47:32 +0800486# Statically apply RELA-style relocations (currently arm64 only)
487ifneq ($(CONFIG_STATIC_RELA),)
488# $(1) is u-boot ELF, $(2) is u-boot bin, $(3) is text base
489DO_STATIC_RELA = \
490 start=$$($(NM) $(1) | grep __rel_dyn_start | cut -f 1 -d ' '); \
491 end=$$($(NM) $(1) | grep __rel_dyn_end | cut -f 1 -d ' '); \
Masahiro Yamada9e414032014-02-04 17:24:24 +0900492 tools/relocate-rela $(2) $(3) $$start $$end
Scott Wood8137af12013-12-14 11:47:32 +0800493else
494DO_STATIC_RELA =
495endif
496
Mike Frysinger3e883372009-06-15 00:25:19 -0400497# Always append ALL so that arch config.mk's can add custom ones
Masahiro Yamada9e414032014-02-04 17:24:24 +0900498ALL-y += u-boot.srec u-boot.bin System.map
Haiying Wange935a372011-01-27 09:44:59 -0500499
Masahiro Yamada9e414032014-02-04 17:24:24 +0900500ALL-$(CONFIG_NAND_U_BOOT) += u-boot-nand.bin
501ALL-$(CONFIG_ONENAND_U_BOOT) += u-boot-onenand.bin
502ALL-$(CONFIG_RAMBOOT_PBL) += u-boot.pbl
503ALL-$(CONFIG_SPL) += spl/u-boot-spl.bin
504ALL-$(CONFIG_SPL_FRAMEWORK) += u-boot.img
505ALL-$(CONFIG_TPL) += tpl/u-boot-tpl.bin
506ALL-$(CONFIG_OF_SEPARATE) += u-boot.dtb u-boot-dtb.bin
Vadim Bendeburyb343bbb2013-03-27 14:34:18 +0000507ifneq ($(CONFIG_SPL_TARGET),)
Masahiro Yamada9e414032014-02-04 17:24:24 +0900508ALL-$(CONFIG_SPL) += $(CONFIG_SPL_TARGET:"%"=%)
Vadim Bendeburyb343bbb2013-03-27 14:34:18 +0000509endif
Masahiro Yamada9e414032014-02-04 17:24:24 +0900510ALL-$(CONFIG_REMAKE_ELF) += u-boot.elf
wdenk7ebf7442002-11-02 23:17:16 +0000511
Allen Martin12b7b702012-08-31 08:30:12 +0000512# enable combined SPL/u-boot/dtb rules for tegra
Tom Warren6d6c0ba2012-12-11 13:34:17 +0000513ifneq ($(CONFIG_TEGRA),)
Vidya Sagar7dcd3a22013-10-31 14:51:38 +0530514ifeq ($(CONFIG_SPL),y)
Allen Martin12b7b702012-08-31 08:30:12 +0000515ifeq ($(CONFIG_OF_SEPARATE),y)
Masahiro Yamada9e414032014-02-04 17:24:24 +0900516ALL-y += u-boot-dtb-tegra.bin
Allen Martin12b7b702012-08-31 08:30:12 +0000517else
Masahiro Yamada9e414032014-02-04 17:24:24 +0900518ALL-y += u-boot-nodtb-tegra.bin
Allen Martin12b7b702012-08-31 08:30:12 +0000519endif
520endif
Vidya Sagar7dcd3a22013-10-31 14:51:38 +0530521endif
Allen Martin12b7b702012-08-31 08:30:12 +0000522
Masahiro Yamada8a7e7d52013-11-18 11:08:35 +0900523all: $(ALL-y) $(SUBDIR_EXAMPLES-y)
wdenk7ebf7442002-11-02 23:17:16 +0000524
Masahiro Yamada9e414032014-02-04 17:24:24 +0900525u-boot.dtb: checkdtc u-boot
526 $(MAKE) $(build)=dts binary
527 mv dts/dt.dtb $@
Simon Glass2c0f79e2011-10-24 19:15:31 +0000528
Masahiro Yamada9e414032014-02-04 17:24:24 +0900529u-boot-dtb.bin: u-boot.bin u-boot.dtb
Simon Glass2c0f79e2011-10-24 19:15:31 +0000530 cat $^ >$@
531
Masahiro Yamada9e414032014-02-04 17:24:24 +0900532u-boot.hex: u-boot
wdenk6310eb92005-01-09 21:28:15 +0000533 $(OBJCOPY) ${OBJCFLAGS} -O ihex $< $@
534
Masahiro Yamada9e414032014-02-04 17:24:24 +0900535u-boot.srec: u-boot
Albert ARIBAUD47ed5dd2013-11-07 14:21:46 +0100536 $(OBJCOPY) ${OBJCFLAGS} -O srec $< $@
wdenk7ebf7442002-11-02 23:17:16 +0000537
Masahiro Yamada9e414032014-02-04 17:24:24 +0900538u-boot.bin: u-boot
wdenk7ebf7442002-11-02 23:17:16 +0000539 $(OBJCOPY) ${OBJCFLAGS} -O binary $< $@
Scott Wood8137af12013-12-14 11:47:32 +0800540 $(call DO_STATIC_RELA,$<,$@,$(CONFIG_SYS_TEXT_BASE))
Mike Frysingerf3a14d32010-10-13 22:58:23 -0400541 $(BOARD_SIZE_CHECK)
wdenk7ebf7442002-11-02 23:17:16 +0000542
Masahiro Yamada9e414032014-02-04 17:24:24 +0900543u-boot.ldr: u-boot
Mike Frysinger76d82182009-07-21 22:17:36 -0400544 $(CREATE_LDR_ENV)
Mike Frysinger68e56322008-08-07 18:56:56 -0400545 $(LDR) -T $(CONFIG_BFIN_CPU) -c $@ $< $(LDR_FLAGS)
Mike Frysingerf3a14d32010-10-13 22:58:23 -0400546 $(BOARD_SIZE_CHECK)
Mike Frysinger94a91e22008-02-04 19:26:57 -0500547
Masahiro Yamada9e414032014-02-04 17:24:24 +0900548u-boot.ldr.hex: u-boot.ldr
Mike Frysinger94a91e22008-02-04 19:26:57 -0500549 $(OBJCOPY) ${OBJCFLAGS} -O ihex $< $@ -I binary
550
Masahiro Yamada9e414032014-02-04 17:24:24 +0900551u-boot.ldr.srec: u-boot.ldr
Mike Frysinger94a91e22008-02-04 19:26:57 -0500552 $(OBJCOPY) ${OBJCFLAGS} -O srec $< $@ -I binary
553
Stefan Roeseb40bda62012-08-16 17:54:52 +0200554#
555# U-Boot entry point, needed for booting of full-blown U-Boot
556# from the SPL U-Boot version.
557#
558ifndef CONFIG_SYS_UBOOT_START
559CONFIG_SYS_UBOOT_START := 0
560endif
561
Masahiro Yamada9e414032014-02-04 17:24:24 +0900562u-boot.img: u-boot.bin
563 tools/mkimage -A $(ARCH) -T firmware -C none \
Stefan Roeseb40bda62012-08-16 17:54:52 +0200564 -O u-boot -a $(CONFIG_SYS_TEXT_BASE) \
565 -e $(CONFIG_SYS_UBOOT_START) \
Wolfgang Denk881a87e2006-02-21 17:33:04 +0100566 -n $(shell sed -n -e 's/.*U_BOOT_VERSION//p' $(VERSION_FILE) | \
wdenkbdccc4f2003-08-05 17:43:17 +0000567 sed -e 's/"[ ]*$$/ for $(BOARD) board"/') \
568 -d $< $@
569
Masahiro Yamada9e414032014-02-04 17:24:24 +0900570u-boot.imx: u-boot.bin depend
571 $(MAKE) $(build)=arch/arm/imx-common $(objtree)/u-boot.imx
Stefano Babic8edcde52010-01-20 18:19:10 +0100572
Masahiro Yamada9e414032014-02-04 17:24:24 +0900573u-boot.kwb: u-boot.bin
574 tools/mkimage -n $(CONFIG_SYS_KWD_CONFIG) -T kwbimage \
Eric Cooper2ea88b02010-10-19 13:31:11 -0400575 -a $(CONFIG_SYS_TEXT_BASE) -e $(CONFIG_SYS_TEXT_BASE) -d $< $@
Prafulla Wadaskaraa0c7a82009-09-07 15:05:02 +0530576
Masahiro Yamada9e414032014-02-04 17:24:24 +0900577u-boot.pbl: u-boot.bin
578 tools/mkimage -n $(CONFIG_SYS_FSL_PBL_RCW) \
Prabhakar Kushwaha690e4252014-01-13 11:28:04 +0530579 -R $(CONFIG_SYS_FSL_PBL_PBI) -T pblimage \
Shaohui Xie5d898a02012-08-10 02:49:35 +0000580 -d $< $@
581
Masahiro Yamada9e414032014-02-04 17:24:24 +0900582u-boot.sha1: u-boot.bin
583 tools/ubsha1 u-boot.bin
Heiko Schocher566a4942007-06-22 19:11:54 +0200584
Masahiro Yamada9e414032014-02-04 17:24:24 +0900585u-boot.dis: u-boot
wdenk7ebf7442002-11-02 23:17:16 +0000586 $(OBJDUMP) -d $< > $@
587
Ying Zhang3aa29de2013-08-16 15:16:15 +0800588# $@ is output, $(1) and $(2) are inputs, $(3) is padded intermediate,
589# $(4) is pad-to
590SPL_PAD_APPEND = \
591 $(OBJCOPY) ${OBJCFLAGS} --pad-to=$(4) -I binary -O binary \
Masahiro Yamada9e414032014-02-04 17:24:24 +0900592 $(1) $(3); \
593 cat $(3) $(2) > $@; \
594 rm $(3)
Scott Wood74752ba2012-12-06 13:33:16 +0000595
Ying Zhang3aa29de2013-08-16 15:16:15 +0800596ifdef CONFIG_TPL
Masahiro Yamada9e414032014-02-04 17:24:24 +0900597SPL_PAYLOAD := tpl/u-boot-with-tpl.bin
Ying Zhang3aa29de2013-08-16 15:16:15 +0800598else
Masahiro Yamada9e414032014-02-04 17:24:24 +0900599SPL_PAYLOAD := u-boot.bin
Ying Zhang3aa29de2013-08-16 15:16:15 +0800600endif
Scott Wood74752ba2012-12-06 13:33:16 +0000601
Masahiro Yamada9e414032014-02-04 17:24:24 +0900602u-boot-with-spl.bin: spl/u-boot-spl.bin $(SPL_PAYLOAD)
Ying Zhang3aa29de2013-08-16 15:16:15 +0800603 $(call SPL_PAD_APPEND,$<,$(SPL_PAYLOAD),spl/u-boot-spl-pad.bin,$(CONFIG_SPL_PAD_TO))
604
Masahiro Yamada9e414032014-02-04 17:24:24 +0900605tpl/u-boot-with-tpl.bin: tpl/u-boot-tpl.bin u-boot.bin
606 $(call SPL_PAD_APPEND,$<,u-boot.bin,tpl/u-boot-tpl-pad.bin,$(CONFIG_TPL_PAD_TO))
Heiko Schocher7816f2c2011-07-16 00:06:42 +0000607
Masahiro Yamada9e414032014-02-04 17:24:24 +0900608u-boot-with-spl.imx: spl/u-boot-spl.bin u-boot.bin
609 $(MAKE) $(build)=arch/arm/imx-common \
Benoît Thébaudeauba597602013-04-11 09:35:56 +0000610 $(OBJTREE)/u-boot-with-spl.imx
611
Masahiro Yamada9e414032014-02-04 17:24:24 +0900612u-boot-with-nand-spl.imx: spl/u-boot-spl.bin u-boot.bin
613 $(MAKE) $(build)=arch/arm/imx-common \
Benoît Thébaudeau7d5a5c72013-04-11 09:35:57 +0000614 $(OBJTREE)/u-boot-with-nand-spl.imx
615
Masahiro Yamada9e414032014-02-04 17:24:24 +0900616u-boot.ubl: u-boot-with-spl.bin
617 tools/mkimage -n $(UBL_CONFIG) -T ublimage \
618 -e $(CONFIG_SYS_TEXT_BASE) -d $< u-boot.ubl
José Miguel Gonçalves277f00f2012-09-19 01:25:26 +0000619
Masahiro Yamada9e414032014-02-04 17:24:24 +0900620u-boot.ais: spl/u-boot-spl.bin u-boot.img
621 tools/mkimage -s -n $(if $(CONFIG_AIS_CONFIG_FILE),$(srctree)/$(CONFIG_AIS_CONFIG_FILE:"%"=%),"/dev/null") \
Sughosh Ganu6d660e72012-06-13 08:39:06 +0000622 -T aisimage \
Christian Rieschd36d8852011-12-09 09:47:39 +0000623 -e $(CONFIG_SPL_TEXT_BASE) \
Masahiro Yamada9e414032014-02-04 17:24:24 +0900624 -d spl/u-boot-spl.bin \
625 spl/u-boot-spl.ais
Christian Rieschd36d8852011-12-09 09:47:39 +0000626 $(OBJCOPY) ${OBJCFLAGS} -I binary \
627 --pad-to=$(CONFIG_SPL_MAX_SIZE) -O binary \
Masahiro Yamada9e414032014-02-04 17:24:24 +0900628 spl/u-boot-spl.ais spl/u-boot-spl-pad.ais
629 cat spl/u-boot-spl-pad.ais u-boot.img > u-boot.ais
Christian Rieschd36d8852011-12-09 09:47:39 +0000630
Otavio Salvadora5453552012-08-18 07:25:25 +0000631
Masahiro Yamada9e414032014-02-04 17:24:24 +0900632u-boot.sb: u-boot.bin spl/u-boot-spl.bin
633 $(MAKE) $(build)=$(CPUDIR)/$(SOC)/ $(OBJTREE)/u-boot.sb
Marek Vasut30b9b932011-11-08 23:18:19 +0000634
Stefan Roese94aebe62012-01-05 11:19:50 +0100635# On x600 (SPEAr600) U-Boot is appended to U-Boot SPL.
636# Both images are created using mkimage (crc etc), so that the ROM
637# bootloader can check its integrity. Padding needs to be done to the
638# SPL image (with mkimage header) and not the binary. Otherwise the resulting image
639# which is loaded/copied by the ROM bootloader to SRAM doesn't fit.
640# The resulting image containing both U-Boot images is called u-boot.spr
Masahiro Yamada9e414032014-02-04 17:24:24 +0900641u-boot.spr: u-boot.img spl/u-boot-spl.bin
642 tools/mkimage -A $(ARCH) -T firmware -C none \
Stefan Roese94aebe62012-01-05 11:19:50 +0100643 -a $(CONFIG_SPL_TEXT_BASE) -e $(CONFIG_SPL_TEXT_BASE) -n XLOADER \
Masahiro Yamada9e414032014-02-04 17:24:24 +0900644 -d spl/u-boot-spl.bin $@
Masahiro Yamada57270262013-12-18 19:00:51 +0900645 $(OBJCOPY) -I binary -O binary \
646 --pad-to=$(CONFIG_SPL_PAD_TO) --gap-fill=0xff $@
Masahiro Yamada9e414032014-02-04 17:24:24 +0900647 cat u-boot.img >> $@
Stefan Roese94aebe62012-01-05 11:19:50 +0100648
Tom Warren6d6c0ba2012-12-11 13:34:17 +0000649ifneq ($(CONFIG_TEGRA),)
Masahiro Yamada9e414032014-02-04 17:24:24 +0900650u-boot-nodtb-tegra.bin: spl/u-boot-spl.bin u-boot.bin
651 $(OBJCOPY) ${OBJCFLAGS} --pad-to=$(CONFIG_SYS_TEXT_BASE) -O binary spl/u-boot-spl spl/u-boot-spl-pad.bin
652 cat spl/u-boot-spl-pad.bin u-boot.bin > $@
653 rm spl/u-boot-spl-pad.bin
Stephen Warren9972db52013-05-14 08:00:53 +0000654
655ifeq ($(CONFIG_OF_SEPARATE),y)
Masahiro Yamada9e414032014-02-04 17:24:24 +0900656u-boot-dtb-tegra.bin: u-boot-nodtb-tegra.bin u-boot.dtb
657 cat u-boot-nodtb-tegra.bin u-boot.dtb > $@
Stephen Warren9972db52013-05-14 08:00:53 +0000658endif
Allen Martin984df4e2012-08-31 08:30:10 +0000659endif
660
Masahiro Yamada9e414032014-02-04 17:24:24 +0900661u-boot-img.bin: spl/u-boot-spl.bin u-boot.img
662 cat spl/u-boot-spl.bin u-boot.img > $@
Stefan Roesefb3d2b82012-08-24 17:36:53 +0200663
Stefan Roeseecddccd2013-02-22 11:36:50 +0100664# PPC4xx needs the SPL at the end of the image, since the reset vector
665# is located at 0xfffffffc. So we can't use the "u-boot-img.bin" target
666# and need to introduce a new build target with the full blown U-Boot
667# at the start padded up to the start of the SPL image. And then concat
668# the SPL image to the end.
Masahiro Yamada9e414032014-02-04 17:24:24 +0900669u-boot-img-spl-at-end.bin: spl/u-boot-spl.bin u-boot.img
Masahiro Yamada57270262013-12-18 19:00:51 +0900670 $(OBJCOPY) -I binary -O binary --pad-to=$(CONFIG_UBOOT_PAD_TO) \
Masahiro Yamada9e414032014-02-04 17:24:24 +0900671 --gap-fill=0xff u-boot.img $@
672 cat spl/u-boot-spl.bin >> $@
Stefan Roeseecddccd2013-02-22 11:36:50 +0100673
Scott Woodf4dc7142013-12-14 11:47:33 +0800674# Create a new ELF from a raw binary file. This is useful for arm64
675# where static relocation needs to be performed on the raw binary,
676# but certain simulators only accept an ELF file (but don't do the
677# relocation).
678# FIXME refactor dts/Makefile to share target/arch detection
Masahiro Yamada9e414032014-02-04 17:24:24 +0900679u-boot.elf: u-boot.bin
Scott Woodf4dc7142013-12-14 11:47:33 +0800680 @$(OBJCOPY) -B aarch64 -I binary -O elf64-littleaarch64 \
Masahiro Yamada9e414032014-02-04 17:24:24 +0900681 $< u-boot-elf.o
682 @$(LD) u-boot-elf.o -o $@ \
Scott Woodf4dc7142013-12-14 11:47:33 +0800683 --defsym=_start=$(CONFIG_SYS_TEXT_BASE) \
684 -Ttext=$(CONFIG_SYS_TEXT_BASE)
685
Simon Glass86eb49b2011-10-03 19:26:50 +0000686ifeq ($(CONFIG_SANDBOX),y)
687GEN_UBOOT = \
Masahiro Yamada9e414032014-02-04 17:24:24 +0900688 $(CC) $(SYMS) -T u-boot.lds \
689 -Wl,--start-group $(LIBS) -Wl,--end-group \
Simon Glass86eb49b2011-10-03 19:26:50 +0000690 $(PLATFORM_LIBS) -Wl,-Map -Wl,u-boot.map -o u-boot
691else
Mike Frysingerecb1dc82009-05-20 04:35:14 -0400692GEN_UBOOT = \
Masahiro Yamada9e414032014-02-04 17:24:24 +0900693 $(LD) $(LDFLAGS) $(LDFLAGS_$(@F)) \
694 $(OBJS) \
695 --start-group $(LIBS) --end-group $(PLATFORM_LIBS) \
wdenkb2184c32002-11-19 23:01:07 +0000696 -Map u-boot.map -o u-boot
Simon Glass86eb49b2011-10-03 19:26:50 +0000697endif
698
Masahiro Yamada9e414032014-02-04 17:24:24 +0900699u-boot: depend $(SUBDIR_TOOLS) $(OBJS) $(LIBS) u-boot.lds
Mike Frysingerecb1dc82009-05-20 04:35:14 -0400700 $(GEN_UBOOT)
701ifeq ($(CONFIG_KALLSYMS),y)
Masahiro Yamada9e414032014-02-04 17:24:24 +0900702 smap=`$(call SYSTEM_MAP,u-boot) | \
Wolfgang Denk1aada9c2009-08-17 14:00:53 +0200703 awk '$$2 ~ /[tTwW]/ {printf $$1 $$3 "\\\\000"}'` ; \
704 $(CC) $(CFLAGS) -DSYSTEM_MAP="\"$${smap}\"" \
Masahiro Yamada9e414032014-02-04 17:24:24 +0900705 -c $(srctree)/common/system_map.c -o common/system_map.o
706 $(GEN_UBOOT) common/system_map.o
Mike Frysingerecb1dc82009-05-20 04:35:14 -0400707endif
wdenk7ebf7442002-11-02 23:17:16 +0000708
Masahiro Yamada3bddafa2013-10-21 11:53:41 +0900709$(OBJS):
710 @:
Marian Balakowiczf9328632006-09-01 19:49:50 +0200711
Che-liang Chiou349e83f2011-10-17 21:04:15 +0000712$(LIBS): depend $(SUBDIR_TOOLS)
Masahiro Yamada9e414032014-02-04 17:24:24 +0900713 $(MAKE) $(build)=$(patsubst %/,%,$(dir $@))
wdenka8c7c702003-12-06 19:49:23 +0000714
Masahiro Yamada4a20df32014-02-04 17:24:12 +0900715$(SUBDIRS): depend
Masahiro Yamada9e414032014-02-04 17:24:24 +0900716 $(MAKE) $(build)=$@ all
Masahiro Yamada940db162014-02-04 17:24:10 +0900717
Masahiro Yamada9e414032014-02-04 17:24:24 +0900718$(SUBDIR_EXAMPLES-y): u-boot
Che-liang Chiou349e83f2011-10-17 21:04:15 +0000719
Masahiro Yamada9e414032014-02-04 17:24:24 +0900720u-boot.lds: $(LDSCRIPT) depend
Marek Vasut97b24d32012-10-19 05:00:10 +0000721 $(CPP) $(CPPFLAGS) $(LDPPFLAGS) -ansi -D__ASSEMBLY__ -P - <$< >$@
Wolfgang Denk1aada9c2009-08-17 14:00:53 +0200722
Haiying Wange935a372011-01-27 09:44:59 -0500723nand_spl: $(TIMESTAMP_FILE) $(VERSION_FILE) depend
Masahiro Yamada9e414032014-02-04 17:24:24 +0900724 $(MAKE) $(build)=nand_spl/board/$(BOARDDIR) all
Stefan Roese887e2ec2006-09-07 11:51:23 +0200725
Masahiro Yamada9e414032014-02-04 17:24:24 +0900726u-boot-nand.bin: nand_spl u-boot.bin
727 cat nand_spl/u-boot-spl-16k.bin u-boot.bin > u-boot-nand.bin
Stefan Roese887e2ec2006-09-07 11:51:23 +0200728
Masahiro Yamada9e414032014-02-04 17:24:24 +0900729spl/u-boot-spl.bin: $(SUBDIR_TOOLS) depend
730 $(MAKE) obj=spl -f $(srctree)/spl/Makefile all
Daniel Schwierzeck5df2ee22011-07-13 05:11:04 +0000731
Masahiro Yamada9e414032014-02-04 17:24:24 +0900732tpl/u-boot-tpl.bin: $(SUBDIR_TOOLS) depend
733 $(MAKE) obj=tpl -f $(srctree)/spl/Makefile all CONFIG_TPL_BUILD=y
Ying Zhang3aa29de2013-08-16 15:16:15 +0800734
Daniel Hobi2a998792010-01-18 18:13:39 +0100735# Explicitly make _depend in subdirs containing multiple targets to prevent
736# parallel sub-makes creating .depend files simultaneously.
Wolfgang Denk16a354f2010-10-26 00:08:35 +0200737depend dep: $(TIMESTAMP_FILE) $(VERSION_FILE) \
Masahiro Yamada9e414032014-02-04 17:24:24 +0900738 include/spl-autoconf.mk \
739 include/tpl-autoconf.mk \
740 include/autoconf.mk \
741 include/generated/generic-asm-offsets.h \
742 include/generated/asm-offsets.h
wdenk7ebf7442002-11-02 23:17:16 +0000743
Li Yange5e4e702009-12-09 18:13:26 +0800744TAG_SUBDIRS = $(SUBDIRS)
Masahiro Yamada9e414032014-02-04 17:24:24 +0900745TAG_SUBDIRS += $(dir $(LIBS))
Jean-Christophe PLAGNIOL-VILLARDa340c322007-11-25 18:45:47 +0100746TAG_SUBDIRS += include
Jean-Christophe PLAGNIOL-VILLARDa340c322007-11-25 18:45:47 +0100747
Horst Kronstorfer857d9ea2011-07-18 01:21:18 +0000748FIND := find
749FINDFLAGS := -L
750
Tom Rini1064d982012-02-02 14:07:05 +0000751checkstack:
Masahiro Yamada9e414032014-02-04 17:24:24 +0900752 $(CROSS_COMPILE)objdump -d u-boot \
753 `$(FIND) . -name u-boot-spl -print` | \
754 perl $(src)/scripts/checkstack.pl $(ARCH)
Tom Rini1064d982012-02-02 14:07:05 +0000755
Marian Balakowiczf9328632006-09-01 19:49:50 +0200756tags ctags:
Masahiro Yamada9e414032014-02-04 17:24:24 +0900757 ctags -w -o ctags `$(FIND) $(FINDFLAGS) $(TAG_SUBDIRS) \
Li Yange5e4e702009-12-09 18:13:26 +0800758 -name '*.[chS]' -print`
wdenk7ebf7442002-11-02 23:17:16 +0000759
760etags:
Horst Kronstorfer857d9ea2011-07-18 01:21:18 +0000761 etags -a -o $(obj)etags `$(FIND) $(FINDFLAGS) $(TAG_SUBDIRS) \
Li Yange5e4e702009-12-09 18:13:26 +0800762 -name '*.[chS]' -print`
Li Yangffda5862008-02-29 11:46:05 +0800763cscope:
Horst Kronstorfer857d9ea2011-07-18 01:21:18 +0000764 $(FIND) $(FINDFLAGS) $(TAG_SUBDIRS) -name '*.[chS]' -print > \
765 cscope.files
Li Yangffda5862008-02-29 11:46:05 +0800766 cscope -b -q -k
wdenk7ebf7442002-11-02 23:17:16 +0000767
Mike Frysingerecb1dc82009-05-20 04:35:14 -0400768SYSTEM_MAP = \
769 $(NM) $1 | \
wdenk7ebf7442002-11-02 23:17:16 +0000770 grep -v '\(compiled\)\|\(\.o$$\)\|\( [aUw] \)\|\(\.\.ng$$\)\|\(LASH[RL]DI\)' | \
Mike Frysingerecb1dc82009-05-20 04:35:14 -0400771 LC_ALL=C sort
Masahiro Yamada9e414032014-02-04 17:24:24 +0900772System.map: u-boot
Masahiro Yamadabc8bb6e2013-11-11 14:36:01 +0900773 @$(call SYSTEM_MAP,$<) > $@
wdenk7ebf7442002-11-02 23:17:16 +0000774
Tom Rini06a119a2012-03-16 06:34:35 +0000775checkthumb:
776 @if test $(call cc-version) -lt 0404; then \
777 echo -n '*** Your GCC does not produce working '; \
778 echo 'binaries in THUMB mode.'; \
779 echo '*** Your board is configured for THUMB mode.'; \
780 false; \
781 fi
Scott Wood6ec63f42012-09-20 19:10:01 -0500782
783# GCC 3.x is reported to have problems generating the type of relocation
784# that U-Boot wants.
785# See http://lists.denx.de/pipermail/u-boot/2012-September/135156.html
786checkgcc4:
787 @if test $(call cc-version) -lt 0400; then \
788 echo -n '*** Your GCC is too old, please upgrade to GCC 4.x or newer'; \
789 false; \
790 fi
791
Stephen Warren501ebdf2013-07-24 10:09:16 -0700792checkdtc:
793 @if test $(call dtc-version) -lt 0104; then \
794 echo '*** Your dtc is too old, please upgrade to dtc 1.4 or newer'; \
795 false; \
796 fi
797
Grant Likely2f155f62007-09-24 09:05:31 -0600798#
799# Auto-generate the autoconf.mk file (which is included by all makefiles)
800#
801# This target actually generates 2 files; autoconf.mk and autoconf.mk.dep.
802# the dep file is only include in this top level makefile to determine when
803# to regenerate the autoconf.mk file.
Masahiro Yamada9e414032014-02-04 17:24:24 +0900804include/autoconf.mk.dep: include/config.h include/common.h
Wolfgang Denk1510b822008-05-13 23:15:52 +0200805 @$(XECHO) Generating $@ ; \
Wolfgang Denkae6d1052008-01-13 00:59:21 +0100806 : Generate the dependancies ; \
Mike Frysinger4c34b2a2011-10-12 19:48:00 +0000807 $(CC) -x c -DDO_DEPS_ONLY -M $(CFLAGS) $(CPPFLAGS) \
Masahiro Yamada9e414032014-02-04 17:24:24 +0900808 -MQ include/autoconf.mk $(srctree)/include/common.h > $@ || \
Masahiro Yamada65947ab2013-12-02 14:57:29 +0900809 rm $@
Wolfgang Denk1510b822008-05-13 23:15:52 +0200810
Masahiro Yamada9e414032014-02-04 17:24:24 +0900811include/autoconf.mk: include/config.h
Wolfgang Denk1510b822008-05-13 23:15:52 +0200812 @$(XECHO) Generating $@ ; \
Wolfgang Denkae6d1052008-01-13 00:59:21 +0100813 : Extract the config macros ; \
Masahiro Yamada9e414032014-02-04 17:24:24 +0900814 $(CPP) $(CFLAGS) -DDO_DEPS_ONLY -dM $(srctree)/include/common.h > $@.tmp && \
815 sed -n -f $(srctree)/tools/scripts/define2mk.sed $@.tmp > $@; \
Masahiro Yamada65947ab2013-12-02 14:57:29 +0900816 rm $@.tmp
Grant Likely2f155f62007-09-24 09:05:31 -0600817
Joel Fernandes39bc12d2013-08-19 16:14:14 +0800818# Auto-generate the spl-autoconf.mk file (which is included by all makefiles for SPL)
Masahiro Yamada9e414032014-02-04 17:24:24 +0900819include/tpl-autoconf.mk: include/config.h
Ying Zhang3aa29de2013-08-16 15:16:15 +0800820 @$(XECHO) Generating $@ ; \
Ying Zhang3aa29de2013-08-16 15:16:15 +0800821 : Extract the config macros ; \
822 $(CPP) $(CFLAGS) -DCONFIG_TPL_BUILD -DCONFIG_SPL_BUILD\
Masahiro Yamada9e414032014-02-04 17:24:24 +0900823 -DDO_DEPS_ONLY -dM $(srctree)/include/common.h > $@.tmp && \
824 sed -n -f $(srctree)/tools/scripts/define2mk.sed $@.tmp > $@; \
Masahiro Yamada65947ab2013-12-02 14:57:29 +0900825 rm $@.tmp
Ying Zhang3aa29de2013-08-16 15:16:15 +0800826
Masahiro Yamada9e414032014-02-04 17:24:24 +0900827include/spl-autoconf.mk: include/config.h
Joel Fernandes39bc12d2013-08-19 16:14:14 +0800828 @$(XECHO) Generating $@ ; \
Joel Fernandes39bc12d2013-08-19 16:14:14 +0800829 : Extract the config macros ; \
Masahiro Yamada9e414032014-02-04 17:24:24 +0900830 $(CPP) $(CFLAGS) -DCONFIG_SPL_BUILD -DDO_DEPS_ONLY -dM $(srctree)/include/common.h > $@.tmp && \
831 sed -n -f $(srctree)/tools/scripts/define2mk.sed $@.tmp > $@; \
Masahiro Yamada65947ab2013-12-02 14:57:29 +0900832 rm $@.tmp
Joel Fernandes39bc12d2013-08-19 16:14:14 +0800833
Masahiro Yamada9e414032014-02-04 17:24:24 +0900834include/generated/generic-asm-offsets.h: lib/asm-offsets.s
Wolfgang Denk16a354f2010-10-26 00:08:35 +0200835 @$(XECHO) Generating $@
Masahiro Yamada9e414032014-02-04 17:24:24 +0900836 $(srctree)/tools/scripts/make-asm-offsets lib/asm-offsets.s $@
Wolfgang Denk16a354f2010-10-26 00:08:35 +0200837
Masahiro Yamada9e414032014-02-04 17:24:24 +0900838lib/asm-offsets.s: include/config.h $(srctree)/lib/asm-offsets.c
839 @mkdir -p lib
Wolfgang Denk16a354f2010-10-26 00:08:35 +0200840 $(CC) -DDO_DEPS_ONLY \
841 $(CFLAGS) $(CFLAGS_$(BCURDIR)/$(@F)) $(CFLAGS_$(BCURDIR)) \
Masahiro Yamada9e414032014-02-04 17:24:24 +0900842 -o $@ $(srctree)/lib/asm-offsets.c -c -S
Wolfgang Denk16a354f2010-10-26 00:08:35 +0200843
Masahiro Yamada9e414032014-02-04 17:24:24 +0900844include/generated/asm-offsets.h: $(CPUDIR)/$(SOC)/asm-offsets.s
Wolfgang Denkb12734e2012-07-26 20:52:41 +0000845 @$(XECHO) Generating $@
Masahiro Yamada9e414032014-02-04 17:24:24 +0900846 $(srctree)/tools/scripts/make-asm-offsets $(CPUDIR)/$(SOC)/asm-offsets.s $@
Stefano Babica4814a62011-09-05 04:32:28 +0000847
Masahiro Yamada9e414032014-02-04 17:24:24 +0900848$(CPUDIR)/$(SOC)/asm-offsets.s: include/config.h
849 @mkdir -p $(CPUDIR)/$(SOC)
850 if [ -f $(srctree)/$(CPUDIR)/$(SOC)/asm-offsets.c ];then \
Stefano Babica4814a62011-09-05 04:32:28 +0000851 $(CC) -DDO_DEPS_ONLY \
852 $(CFLAGS) $(CFLAGS_$(BCURDIR)/$(@F)) $(CFLAGS_$(BCURDIR)) \
Masahiro Yamada9e414032014-02-04 17:24:24 +0900853 -o $@ $(srctree)/$(CPUDIR)/$(SOC)/asm-offsets.c -c -S; \
Stefano Babica4814a62011-09-05 04:32:28 +0000854 else \
855 touch $@; \
856 fi
857
wdenk7ebf7442002-11-02 23:17:16 +0000858#########################################################################
Wolfgang Denkae6d1052008-01-13 00:59:21 +0100859else # !config.mk
Masahiro Yamada9e414032014-02-04 17:24:24 +0900860all u-boot.hex u-boot.srec u-boot.bin \
861u-boot.img u-boot.dis u-boot \
Loïc Minier249b53a2011-10-03 11:57:10 +0200862$(filter-out tools,$(SUBDIRS)) \
Masahiro Yamada9e414032014-02-04 17:24:24 +0900863depend dep tags ctags etags cscope System.map:
wdenk7ebf7442002-11-02 23:17:16 +0000864 @echo "System not configured - see README" >&2
865 @ exit 1
Mike Frysingerc7c0d542010-01-21 04:03:22 -0500866
Loïc Minier249b53a2011-10-03 11:57:10 +0200867tools: $(VERSION_FILE) $(TIMESTAMP_FILE)
Masahiro Yamada9e414032014-02-04 17:24:24 +0900868 $(MAKE) $(build)=$@ all
Wolfgang Denkae6d1052008-01-13 00:59:21 +0100869endif # config.mk
wdenk7ebf7442002-11-02 23:17:16 +0000870
Scott Wood54799e42013-12-14 11:47:34 +0800871# ARM relocations should all be R_ARM_RELATIVE (32-bit) or
872# R_AARCH64_RELATIVE (64-bit).
Masahiro Yamada9e414032014-02-04 17:24:24 +0900873checkarmreloc: u-boot
Scott Wood54799e42013-12-14 11:47:34 +0800874 @RELOC="`$(CROSS_COMPILE)readelf -r -W $< | cut -d ' ' -f 4 | \
875 grep R_A | sort -u`"; \
876 if test "$$RELOC" != "R_ARM_RELATIVE" -a \
877 "$$RELOC" != "R_AARCH64_RELATIVE"; then \
878 echo "$< contains unexpected relocations: $$RELOC"; \
879 false; \
880 fi
Albert ARIBAUDc37980c2013-06-11 14:17:30 +0200881
Ilya Yanok28abd482011-06-20 12:45:38 +0000882$(VERSION_FILE):
Mike Frysinger14ce91b2011-06-30 16:56:20 +0000883 @mkdir -p $(dir $(VERSION_FILE))
Masahiro Yamadadd88ab32013-11-28 16:29:23 +0900884 @( localvers='$(shell $(TOPDIR)/scripts/setlocalversion $(TOPDIR))' ; \
Ilya Yanok28abd482011-06-20 12:45:38 +0000885 printf '#define PLAIN_VERSION "%s%s"\n' \
886 "$(U_BOOT_VERSION)" "$${localvers}" ; \
887 printf '#define U_BOOT_VERSION "U-Boot %s%s"\n' \
888 "$(U_BOOT_VERSION)" "$${localvers}" ; \
889 ) > $@.tmp
890 @( printf '#define CC_VERSION_STRING "%s"\n' \
891 '$(shell $(CC) --version | head -n 1)' )>> $@.tmp
892 @( printf '#define LD_VERSION_STRING "%s"\n' \
893 '$(shell $(LD) -v | head -n 1)' )>> $@.tmp
894 @cmp -s $@ $@.tmp && rm -f $@.tmp || mv -f $@.tmp $@
895
Loïc Minier249b53a2011-10-03 11:57:10 +0200896$(TIMESTAMP_FILE):
897 @mkdir -p $(dir $(TIMESTAMP_FILE))
Loïc Miniera76406f2011-10-03 11:57:11 +0200898 @LC_ALL=C date +'#define U_BOOT_DATE "%b %d %C%y"' > $@.tmp
899 @LC_ALL=C date +'#define U_BOOT_TIME "%T"' >> $@.tmp
900 @cmp -s $@ $@.tmp && rm -f $@.tmp || mv -f $@.tmp $@
Loïc Minier249b53a2011-10-03 11:57:10 +0200901
Mike Frysinger0358df42010-08-15 00:03:21 -0400902easylogo env gdb:
Masahiro Yamada9e414032014-02-04 17:24:24 +0900903 $(MAKE) $(build)=tools/$@ MTD_VERSION=${MTD_VERSION}
Masahiro Yamada940db162014-02-04 17:24:10 +0900904
Mike Frysinger0358df42010-08-15 00:03:21 -0400905gdbtools: gdb
906
Marek Vasut30ff8912012-10-06 14:04:58 +0000907xmldocs pdfdocs psdocs htmldocs mandocs: tools/kernel-doc/docproc
Masahiro Yamada9e414032014-02-04 17:24:24 +0900908 $(MAKE) U_BOOT_VERSION=$(U_BOOT_VERSION) $(build)=doc/DocBook $@
Marek Vasut30ff8912012-10-06 14:04:58 +0000909
Loïc Minier249b53a2011-10-03 11:57:10 +0200910tools-all: easylogo env gdb $(VERSION_FILE) $(TIMESTAMP_FILE)
Masahiro Yamada9e414032014-02-04 17:24:24 +0900911 $(MAKE) $(build)=tools HOST_TOOLS_ALL=y
Mike Frysinger0358df42010-08-15 00:03:21 -0400912
Wolfgang Denk4e53a252006-10-25 00:43:17 +0200913.PHONY : CHANGELOG
914CHANGELOG:
Ben Warrenb985b5d2006-10-26 14:38:25 -0400915 git log --no-merges U-Boot-1_1_5.. | \
916 unexpand -a | sed -e 's/\s\s*$$//' > $@
Wolfgang Denk4e53a252006-10-25 00:43:17 +0200917
Harald Welte0a823aa2008-07-09 22:30:30 +0800918include/license.h: tools/bin2header COPYING
Wolfgang Denk0e42ada2010-05-27 23:18:33 +0200919 cat COPYING | gzip -9 -c | ./tools/bin2header license_gzip > include/license.h
wdenk7ebf7442002-11-02 23:17:16 +0000920#########################################################################
921
922unconfig:
Masahiro Yamada9e414032014-02-04 17:24:24 +0900923 @rm -f include/config.h include/config.mk \
924 board/*/config.tmp board/*/*/config.tmp \
925 include/autoconf.mk include/autoconf.mk.dep \
926 include/spl-autoconf.mk \
927 include/tpl-autoconf.mk
wdenk7ebf7442002-11-02 23:17:16 +0000928
Wolfgang Denka6862bc2010-05-27 23:18:36 +0200929%_config:: unconfig
930 @$(MKCONFIG) -A $(@:_config=)
931
wdenk3e386912003-04-05 00:53:31 +0000932#########################################################################
wdenk7ebf7442002-11-02 23:17:16 +0000933
934clean:
Masahiro Yamada9e414032014-02-04 17:24:24 +0900935 @rm -f examples/standalone/atmel_df_pow2 \
936 examples/standalone/hello_world \
937 examples/standalone/interrupt \
938 examples/standalone/mem_to_mem_idma2intr \
939 examples/standalone/sched \
940 $(addprefix examples/standalone/, smc91111_eeprom smc911x_eeprom) \
941 examples/standalone/test_burst \
942 examples/standalone/timer
943 @rm -f $(addprefix examples/api/, demo demo.bin)
944 @rm -f tools/bmp_logo tools/easylogo/easylogo \
945 tools/env/fw_printenv \
946 tools/envcrc \
947 $(addprefix tools/gdb/, gdbcont gdbsend) \
948 tools/gen_eth_addr tools/img2srec \
949 tools/dumpimage \
950 $(addprefix tools/, mkenvimage mkimage) \
951 tools/mpc86x_clk \
952 $(addprefix tools/, mk$(BOARD)spl mkexynosspl) \
953 tools/mxsboot \
954 tools/ncb tools/ubsha1 \
955 tools/kernel-doc/docproc \
956 tools/proftool
957 @rm -f $(addprefix board/cray/L1/, bootscript.c bootscript.image) \
958 board/matrix_vision/*/bootscript.img \
959 spl/board/samsung/$(BOARD)/tools/mk$(BOARD)spl \
960 u-boot.lds \
961 $(addprefix arch/blackfin/cpu/, init.lds init.elf)
962 @rm -f include/bmp_logo.h
963 @rm -f include/bmp_logo_data.h
964 @rm -f lib/asm-offsets.s
965 @rm -f include/generated/asm-offsets.h
966 @rm -f $(CPUDIR)/$(SOC)/asm-offsets.s
Peter Tyserd4abc752009-07-20 19:02:21 -0500967 @rm -f $(TIMESTAMP_FILE) $(VERSION_FILE)
Masahiro Yamada9e414032014-02-04 17:24:24 +0900968 @$(MAKE) -f $(srctree)/doc/DocBook/Makefile cleandocs
Wolfgang Denkae6d1052008-01-13 00:59:21 +0100969 @find $(OBJTREE) -type f \
Tom Rini4a30f1e2012-02-20 13:50:10 +0000970 \( -name 'core' -o -name '*.bak' -o -name '*~' -o -name '*.su' \
Troy Kisky71a988a2013-01-18 16:14:24 +0000971 -o -name '*.o' -o -name '*.a' -o -name '*.exe' \
972 -o -name '*.cfgtmp' \) -print \
wdenk7ebf7442002-11-02 23:17:16 +0000973 | xargs rm -f
wdenk7ebf7442002-11-02 23:17:16 +0000974
Andy Fleming734329f2011-11-21 13:40:43 +0000975# Removes everything not needed for testing u-boot
976tidy: clean
977 @find $(OBJTREE) -type f \( -name '*.depend*' \) -print | xargs rm -f
978
979clobber: tidy
980 @find $(OBJTREE) -type f \( -name '*.srec' \
981 -o -name '*.bin' -o -name u-boot.img \) \
982 -print0 | xargs -0 rm -f
Masahiro Yamada9e414032014-02-04 17:24:24 +0900983 @rm -f $(OBJS) *.bak ctags etags TAGS \
984 cscope.* *.*~
985 @rm -f u-boot u-boot.map u-boot.hex $(ALL-y)
986 @rm -f u-boot.kwb
987 @rm -f u-boot.pbl
988 @rm -f u-boot.imx
989 @rm -f u-boot-with-spl.imx
990 @rm -f u-boot-with-nand-spl.imx
991 @rm -f u-boot.ubl
992 @rm -f u-boot.ais
993 @rm -f u-boot.dtb
994 @rm -f u-boot.sb
995 @rm -f u-boot.spr
996 @rm -f $(addprefix nand_spl/, u-boot.lds u-boot.lst System.map)
997 @rm -f $(addprefix nand_spl/, u-boot-nand_spl.lds u-boot-spl u-boot-spl.map)
998 @rm -f $(addprefix spl/, u-boot-spl u-boot-spl.bin u-boot-spl.map)
999 @rm -f spl/u-boot-spl.lds
1000 @rm -f $(addprefix tpl/, u-boot-tpl u-boot-tpl.bin u-boot-tpl.map)
1001 @rm -f tpl/u-boot-spl.lds
1002 @rm -f MLO MLO.byteswap
1003 @rm -f SPL
1004 @rm -f tools/xway-swap-bytes
1005 @rm -fr include/asm/proc include/asm/arch include/asm
1006 @rm -fr include/generated
1007 @[ ! -d nand_spl ] || find nand_spl -name "*" -type l -print | xargs rm -f
1008 @rm -f dts/*.tmp
1009 @rm -f $(addprefix spl/, u-boot-spl.ais, u-boot-spl-pad.ais)
wdenk7ebf7442002-11-02 23:17:16 +00001010
1011mrproper \
1012distclean: clobber unconfig
Mike Frysingerafd077b2011-06-24 18:37:55 +00001013ifneq ($(OBJTREE),$(SRCTREE))
Masahiro Yamada9e414032014-02-04 17:24:24 +09001014 rm -rf *
Marian Balakowiczf9328632006-09-01 19:49:50 +02001015endif
wdenk7ebf7442002-11-02 23:17:16 +00001016
1017backup:
1018 F=`basename $(TOPDIR)` ; cd .. ; \
Ilya Yanokd6b93712010-06-21 18:13:21 +04001019 gtar --force-local -zcvf `LC_ALL=C date "+$$F-%Y-%m-%d-%T.tar.gz"` $$F
wdenk7ebf7442002-11-02 23:17:16 +00001020
1021#########################################################################
Masahiro Yamada9e414032014-02-04 17:24:24 +09001022
1023endif # skip-makefile
1024
1025PHONY += FORCE
1026FORCE:
1027
1028# Declare the contents of the .PHONY variable as phony. We keep that
1029# information in a variable so we can use it in if_changed and friends.
1030.PHONY: $(PHONY)