]> git.ipfire.org Git - people/ms/u-boot.git/blame - Makefile
examples: delete unnecessary CPPFLAGS
[people/ms/u-boot.git] / Makefile
CommitLineData
7ebf7443 1#
eca3aeb3 2# (C) Copyright 2000-2013
7ebf7443
WD
3# Wolfgang Denk, DENX Software Engineering, wd@denx.de.
4#
eca3aeb3 5# SPDX-License-Identifier: GPL-2.0+
7ebf7443
WD
6#
7
3ae7b240 8VERSION = 2013
40a60c6e 9PATCHLEVEL = 10
211e4754 10SUBLEVEL =
183acb70 11EXTRAVERSION =
8b9e4787 12ifneq "$(SUBLEVEL)" ""
881a87ec 13U_BOOT_VERSION = $(VERSION).$(PATCHLEVEL).$(SUBLEVEL)$(EXTRAVERSION)
8b9e4787
WD
14else
15U_BOOT_VERSION = $(VERSION).$(PATCHLEVEL)$(EXTRAVERSION)
16endif
efb2172e
SG
17TIMESTAMP_FILE = $(obj)include/generated/timestamp_autogenerated.h
18VERSION_FILE = $(obj)include/generated/version_autogenerated.h
881a87ec 19
7ebf7443 20HOSTARCH := $(shell uname -m | \
fea25720 21 sed -e s/i.86/x86/ \
7ebf7443
WD
22 -e s/sun4u/sparc64/ \
23 -e s/arm.*/arm/ \
24 -e s/sa110/arm/ \
d0179083
KG
25 -e s/ppc64/powerpc/ \
26 -e s/ppc/powerpc/ \
8d1f6355
NI
27 -e s/macppc/powerpc/\
28 -e s/sh.*/sh/)
7ebf7443 29
f9d77ed3 30HOSTOS := $(shell uname -s | tr '[:upper:]' '[:lower:]' | \
7ebf7443
WD
31 sed -e 's/\(cygwin\).*/cygwin/')
32
120ae609 33export HOSTARCH HOSTOS
7ebf7443
WD
34
35# Deal with colliding definitions from tcsh etc.
36VENDOR=
37
ae6d1056
WD
38#########################################################################
39# Allow for silent builds
40ifeq (,$(findstring s,$(MAKEFLAGS)))
41XECHO = echo
42else
43XECHO = :
44endif
45
7ebf7443 46#########################################################################
f9328639 47#
1bce2aeb 48# U-boot build supports generating object files in a separate external
f9328639 49# directory. Two use cases are supported:
887e2ec9 50#
f9328639
MB
51# 1) Add O= to the make command line
52# 'make O=/tmp/build all'
53#
1bce2aeb 54# 2) Set environment variable BUILD_DIR to point to the desired location
f9328639
MB
55# 'export BUILD_DIR=/tmp/build'
56# 'make'
57#
58# The second approach can also be used with a MAKEALL script
59# 'export BUILD_DIR=/tmp/build'
60# './MAKEALL'
887e2ec9 61#
1bce2aeb 62# Command line 'O=' setting overrides BUILD_DIR environment variable.
887e2ec9 63#
f9328639
MB
64# When none of the above methods is used the local build is performed and
65# the object files are placed in the source directory.
887e2ec9 66#
f9328639 67
f9328639
MB
68ifeq ("$(origin O)", "command line")
69BUILD_DIR := $(O)
70endif
f9328639 71
4ab64933
KP
72# Call a source code checker (by default, "sparse") as part of the
73# C compilation.
74#
75# Use 'make C=1' to enable checking of re-compiled files.
76#
77# See the linux kernel file "Documentation/sparse.txt" for more details,
78# including where to get the "sparse" utility.
79
80ifdef C
81ifeq ("$(origin C)", "command line")
82CHECKSRC := $(C)
83endif
84endif
85ifndef CHECKSRC
86 CHECKSRC = 0
87endif
88export CHECKSRC
89
f9328639
MB
90ifneq ($(BUILD_DIR),)
91saved-output := $(BUILD_DIR)
4f0645eb
MB
92
93# Attempt to create a output directory.
94$(shell [ -d ${BUILD_DIR} ] || mkdir -p ${BUILD_DIR})
95
a73c8dbb 96# Verify if it was successful.
f9328639
MB
97BUILD_DIR := $(shell cd $(BUILD_DIR) && /bin/pwd)
98$(if $(BUILD_DIR),,$(error output directory "$(saved-output)" does not exist))
99endif # ifneq ($(BUILD_DIR),)
100
101OBJTREE := $(if $(BUILD_DIR),$(BUILD_DIR),$(CURDIR))
c8f9c302 102SPLTREE := $(OBJTREE)/spl
3aa29de0 103TPLTREE := $(OBJTREE)/tpl
f9328639
MB
104SRCTREE := $(CURDIR)
105TOPDIR := $(SRCTREE)
106LNDIR := $(OBJTREE)
3aa29de0 107export TOPDIR SRCTREE OBJTREE SPLTREE TPLTREE
f9328639
MB
108
109MKCONFIG := $(SRCTREE)/mkconfig
110export MKCONFIG
7ebf7443 111
f9328639 112ifneq ($(OBJTREE),$(SRCTREE))
dd520bf3 113REMOTE_BUILD := 1
f9328639
MB
114export REMOTE_BUILD
115endif
116
117# $(obj) and (src) are defined in config.mk but here in main Makefile
118# we also need them before config.mk is included which is the case for
119# some targets like unconfig, clean, clobber, distclean, etc.
120ifneq ($(OBJTREE),$(SRCTREE))
121obj := $(OBJTREE)/
122src := $(SRCTREE)/
123else
124obj :=
125src :=
887e2ec9 126endif
f9328639
MB
127export obj src
128
5013c09f
WD
129# Make sure CDPATH settings don't interfere
130unexport CDPATH
131
7ebf7443
WD
132#########################################################################
133
6d1ce387
MF
134# The "tools" are needed early, so put this first
135# Don't include stuff already done in $(LIBS)
349e83f0
CC
136# The "examples" conditionally depend on U-Boot (say, when USE_PRIVATE_LIBGCC
137# is "yes"), so compile examples after U-Boot is compiled.
138SUBDIR_TOOLS = tools
139SUBDIR_EXAMPLES = examples/standalone examples/api
140SUBDIRS = $(SUBDIR_TOOLS)
6d1ce387 141
249b53a6 142.PHONY : $(SUBDIRS) $(VERSION_FILE) $(TIMESTAMP_FILE)
6d1ce387 143
ae6d1056 144ifeq ($(obj)include/config.mk,$(wildcard $(obj)include/config.mk))
7ebf7443 145
2632c008
MF
146# Include autoconf.mk before config.mk so that the config options are available
147# to all top level build files. We need the dummy all: target to prevent the
148# dependency target in autoconf.mk.dep from being the default.
149all:
150sinclude $(obj)include/autoconf.mk.dep
151sinclude $(obj)include/autoconf.mk
152
b5728756
SG
153ifndef CONFIG_SANDBOX
154SUBDIRS += $(SUBDIR_EXAMPLES)
155endif
156
7ebf7443 157# load ARCH, BOARD, and CPU configuration
ae6d1056 158include $(obj)include/config.mk
1d9f4105 159export ARCH CPU BOARD VENDOR SOC
f9328639 160
1ea6bcd8 161# set default to nothing for native builds
a5284efd 162ifeq ($(HOSTARCH),$(ARCH))
1ea6bcd8 163CROSS_COMPILE ?=
5c952cf0 164endif
7ebf7443 165
92b197f0
WD
166# load other configuration
167include $(TOPDIR)/config.mk
168
fada9e20
SG
169# Targets which don't build the source code
170NON_BUILD_TARGETS = backup clean clobber distclean mkproper tidy unconfig
171
172# Only do the generic board check when actually building, not configuring
173ifeq ($(filter $(NON_BUILD_TARGETS),$(MAKECMDGOALS)),)
174ifeq ($(findstring _config,$(MAKECMDGOALS)),)
175$(CHECK_GENERIC_BOARD)
176endif
177endif
178
d51dfff7
IY
179# If board code explicitly specified LDSCRIPT or CONFIG_SYS_LDSCRIPT, use
180# that (or fail if absent). Otherwise, search for a linker script in a
181# standard location.
182
ee60197e
SG
183LDSCRIPT_MAKEFILE_DIR = $(dir $(LDSCRIPT))
184
d51dfff7
IY
185ifndef LDSCRIPT
186 #LDSCRIPT := $(TOPDIR)/board/$(BOARDDIR)/u-boot.lds.debug
187 ifdef CONFIG_SYS_LDSCRIPT
188 # need to strip off double quotes
189 LDSCRIPT := $(subst ",,$(CONFIG_SYS_LDSCRIPT))
190 endif
191endif
192
ee60197e 193# If there is no specified link script, we look in a number of places for it
d51dfff7
IY
194ifndef LDSCRIPT
195 ifeq ($(CONFIG_NAND_U_BOOT),y)
196 LDSCRIPT := $(TOPDIR)/board/$(BOARDDIR)/u-boot-nand.lds
197 ifeq ($(wildcard $(LDSCRIPT)),)
198 LDSCRIPT := $(TOPDIR)/$(CPUDIR)/u-boot-nand.lds
199 endif
200 endif
201 ifeq ($(wildcard $(LDSCRIPT)),)
202 LDSCRIPT := $(TOPDIR)/board/$(BOARDDIR)/u-boot.lds
203 endif
204 ifeq ($(wildcard $(LDSCRIPT)),)
205 LDSCRIPT := $(TOPDIR)/$(CPUDIR)/u-boot.lds
206 endif
ee60197e
SG
207 ifeq ($(wildcard $(LDSCRIPT)),)
208 LDSCRIPT := $(TOPDIR)/arch/$(ARCH)/cpu/u-boot.lds
209 # We don't expect a Makefile here
210 LDSCRIPT_MAKEFILE_DIR =
211 endif
d51dfff7
IY
212 ifeq ($(wildcard $(LDSCRIPT)),)
213$(error could not find linker script)
214 endif
215endif
216
7ebf7443
WD
217#########################################################################
218# U-Boot objects....order is important (i.e. start must be first)
219
03b7004d 220OBJS = $(CPUDIR)/start.o
7ebf7443 221ifeq ($(CPU),ppc4xx)
03b7004d 222OBJS += $(CPUDIR)/resetvec.o
7ebf7443 223endif
42d1f039 224ifeq ($(CPU),mpc85xx)
03b7004d 225OBJS += $(CPUDIR)/resetvec.o
42d1f039 226endif
7ebf7443 227
a32e626f 228OBJS := $(addprefix $(obj),$(OBJS))
f9328639 229
e66443fd 230HAVE_VENDOR_COMMON_LIB = $(if $(wildcard board/$(VENDOR)/common/Makefile),y,n)
8b5a0264 231
e2906a59
MY
232LIBS-y += lib/
233LIBS-$(CONFIG_RSA) += lib/rsa/
234LIBS-$(CONFIG_LZMA) += lib/lzma/
235LIBS-$(CONFIG_LZO) += lib/lzo/
236LIBS-$(CONFIG_ZLIB) += lib/zlib/
237LIBS-$(CONFIG_TIZEN) += lib/tizen/
238LIBS-$(HAVE_VENDOR_COMMON_LIB) += board/$(VENDOR)/common/
239LIBS-y += $(CPUDIR)/
1d9f4105 240ifdef SOC
e2906a59 241LIBS-y += $(CPUDIR)/$(SOC)/
1d9f4105 242endif
e2906a59
MY
243LIBS-$(CONFIG_IXP4XX_NPE) += drivers/net/npe/
244LIBS-$(CONFIG_OF_EMBED) += dts/
245LIBS-y += arch/$(ARCH)/lib/
57c3e5fc 246LIBS-y += fs/
e2906a59
MY
247LIBS-y += net/
248LIBS-y += disk/
249LIBS-y += drivers/
250LIBS-y += drivers/dma/
251LIBS-y += drivers/gpio/
252LIBS-y += drivers/i2c/
253LIBS-y += drivers/input/
254LIBS-y += drivers/mmc/
255LIBS-y += drivers/mtd/
256LIBS-y += drivers/mtd/nand/
257LIBS-y += drivers/mtd/onenand/
258LIBS-y += drivers/mtd/ubi/
259LIBS-y += drivers/mtd/spi/
260LIBS-y += drivers/net/
261LIBS-y += drivers/net/phy/
262LIBS-y += drivers/pci/
263LIBS-y += drivers/power/ \
264 drivers/power/fuel_gauge/ \
265 drivers/power/mfd/ \
266 drivers/power/pmic/ \
267 drivers/power/battery/
268LIBS-y += drivers/spi/
269LIBS-$(CONFIG_FMAN_ENET) += drivers/net/fm/
270LIBS-y += drivers/serial/
271LIBS-y += drivers/usb/eth/
272LIBS-y += drivers/usb/gadget/
273LIBS-y += drivers/usb/host/
274LIBS-y += drivers/usb/musb/
275LIBS-y += drivers/usb/musb-new/
276LIBS-y += drivers/usb/phy/
277LIBS-y += drivers/usb/ulpi/
278LIBS-y += common/
279LIBS-y += lib/libfdt/
280LIBS-y += api/
281LIBS-y += post/
282LIBS-y += test/
f9328639 283
24e8bee5 284ifneq (,$(filter $(SOC), mx25 mx27 mx5 mx6 mx31 mx35 mxs vf610))
e2906a59 285LIBS-y += arch/$(ARCH)/imx-common/
18936ee2
JL
286endif
287
e2906a59
MY
288LIBS-$(CONFIG_ARM) += arch/arm/cpu/
289LIBS-$(CONFIG_PPC) += arch/powerpc/cpu/
852bd07c 290
e2906a59 291LIBS-y += board/$(BOARDDIR)/
08e39a84 292
e2906a59 293LIBS-y := $(patsubst %/, %/built-in.o, $(LIBS-y))
f52d7b35 294LIBS := $(addprefix $(obj),$(sort $(LIBS-y)))
249b53a6 295.PHONY : $(LIBS)
a8c7c708 296
4f7cb08e 297# Add GCC lib
52b1bf2c
WD
298ifdef USE_PRIVATE_LIBGCC
299ifeq ("$(USE_PRIVATE_LIBGCC)", "yes")
635d1b3e 300PLATFORM_LIBGCC = $(OBJTREE)/arch/$(ARCH)/lib/libgcc.o
52b1bf2c
WD
301else
302PLATFORM_LIBGCC = -L $(USE_PRIVATE_LIBGCC) -lgcc
303endif
304else
cca4e4ae 305PLATFORM_LIBGCC := -L $(shell dirname `$(CC) $(CFLAGS) -print-libgcc-file-name`) -lgcc
52b1bf2c
WD
306endif
307PLATFORM_LIBS += $(PLATFORM_LIBGCC)
308export PLATFORM_LIBS
3d3befa7 309
6ac9f479
MF
310# Special flags for CPP when processing the linker script.
311# Pass the version down so we can handle backwards compatibility
312# on the fly.
313LDPPFLAGS += \
314 -include $(TOPDIR)/include/u-boot/u-boot.lds.h \
7e6403a6 315 -DCPUDIR=$(CPUDIR) \
6ac9f479
MF
316 $(shell $(LD) --version | \
317 sed -ne 's/GNU ld version \([0-9][0-9]*\)\.\([0-9][0-9]*\).*/-DLD_MAJOR=\1 -DLD_MINOR=\2/p')
318
f9328639 319__OBJS := $(subst $(obj),,$(OBJS))
08e39a84 320__LIBS := $(subst $(obj),,$(LIBS))
f9328639 321
bdccc4fe 322#########################################################################
7ebf7443
WD
323#########################################################################
324
f3a14d37
MF
325ifneq ($(CONFIG_BOARD_SIZE_LIMIT),)
326BOARD_SIZE_CHECK = \
327 @actual=`wc -c $@ | awk '{print $$1}'`; \
d060e6f4 328 limit=`printf "%d" $(CONFIG_BOARD_SIZE_LIMIT)`; \
f3a14d37 329 if test $$actual -gt $$limit; then \
d060e6f4
JH
330 echo "$@ exceeds file size limit:" >&2 ; \
331 echo " limit: $$limit bytes" >&2 ; \
332 echo " actual: $$actual bytes" >&2 ; \
333 echo " excess: $$((actual - limit)) bytes" >&2; \
f3a14d37
MF
334 exit 1; \
335 fi
336else
337BOARD_SIZE_CHECK =
338endif
339
3e88337b 340# Always append ALL so that arch config.mk's can add custom ones
4e0fbb98 341ALL-y += $(obj)u-boot.srec $(obj)u-boot.bin $(obj)System.map
e935a374 342
4e0fbb98
DS
343ALL-$(CONFIG_NAND_U_BOOT) += $(obj)u-boot-nand.bin
344ALL-$(CONFIG_ONENAND_U_BOOT) += $(obj)u-boot-onenand.bin
262737f0 345ALL-$(CONFIG_RAMBOOT_PBL) += $(obj)u-boot.pbl
5df2ee27 346ALL-$(CONFIG_SPL) += $(obj)spl/u-boot-spl.bin
4c267374 347ALL-$(CONFIG_SPL_FRAMEWORK) += $(obj)u-boot.img
3aa29de0 348ALL-$(CONFIG_TPL) += $(obj)tpl/u-boot-tpl.bin
2c0f79e4 349ALL-$(CONFIG_OF_SEPARATE) += $(obj)u-boot.dtb $(obj)u-boot-dtb.bin
b343bbb5
VB
350ifneq ($(CONFIG_SPL_TARGET),)
351ALL-$(CONFIG_SPL) += $(obj)$(subst ",,$(CONFIG_SPL_TARGET))
352endif
0d3c62e4 353
12b7b70c 354# enable combined SPL/u-boot/dtb rules for tegra
6d6c0bae 355ifneq ($(CONFIG_TEGRA),)
12b7b70c
AM
356ifeq ($(CONFIG_OF_SEPARATE),y)
357ALL-y += $(obj)u-boot-dtb-tegra.bin
358else
359ALL-y += $(obj)u-boot-nodtb-tegra.bin
360endif
361endif
362
71f84ef0
MY
363build := -f $(TOPDIR)/scripts/Makefile.build -C
364
349e83f0 365all: $(ALL-y) $(SUBDIR_EXAMPLES)
7ebf7443 366
501ebdf2 367$(obj)u-boot.dtb: checkdtc $(obj)u-boot
bcfe8fdf 368 $(MAKE) $(build) dts binary
2c0f79e4
SG
369 mv $(obj)dts/dt.dtb $@
370
371$(obj)u-boot-dtb.bin: $(obj)u-boot.bin $(obj)u-boot.dtb
372 cat $^ >$@
373
f9328639 374$(obj)u-boot.hex: $(obj)u-boot
6310eb9d
WD
375 $(OBJCOPY) ${OBJCFLAGS} -O ihex $< $@
376
f9328639 377$(obj)u-boot.srec: $(obj)u-boot
0817d688 378 $(OBJCOPY) -O srec $< $@
7ebf7443 379
f9328639 380$(obj)u-boot.bin: $(obj)u-boot
7ebf7443 381 $(OBJCOPY) ${OBJCFLAGS} -O binary $< $@
f3a14d37 382 $(BOARD_SIZE_CHECK)
7ebf7443 383
94a91e24 384$(obj)u-boot.ldr: $(obj)u-boot
76d82187 385 $(CREATE_LDR_ENV)
68e56324 386 $(LDR) -T $(CONFIG_BFIN_CPU) -c $@ $< $(LDR_FLAGS)
f3a14d37 387 $(BOARD_SIZE_CHECK)
94a91e24
MF
388
389$(obj)u-boot.ldr.hex: $(obj)u-boot.ldr
390 $(OBJCOPY) ${OBJCFLAGS} -O ihex $< $@ -I binary
391
392$(obj)u-boot.ldr.srec: $(obj)u-boot.ldr
393 $(OBJCOPY) ${OBJCFLAGS} -O srec $< $@ -I binary
394
b40bda6b
SR
395#
396# U-Boot entry point, needed for booting of full-blown U-Boot
397# from the SPL U-Boot version.
398#
399ifndef CONFIG_SYS_UBOOT_START
400CONFIG_SYS_UBOOT_START := 0
401endif
402
f9328639 403$(obj)u-boot.img: $(obj)u-boot.bin
a2a0a717 404 $(obj)tools/mkimage -A $(ARCH) -T firmware -C none \
b40bda6b
SR
405 -O u-boot -a $(CONFIG_SYS_TEXT_BASE) \
406 -e $(CONFIG_SYS_UBOOT_START) \
881a87ec 407 -n $(shell sed -n -e 's/.*U_BOOT_VERSION//p' $(VERSION_FILE) | \
bdccc4fe
WD
408 sed -e 's/"[ ]*$$/ for $(BOARD) board"/') \
409 -d $< $@
410
291b3dcd 411$(obj)u-boot.imx: $(obj)u-boot.bin depend
71f84ef0 412 $(MAKE) $(build) $(SRCTREE)/arch/arm/imx-common $(OBJTREE)/u-boot.imx
8edcde5e 413
aa0c7a86 414$(obj)u-boot.kwb: $(obj)u-boot.bin
31d80c77 415 $(obj)tools/mkimage -n $(CONFIG_SYS_KWD_CONFIG) -T kwbimage \
2ea88b06 416 -a $(CONFIG_SYS_TEXT_BASE) -e $(CONFIG_SYS_TEXT_BASE) -d $< $@
aa0c7a86 417
5d898a00
SX
418$(obj)u-boot.pbl: $(obj)u-boot.bin
419 $(obj)tools/mkimage -n $(CONFIG_PBLRCW_CONFIG) \
420 -R $(CONFIG_PBLPBI_CONFIG) -T pblimage \
421 -d $< $@
422
566a494f 423$(obj)u-boot.sha1: $(obj)u-boot.bin
01159530 424 $(obj)tools/ubsha1 $(obj)u-boot.bin
566a494f 425
f9328639 426$(obj)u-boot.dis: $(obj)u-boot
7ebf7443
WD
427 $(OBJDUMP) -d $< > $@
428
3aa29de0
YZ
429# $@ is output, $(1) and $(2) are inputs, $(3) is padded intermediate,
430# $(4) is pad-to
431SPL_PAD_APPEND = \
432 $(OBJCOPY) ${OBJCFLAGS} --pad-to=$(4) -I binary -O binary \
433 $(1) $(obj)$(3); \
b6df9b01 434 cat $(obj)$(3) $(2) > $@; \
3aa29de0 435 rm $(obj)$(3)
74752baa 436
3aa29de0
YZ
437ifdef CONFIG_TPL
438SPL_PAYLOAD := $(obj)tpl/u-boot-with-tpl.bin
439else
440SPL_PAYLOAD := $(obj)u-boot.bin
441endif
74752baa 442
3aa29de0
YZ
443$(obj)u-boot-with-spl.bin: $(obj)spl/u-boot-spl.bin $(SPL_PAYLOAD)
444 $(call SPL_PAD_APPEND,$<,$(SPL_PAYLOAD),spl/u-boot-spl-pad.bin,$(CONFIG_SPL_PAD_TO))
445
446$(obj)tpl/u-boot-with-tpl.bin: $(obj)tpl/u-boot-tpl.bin $(obj)u-boot.bin
b6df9b01 447 $(call SPL_PAD_APPEND,$<,$(obj)u-boot.bin,tpl/u-boot-tpl-pad.bin,$(CONFIG_TPL_PAD_TO))
7816f2cf 448
ba597609 449$(obj)u-boot-with-spl.imx: $(obj)spl/u-boot-spl.bin $(obj)u-boot.bin
71f84ef0 450 $(MAKE) $(build) $(SRCTREE)/arch/arm/imx-common \
ba597609
BT
451 $(OBJTREE)/u-boot-with-spl.imx
452
7d5a5c79 453$(obj)u-boot-with-nand-spl.imx: $(obj)spl/u-boot-spl.bin $(obj)u-boot.bin
71f84ef0 454 $(MAKE) $(build) $(SRCTREE)/arch/arm/imx-common \
7d5a5c79
BT
455 $(OBJTREE)/u-boot-with-nand-spl.imx
456
5364add4 457$(obj)u-boot.ubl: $(obj)u-boot-with-spl.bin
277f00f5 458 $(obj)tools/mkimage -n $(UBL_CONFIG) -T ublimage \
5364add4 459 -e $(CONFIG_SYS_TEXT_BASE) -d $< $(obj)u-boot.ubl
277f00f5 460
3f7f2414 461$(obj)u-boot.ais: $(obj)spl/u-boot-spl.bin $(obj)u-boot.img
6d660e77
SG
462 $(obj)tools/mkimage -s -n $(if $(CONFIG_AIS_CONFIG_FILE),$(CONFIG_AIS_CONFIG_FILE),"/dev/null") \
463 -T aisimage \
d36d8859
CR
464 -e $(CONFIG_SPL_TEXT_BASE) \
465 -d $(obj)spl/u-boot-spl.bin \
466 $(obj)spl/u-boot-spl.ais
467 $(OBJCOPY) ${OBJCFLAGS} -I binary \
468 --pad-to=$(CONFIG_SPL_MAX_SIZE) -O binary \
469 $(obj)spl/u-boot-spl.ais $(obj)spl/u-boot-spl-pad.ais
3f7f2414 470 cat $(obj)spl/u-boot-spl-pad.ais $(obj)u-boot.img > \
d36d8859 471 $(obj)u-boot.ais
d36d8859 472
a5453555 473
30b9b932 474$(obj)u-boot.sb: $(obj)u-boot.bin $(obj)spl/u-boot-spl.bin
edabc1bc 475 $(MAKE) $(build) $(SRCTREE)/$(CPUDIR)/$(SOC)/ $(OBJTREE)/u-boot.sb
30b9b932 476
94aebe6c
SR
477# On x600 (SPEAr600) U-Boot is appended to U-Boot SPL.
478# Both images are created using mkimage (crc etc), so that the ROM
479# bootloader can check its integrity. Padding needs to be done to the
480# SPL image (with mkimage header) and not the binary. Otherwise the resulting image
481# which is loaded/copied by the ROM bootloader to SRAM doesn't fit.
482# The resulting image containing both U-Boot images is called u-boot.spr
483$(obj)u-boot.spr: $(obj)u-boot.img $(obj)spl/u-boot-spl.bin
484 $(obj)tools/mkimage -A $(ARCH) -T firmware -C none \
485 -a $(CONFIG_SPL_TEXT_BASE) -e $(CONFIG_SPL_TEXT_BASE) -n XLOADER \
486 -d $(obj)spl/u-boot-spl.bin $(obj)spl/u-boot-spl.img
487 tr "\000" "\377" < /dev/zero | dd ibs=1 count=$(CONFIG_SPL_PAD_TO) \
488 of=$(obj)spl/u-boot-spl-pad.img 2>/dev/null
489 dd if=$(obj)spl/u-boot-spl.img of=$(obj)spl/u-boot-spl-pad.img \
490 conv=notrunc 2>/dev/null
491 cat $(obj)spl/u-boot-spl-pad.img $(obj)u-boot.img > $@
492
6d6c0bae 493ifneq ($(CONFIG_TEGRA),)
9972db5c 494$(obj)u-boot-nodtb-tegra.bin: $(obj)spl/u-boot-spl.bin $(obj)u-boot.bin
984df4ec 495 $(OBJCOPY) ${OBJCFLAGS} --pad-to=$(CONFIG_SYS_TEXT_BASE) -O binary $(obj)spl/u-boot-spl $(obj)spl/u-boot-spl-pad.bin
9972db5c 496 cat $(obj)spl/u-boot-spl-pad.bin $(obj)u-boot.bin > $@
984df4ec 497 rm $(obj)spl/u-boot-spl-pad.bin
9972db5c
SW
498
499ifeq ($(CONFIG_OF_SEPARATE),y)
500$(obj)u-boot-dtb-tegra.bin: $(obj)u-boot-nodtb-tegra.bin $(obj)u-boot.dtb
501 cat $(obj)u-boot-nodtb-tegra.bin $(obj)u-boot.dtb > $@
502endif
984df4ec 503endif
984df4ec 504
fb3d2b8a
SR
505$(obj)u-boot-img.bin: $(obj)spl/u-boot-spl.bin $(obj)u-boot.img
506 cat $(obj)spl/u-boot-spl.bin $(obj)u-boot.img > $@
507
ecddccd0
SR
508# PPC4xx needs the SPL at the end of the image, since the reset vector
509# is located at 0xfffffffc. So we can't use the "u-boot-img.bin" target
510# and need to introduce a new build target with the full blown U-Boot
511# at the start padded up to the start of the SPL image. And then concat
512# the SPL image to the end.
513$(obj)u-boot-img-spl-at-end.bin: $(obj)spl/u-boot-spl.bin $(obj)u-boot.img
514 tr "\000" "\377" < /dev/zero | dd ibs=1 count=$(CONFIG_UBOOT_PAD_TO) \
515 of=$(obj)u-boot-pad.img 2>/dev/null
516 dd if=$(obj)u-boot.img of=$(obj)u-boot-pad.img \
517 conv=notrunc 2>/dev/null
518 cat $(obj)u-boot-pad.img $(obj)spl/u-boot-spl.bin > $@
519
86eb49b3
SG
520ifeq ($(CONFIG_SANDBOX),y)
521GEN_UBOOT = \
522 cd $(LNDIR) && $(CC) $(SYMS) -T $(obj)u-boot.lds \
523 -Wl,--start-group $(__LIBS) -Wl,--end-group \
524 $(PLATFORM_LIBS) -Wl,-Map -Wl,u-boot.map -o u-boot
525else
ecb1dc89 526GEN_UBOOT = \
97b24d3d 527 cd $(LNDIR) && $(LD) $(LDFLAGS) $(LDFLAGS_$(@F)) \
ef123c52 528 $(__OBJS) \
f9328639 529 --start-group $(__LIBS) --end-group $(PLATFORM_LIBS) \
b2184c31 530 -Map u-boot.map -o u-boot
86eb49b3
SG
531endif
532
16a354f9 533$(obj)u-boot: depend \
08e39a84 534 $(SUBDIR_TOOLS) $(OBJS) $(LIBS) $(LDSCRIPT) $(obj)u-boot.lds
ecb1dc89
MF
535 $(GEN_UBOOT)
536ifeq ($(CONFIG_KALLSYMS),y)
8a156fb6 537 smap=`$(call SYSTEM_MAP,$(obj)u-boot) | \
1aada9cd
WD
538 awk '$$2 ~ /[tTwW]/ {printf $$1 $$3 "\\\\000"}'` ; \
539 $(CC) $(CFLAGS) -DSYSTEM_MAP="\"$${smap}\"" \
540 -c common/system_map.c -o $(obj)common/system_map.o
ecb1dc89
MF
541 $(GEN_UBOOT) $(obj)common/system_map.o
542endif
7ebf7443 543
3bddafaa
MY
544$(OBJS):
545 @:
f9328639 546
349e83f0 547$(LIBS): depend $(SUBDIR_TOOLS)
3bddafaa 548 $(MAKE) $(build) $(dir $(subst $(obj),,$@))
a8c7c708 549
d0d6144e 550$(SUBDIRS): depend
b028f715 551 $(MAKE) -C $@ all
7ebf7443 552
349e83f0
CC
553$(SUBDIR_EXAMPLES): $(obj)u-boot
554
d0d6144e 555$(LDSCRIPT): depend
f65c9812
MF
556 $(MAKE) -C $(dir $@) $(notdir $@)
557
ef123c52 558$(obj)u-boot.lds: $(LDSCRIPT)
97b24d3d 559 $(CPP) $(CPPFLAGS) $(LDPPFLAGS) -ansi -D__ASSEMBLY__ -P - <$< >$@
1aada9cd 560
e935a374 561nand_spl: $(TIMESTAMP_FILE) $(VERSION_FILE) depend
8318fbf8 562 $(MAKE) -C nand_spl/board/$(BOARDDIR) all
887e2ec9 563
e935a374 564$(obj)u-boot-nand.bin: nand_spl $(obj)u-boot.bin
8318fbf8 565 cat $(obj)nand_spl/u-boot-spl-16k.bin $(obj)u-boot.bin > $(obj)u-boot-nand.bin
887e2ec9 566
bd25fdba 567$(obj)spl/u-boot-spl.bin: $(SUBDIR_TOOLS) depend
5df2ee27
DS
568 $(MAKE) -C spl all
569
3aa29de0
YZ
570$(obj)tpl/u-boot-tpl.bin: $(SUBDIR_TOOLS) depend
571 $(MAKE) -C spl all CONFIG_TPL_BUILD=y
572
2a998793
DH
573# Explicitly make _depend in subdirs containing multiple targets to prevent
574# parallel sub-makes creating .depend files simultaneously.
16a354f9 575depend dep: $(TIMESTAMP_FILE) $(VERSION_FILE) \
39bc12dd 576 $(obj)include/spl-autoconf.mk \
3aa29de0 577 $(obj)include/tpl-autoconf.mk \
16a354f9 578 $(obj)include/autoconf.mk \
a4814a69
SB
579 $(obj)include/generated/generic-asm-offsets.h \
580 $(obj)include/generated/asm-offsets.h
7ebf7443 581
e5e4e705
LY
582TAG_SUBDIRS = $(SUBDIRS)
583TAG_SUBDIRS += $(dir $(__LIBS))
a340c325 584TAG_SUBDIRS += include
a340c325 585
857d9ea6
HK
586FIND := find
587FINDFLAGS := -L
588
1064d980
TR
589checkstack:
590 $(CROSS_COMPILE)objdump -d $(obj)u-boot \
591 `$(FIND) $(obj) -name u-boot-spl -print` | \
592 perl $(src)tools/checkstack.pl $(ARCH)
593
f9328639 594tags ctags:
857d9ea6 595 ctags -w -o $(obj)ctags `$(FIND) $(FINDFLAGS) $(TAG_SUBDIRS) \
e5e4e705 596 -name '*.[chS]' -print`
7ebf7443
WD
597
598etags:
857d9ea6 599 etags -a -o $(obj)etags `$(FIND) $(FINDFLAGS) $(TAG_SUBDIRS) \
e5e4e705 600 -name '*.[chS]' -print`
ffda586f 601cscope:
857d9ea6
HK
602 $(FIND) $(FINDFLAGS) $(TAG_SUBDIRS) -name '*.[chS]' -print > \
603 cscope.files
ffda586f 604 cscope -b -q -k
7ebf7443 605
ecb1dc89
MF
606SYSTEM_MAP = \
607 $(NM) $1 | \
7ebf7443 608 grep -v '\(compiled\)\|\(\.o$$\)\|\( [aUw] \)\|\(\.\.ng$$\)\|\(LASH[RL]DI\)' | \
ecb1dc89
MF
609 LC_ALL=C sort
610$(obj)System.map: $(obj)u-boot
bc8bb6ec 611 @$(call SYSTEM_MAP,$<) > $@
7ebf7443 612
06a119a0
TR
613checkthumb:
614 @if test $(call cc-version) -lt 0404; then \
615 echo -n '*** Your GCC does not produce working '; \
616 echo 'binaries in THUMB mode.'; \
617 echo '*** Your board is configured for THUMB mode.'; \
618 false; \
619 fi
6ec63f41
SW
620
621# GCC 3.x is reported to have problems generating the type of relocation
622# that U-Boot wants.
623# See http://lists.denx.de/pipermail/u-boot/2012-September/135156.html
624checkgcc4:
625 @if test $(call cc-version) -lt 0400; then \
626 echo -n '*** Your GCC is too old, please upgrade to GCC 4.x or newer'; \
627 false; \
628 fi
629
501ebdf2
SW
630checkdtc:
631 @if test $(call dtc-version) -lt 0104; then \
632 echo '*** Your dtc is too old, please upgrade to dtc 1.4 or newer'; \
633 false; \
634 fi
635
2f155f6c
GL
636#
637# Auto-generate the autoconf.mk file (which is included by all makefiles)
638#
639# This target actually generates 2 files; autoconf.mk and autoconf.mk.dep.
640# the dep file is only include in this top level makefile to determine when
641# to regenerate the autoconf.mk file.
1510b82d
WD
642$(obj)include/autoconf.mk.dep: $(obj)include/config.h include/common.h
643 @$(XECHO) Generating $@ ; \
16fe7775 644 set -e ; \
ae6d1056 645 : Generate the dependancies ; \
4c34b2a0 646 $(CC) -x c -DDO_DEPS_ONLY -M $(CFLAGS) $(CPPFLAGS) \
1510b82d
WD
647 -MQ $(obj)include/autoconf.mk include/common.h > $@
648
649$(obj)include/autoconf.mk: $(obj)include/config.h
650 @$(XECHO) Generating $@ ; \
651 set -e ; \
ae6d1056 652 : Extract the config macros ; \
1510b82d 653 $(CPP) $(CFLAGS) -DDO_DEPS_ONLY -dM include/common.h | \
4a0f7538
WD
654 sed -n -f tools/scripts/define2mk.sed > $@.tmp && \
655 mv $@.tmp $@
2f155f6c 656
39bc12dd 657# Auto-generate the spl-autoconf.mk file (which is included by all makefiles for SPL)
3aa29de0
YZ
658$(obj)include/tpl-autoconf.mk: $(obj)include/config.h
659 @$(XECHO) Generating $@ ; \
660 set -e ; \
661 : Extract the config macros ; \
662 $(CPP) $(CFLAGS) -DCONFIG_TPL_BUILD -DCONFIG_SPL_BUILD\
663 -DDO_DEPS_ONLY -dM include/common.h | \
664 sed -n -f tools/scripts/define2mk.sed > $@.tmp && \
665 mv $@.tmp $@
666
39bc12dd
JF
667$(obj)include/spl-autoconf.mk: $(obj)include/config.h
668 @$(XECHO) Generating $@ ; \
669 set -e ; \
670 : Extract the config macros ; \
671 $(CPP) $(CFLAGS) -DCONFIG_SPL_BUILD -DDO_DEPS_ONLY -dM include/common.h | \
672 sed -n -f tools/scripts/define2mk.sed > $@.tmp && \
673 mv $@.tmp $@
674
16a354f9 675$(obj)include/generated/generic-asm-offsets.h: $(obj)include/autoconf.mk.dep \
39bc12dd 676 $(obj)include/spl-autoconf.mk \
3aa29de0 677 $(obj)include/tpl-autoconf.mk \
16a354f9
WD
678 $(obj)lib/asm-offsets.s
679 @$(XECHO) Generating $@
680 tools/scripts/make-asm-offsets $(obj)lib/asm-offsets.s $@
681
682$(obj)lib/asm-offsets.s: $(obj)include/autoconf.mk.dep \
39bc12dd 683 $(obj)include/spl-autoconf.mk \
3aa29de0 684 $(obj)include/tpl-autoconf.mk \
16a354f9
WD
685 $(src)lib/asm-offsets.c
686 @mkdir -p $(obj)lib
687 $(CC) -DDO_DEPS_ONLY \
688 $(CFLAGS) $(CFLAGS_$(BCURDIR)/$(@F)) $(CFLAGS_$(BCURDIR)) \
689 -o $@ $(src)lib/asm-offsets.c -c -S
690
a4814a69 691$(obj)include/generated/asm-offsets.h: $(obj)include/autoconf.mk.dep \
39bc12dd 692 $(obj)include/spl-autoconf.mk \
3aa29de0 693 $(obj)include/tpl-autoconf.mk \
a4814a69 694 $(obj)$(CPUDIR)/$(SOC)/asm-offsets.s
b12734ee 695 @$(XECHO) Generating $@
a4814a69
SB
696 tools/scripts/make-asm-offsets $(obj)$(CPUDIR)/$(SOC)/asm-offsets.s $@
697
39bc12dd 698$(obj)$(CPUDIR)/$(SOC)/asm-offsets.s: $(obj)include/autoconf.mk.dep \
3aa29de0
YZ
699 $(obj)include/spl-autoconf.mk \
700 $(obj)include/tpl-autoconf.mk
a4814a69
SB
701 @mkdir -p $(obj)$(CPUDIR)/$(SOC)
702 if [ -f $(src)$(CPUDIR)/$(SOC)/asm-offsets.c ];then \
703 $(CC) -DDO_DEPS_ONLY \
704 $(CFLAGS) $(CFLAGS_$(BCURDIR)/$(@F)) $(CFLAGS_$(BCURDIR)) \
705 -o $@ $(src)$(CPUDIR)/$(SOC)/asm-offsets.c -c -S; \
706 else \
707 touch $@; \
708 fi
709
7ebf7443 710#########################################################################
ae6d1056 711else # !config.mk
f9328639
MB
712all $(obj)u-boot.hex $(obj)u-boot.srec $(obj)u-boot.bin \
713$(obj)u-boot.img $(obj)u-boot.dis $(obj)u-boot \
249b53a6 714$(filter-out tools,$(SUBDIRS)) \
2e78e75e 715depend dep tags ctags etags cscope $(obj)System.map:
7ebf7443
WD
716 @echo "System not configured - see README" >&2
717 @ exit 1
c7c0d542 718
249b53a6 719tools: $(VERSION_FILE) $(TIMESTAMP_FILE)
0358df42 720 $(MAKE) -C $@ all
ae6d1056 721endif # config.mk
7ebf7443 722
c37980c3
AA
723# ARM relocations should all be R_ARM_RELATIVE.
724checkarmreloc: $(obj)u-boot
725 @if test "R_ARM_RELATIVE" != \
c1273d71 726 "`$(CROSS_COMPILE)readelf -r $< | cut -d ' ' -f 4 | grep R_ARM | sort -u`"; \
c37980c3
AA
727 then echo "$< contains relocations other than \
728 R_ARM_RELATIVE"; false; fi
729
28abd48f 730$(VERSION_FILE):
14ce91b1 731 @mkdir -p $(dir $(VERSION_FILE))
28abd48f
IY
732 @( localvers='$(shell $(TOPDIR)/tools/setlocalversion $(TOPDIR))' ; \
733 printf '#define PLAIN_VERSION "%s%s"\n' \
734 "$(U_BOOT_VERSION)" "$${localvers}" ; \
735 printf '#define U_BOOT_VERSION "U-Boot %s%s"\n' \
736 "$(U_BOOT_VERSION)" "$${localvers}" ; \
737 ) > $@.tmp
738 @( printf '#define CC_VERSION_STRING "%s"\n' \
739 '$(shell $(CC) --version | head -n 1)' )>> $@.tmp
740 @( printf '#define LD_VERSION_STRING "%s"\n' \
741 '$(shell $(LD) -v | head -n 1)' )>> $@.tmp
742 @cmp -s $@ $@.tmp && rm -f $@.tmp || mv -f $@.tmp $@
743
249b53a6
LM
744$(TIMESTAMP_FILE):
745 @mkdir -p $(dir $(TIMESTAMP_FILE))
a76406fb
LM
746 @LC_ALL=C date +'#define U_BOOT_DATE "%b %d %C%y"' > $@.tmp
747 @LC_ALL=C date +'#define U_BOOT_TIME "%T"' >> $@.tmp
748 @cmp -s $@ $@.tmp && rm -f $@.tmp || mv -f $@.tmp $@
249b53a6 749
0358df42
MF
750easylogo env gdb:
751 $(MAKE) -C tools/$@ all MTD_VERSION=${MTD_VERSION}
752gdbtools: gdb
753
30ff8918
MV
754xmldocs pdfdocs psdocs htmldocs mandocs: tools/kernel-doc/docproc
755 $(MAKE) U_BOOT_VERSION=$(U_BOOT_VERSION) -C doc/DocBook/ $@
756
249b53a6 757tools-all: easylogo env gdb $(VERSION_FILE) $(TIMESTAMP_FILE)
0358df42
MF
758 $(MAKE) -C tools HOST_TOOLS_ALL=y
759
4e53a258
WD
760.PHONY : CHANGELOG
761CHANGELOG:
b985b5d6
BW
762 git log --no-merges U-Boot-1_1_5.. | \
763 unexpand -a | sed -e 's/\s\s*$$//' > $@
4e53a258 764
0a823aa2 765include/license.h: tools/bin2header COPYING
0e42ada3 766 cat COPYING | gzip -9 -c | ./tools/bin2header license_gzip > include/license.h
7ebf7443
WD
767#########################################################################
768
769unconfig:
887e2ec9 770 @rm -f $(obj)include/config.h $(obj)include/config.mk \
2f155f6c 771 $(obj)board/*/config.tmp $(obj)board/*/*/config.tmp \
39bc12dd 772 $(obj)include/autoconf.mk $(obj)include/autoconf.mk.dep \
3aa29de0
YZ
773 $(obj)include/spl-autoconf.mk \
774 $(obj)include/tpl-autoconf.mk
7ebf7443 775
a6862bc1
WD
776%_config:: unconfig
777 @$(MKCONFIG) -A $(@:_config=)
778
d6a5e6d5
LM
779sinclude $(obj).boards.depend
780$(obj).boards.depend: boards.cfg
50c2a91b 781 @awk '(NF && $$1 !~ /^#/) { print $$7 ": " $$7 "_config; $$(MAKE)" }' $< > $@
9f4a4206 782
3e38691e
WD
783#########################################################################
784#########################################################################
7ebf7443
WD
785
786clean:
1bc15386 787 @rm -f $(obj)examples/standalone/82559_eeprom \
d640ac58 788 $(obj)examples/standalone/atmel_df_pow2 \
1bc15386
PT
789 $(obj)examples/standalone/eepro100_eeprom \
790 $(obj)examples/standalone/hello_world \
791 $(obj)examples/standalone/interrupt \
792 $(obj)examples/standalone/mem_to_mem_idma2intr \
793 $(obj)examples/standalone/sched \
201a017c 794 $(obj)examples/standalone/smc911{11,x}_eeprom \
1bc15386
PT
795 $(obj)examples/standalone/test_burst \
796 $(obj)examples/standalone/timer
d4abc757 797 @rm -f $(obj)examples/api/demo{,.bin}
f9301e1c
WD
798 @rm -f $(obj)tools/bmp_logo $(obj)tools/easylogo/easylogo \
799 $(obj)tools/env/{fw_printenv,fw_setenv} \
800 $(obj)tools/envcrc \
801 $(obj)tools/gdb/{astest,gdbcont,gdbsend} \
802 $(obj)tools/gen_eth_addr $(obj)tools/img2srec \
7717fe10 803 $(obj)tools/mk{env,}image $(obj)tools/mpc86x_clk \
ad403e71 804 $(obj)tools/mk{$(BOARD),}spl \
8aa09026 805 $(obj)tools/mxsboot \
30ff8918 806 $(obj)tools/ncb $(obj)tools/ubsha1 \
6c887b2a
SG
807 $(obj)tools/kernel-doc/docproc \
808 $(obj)tools/proftool
f9301e1c 809 @rm -f $(obj)board/cray/L1/{bootscript.c,bootscript.image} \
74c7a95f 810 $(obj)board/matrix_vision/*/bootscript.img \
566e5cf4 811 $(obj)board/voiceblue/eeprom \
1aada9cd 812 $(obj)u-boot.lds \
fb5166ce
MF
813 $(obj)arch/blackfin/cpu/bootrom-asm-offsets.[chs] \
814 $(obj)arch/blackfin/cpu/init.{lds,elf}
dc7746d8 815 @rm -f $(obj)include/bmp_logo.h
c270730f 816 @rm -f $(obj)include/bmp_logo_data.h
16a354f9 817 @rm -f $(obj)lib/asm-offsets.s
a4814a69
SB
818 @rm -f $(obj)include/generated/asm-offsets.h
819 @rm -f $(obj)$(CPUDIR)/$(SOC)/asm-offsets.s
d4abc757 820 @rm -f $(TIMESTAMP_FILE) $(VERSION_FILE)
b3141fdb 821 @$(MAKE) -s -C doc/DocBook/ cleandocs
ae6d1056 822 @find $(OBJTREE) -type f \
4a30f1e8 823 \( -name 'core' -o -name '*.bak' -o -name '*~' -o -name '*.su' \
71a988aa
TK
824 -o -name '*.o' -o -name '*.a' -o -name '*.exe' \
825 -o -name '*.cfgtmp' \) -print \
7ebf7443 826 | xargs rm -f
7ebf7443 827
734329f9
AF
828# Removes everything not needed for testing u-boot
829tidy: clean
830 @find $(OBJTREE) -type f \( -name '*.depend*' \) -print | xargs rm -f
831
832clobber: tidy
833 @find $(OBJTREE) -type f \( -name '*.srec' \
834 -o -name '*.bin' -o -name u-boot.img \) \
835 -print0 | xargs -0 rm -f
ffda586f 836 @rm -f $(OBJS) $(obj)*.bak $(obj)ctags $(obj)etags $(obj)TAGS \
5013c09f 837 $(obj)cscope.* $(obj)*.*~
4e0fbb98 838 @rm -f $(obj)u-boot $(obj)u-boot.map $(obj)u-boot.hex $(ALL-y)
aa0c7a86 839 @rm -f $(obj)u-boot.kwb
5d898a00 840 @rm -f $(obj)u-boot.pbl
c5fb70c9 841 @rm -f $(obj)u-boot.imx
ba597609 842 @rm -f $(obj)u-boot-with-spl.imx
7d5a5c79 843 @rm -f $(obj)u-boot-with-nand-spl.imx
7816f2cf 844 @rm -f $(obj)u-boot.ubl
d36d8859 845 @rm -f $(obj)u-boot.ais
bbb0b128 846 @rm -f $(obj)u-boot.dtb
30b9b932 847 @rm -f $(obj)u-boot.sb
714dc001 848 @rm -f $(obj)u-boot.bd
94aebe6c 849 @rm -f $(obj)u-boot.spr
97b24d3d
MV
850 @rm -f $(obj)nand_spl/{u-boot.{lds,lst},System.map}
851 @rm -f $(obj)nand_spl/{u-boot-nand_spl.lds,u-boot-spl,u-boot-spl.map}
852 @rm -f $(obj)spl/{u-boot-spl,u-boot-spl.bin,u-boot-spl.map}
ef123c52 853 @rm -f $(obj)spl/u-boot-spl.lds
3aa29de0
YZ
854 @rm -f $(obj)tpl/{u-boot-tpl,u-boot-tpl.bin,u-boot-tpl.map}
855 @rm -f $(obj)tpl/u-boot-spl.lds
94bcfe52 856 @rm -f $(obj)MLO MLO.byteswap
a3cbc396 857 @rm -f $(obj)SPL
8b425b3f 858 @rm -f $(obj)tools/xway-swap-bytes
a9d8bc98 859 @rm -fr $(obj)include/asm/proc $(obj)include/asm/arch $(obj)include/asm
16a354f9 860 @rm -fr $(obj)include/generated
a958b663 861 @[ ! -d $(obj)nand_spl ] || find $(obj)nand_spl -name "*" -type l -print | xargs rm -f
bbb0b128 862 @rm -f $(obj)dts/*.tmp
6d660e77 863 @rm -f $(obj)spl/u-boot-spl{,-pad}.ais
f9328639 864
f9328639
MB
865mrproper \
866distclean: clobber unconfig
afd077bd 867ifneq ($(OBJTREE),$(SRCTREE))
ae6d1056 868 rm -rf $(obj)*
f9328639 869endif
7ebf7443
WD
870
871backup:
872 F=`basename $(TOPDIR)` ; cd .. ; \
d6b93714 873 gtar --force-local -zcvf `LC_ALL=C date "+$$F-%Y-%m-%d-%T.tar.gz"` $$F
7ebf7443
WD
874
875#########################################################################