Makefile 27.8 KB
Newer Older
W
wdenk 已提交
1
#
2
# (C) Copyright 2000-2013
W
wdenk 已提交
3 4
# Wolfgang Denk, DENX Software Engineering, wd@denx.de.
#
5
# SPDX-License-Identifier:	GPL-2.0+
W
wdenk 已提交
6 7
#

T
Tom Rini 已提交
8
VERSION = 2013
T
Tom Rini 已提交
9
PATCHLEVEL = 07
W
Wolfgang Denk 已提交
10
SUBLEVEL =
T
Tom Rini 已提交
11
EXTRAVERSION =
12
ifneq "$(SUBLEVEL)" ""
13
U_BOOT_VERSION = $(VERSION).$(PATCHLEVEL).$(SUBLEVEL)$(EXTRAVERSION)
14 15 16
else
U_BOOT_VERSION = $(VERSION).$(PATCHLEVEL)$(EXTRAVERSION)
endif
17 18
TIMESTAMP_FILE = $(obj)include/generated/timestamp_autogenerated.h
VERSION_FILE = $(obj)include/generated/version_autogenerated.h
19

W
wdenk 已提交
20
HOSTARCH := $(shell uname -m | \
G
Graeme Russ 已提交
21
	sed -e s/i.86/x86/ \
W
wdenk 已提交
22 23 24
	    -e s/sun4u/sparc64/ \
	    -e s/arm.*/arm/ \
	    -e s/sa110/arm/ \
K
Kumar Gala 已提交
25 26
	    -e s/ppc64/powerpc/ \
	    -e s/ppc/powerpc/ \
N
Nobuhiro Iwamatsu 已提交
27 28
	    -e s/macppc/powerpc/\
	    -e s/sh.*/sh/)
W
wdenk 已提交
29

30
HOSTOS := $(shell uname -s | tr '[:upper:]' '[:lower:]' | \
W
wdenk 已提交
31 32
	    sed -e 's/\(cygwin\).*/cygwin/')

33
export	HOSTARCH HOSTOS
W
wdenk 已提交
34 35 36 37

# Deal with colliding definitions from tcsh etc.
VENDOR=

38 39 40 41 42 43 44 45
#########################################################################
# Allow for silent builds
ifeq (,$(findstring s,$(MAKEFLAGS)))
XECHO = echo
else
XECHO = :
endif

W
wdenk 已提交
46
#########################################################################
47 48 49
#
# U-boot build supports producing a object files to the separate external
# directory. Two use cases are supported:
50
#
51 52 53 54 55 56 57 58 59 60
# 1) Add O= to the make command line
# 'make O=/tmp/build all'
#
# 2) Set environement variable BUILD_DIR to point to the desired location
# 'export BUILD_DIR=/tmp/build'
# 'make'
#
# The second approach can also be used with a MAKEALL script
# 'export BUILD_DIR=/tmp/build'
# './MAKEALL'
61
#
62
# Command line 'O=' setting overrides BUILD_DIR environent variable.
63
#
64 65
# When none of the above methods is used the local build is performed and
# the object files are placed in the source directory.
66
#
67 68 69 70 71 72 73

ifdef O
ifeq ("$(origin O)", "command line")
BUILD_DIR := $(O)
endif
endif

74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91
# Call a source code checker (by default, "sparse") as part of the
# C compilation.
#
# Use 'make C=1' to enable checking of re-compiled files.
#
# See the linux kernel file "Documentation/sparse.txt" for more details,
# including where to get the "sparse" utility.

ifdef C
ifeq ("$(origin C)", "command line")
CHECKSRC := $(C)
endif
endif
ifndef CHECKSRC
  CHECKSRC = 0
endif
export CHECKSRC

92 93
ifneq ($(BUILD_DIR),)
saved-output := $(BUILD_DIR)
94 95 96 97

# Attempt to create a output directory.
$(shell [ -d ${BUILD_DIR} ] || mkdir -p ${BUILD_DIR})

S
Stefan Roese 已提交
98
# Verify if it was successful.
99 100 101 102 103
BUILD_DIR := $(shell cd $(BUILD_DIR) && /bin/pwd)
$(if $(BUILD_DIR),,$(error output directory "$(saved-output)" does not exist))
endif # ifneq ($(BUILD_DIR),)

OBJTREE		:= $(if $(BUILD_DIR),$(BUILD_DIR),$(CURDIR))
104
SPLTREE		:= $(OBJTREE)/spl
105 106 107
SRCTREE		:= $(CURDIR)
TOPDIR		:= $(SRCTREE)
LNDIR		:= $(OBJTREE)
108
export	TOPDIR SRCTREE OBJTREE SPLTREE
109 110 111

MKCONFIG	:= $(SRCTREE)/mkconfig
export MKCONFIG
W
wdenk 已提交
112

113
ifneq ($(OBJTREE),$(SRCTREE))
W
Wolfgang Denk 已提交
114
REMOTE_BUILD	:= 1
115 116 117 118 119 120 121 122 123 124 125 126
export REMOTE_BUILD
endif

# $(obj) and (src) are defined in config.mk but here in main Makefile
# we also need them before config.mk is included which is the case for
# some targets like unconfig, clean, clobber, distclean, etc.
ifneq ($(OBJTREE),$(SRCTREE))
obj := $(OBJTREE)/
src := $(SRCTREE)/
else
obj :=
src :=
127
endif
128 129
export obj src

W
Wolfgang Denk 已提交
130 131 132
# Make sure CDPATH settings don't interfere
unexport CDPATH

W
wdenk 已提交
133 134
#########################################################################

135 136
# The "tools" are needed early, so put this first
# Don't include stuff already done in $(LIBS)
137 138 139 140 141
# The "examples" conditionally depend on U-Boot (say, when USE_PRIVATE_LIBGCC
# is "yes"), so compile examples after U-Boot is compiled.
SUBDIR_TOOLS = tools
SUBDIR_EXAMPLES = examples/standalone examples/api
SUBDIRS = $(SUBDIR_TOOLS)
142

143
.PHONY : $(SUBDIRS) $(VERSION_FILE) $(TIMESTAMP_FILE)
144

145
ifeq ($(obj)include/config.mk,$(wildcard $(obj)include/config.mk))
W
wdenk 已提交
146

147 148 149 150 151 152 153
# Include autoconf.mk before config.mk so that the config options are available
# to all top level build files.  We need the dummy all: target to prevent the
# dependency target in autoconf.mk.dep from being the default.
all:
sinclude $(obj)include/autoconf.mk.dep
sinclude $(obj)include/autoconf.mk

154 155 156 157
ifndef CONFIG_SANDBOX
SUBDIRS += $(SUBDIR_EXAMPLES)
endif

W
wdenk 已提交
158
# load ARCH, BOARD, and CPU configuration
159
include $(obj)include/config.mk
W
wdenk 已提交
160
export	ARCH CPU BOARD VENDOR SOC
161

162
# set default to nothing for native builds
W
Wolfgang Denk 已提交
163
ifeq ($(HOSTARCH),$(ARCH))
164
CROSS_COMPILE ?=
W
wdenk 已提交
165
endif
W
wdenk 已提交
166

167 168 169
# load other configuration
include $(TOPDIR)/config.mk

170 171 172 173 174 175 176 177 178 179
# Targets which don't build the source code
NON_BUILD_TARGETS = backup clean clobber distclean mkproper tidy unconfig

# Only do the generic board check when actually building, not configuring
ifeq ($(filter $(NON_BUILD_TARGETS),$(MAKECMDGOALS)),)
ifeq ($(findstring _config,$(MAKECMDGOALS)),)
$(CHECK_GENERIC_BOARD)
endif
endif

180 181 182 183
# If board code explicitly specified LDSCRIPT or CONFIG_SYS_LDSCRIPT, use
# that (or fail if absent).  Otherwise, search for a linker script in a
# standard location.

184 185
LDSCRIPT_MAKEFILE_DIR = $(dir $(LDSCRIPT))

186 187 188 189 190 191 192 193
ifndef LDSCRIPT
	#LDSCRIPT := $(TOPDIR)/board/$(BOARDDIR)/u-boot.lds.debug
	ifdef CONFIG_SYS_LDSCRIPT
		# need to strip off double quotes
		LDSCRIPT := $(subst ",,$(CONFIG_SYS_LDSCRIPT))
	endif
endif

194
# If there is no specified link script, we look in a number of places for it
195 196 197 198 199 200 201 202 203 204 205 206 207
ifndef LDSCRIPT
	ifeq ($(CONFIG_NAND_U_BOOT),y)
		LDSCRIPT := $(TOPDIR)/board/$(BOARDDIR)/u-boot-nand.lds
		ifeq ($(wildcard $(LDSCRIPT)),)
			LDSCRIPT := $(TOPDIR)/$(CPUDIR)/u-boot-nand.lds
		endif
	endif
	ifeq ($(wildcard $(LDSCRIPT)),)
		LDSCRIPT := $(TOPDIR)/board/$(BOARDDIR)/u-boot.lds
	endif
	ifeq ($(wildcard $(LDSCRIPT)),)
		LDSCRIPT := $(TOPDIR)/$(CPUDIR)/u-boot.lds
	endif
208 209 210 211 212
	ifeq ($(wildcard $(LDSCRIPT)),)
		LDSCRIPT := $(TOPDIR)/arch/$(ARCH)/cpu/u-boot.lds
		# We don't expect a Makefile here
		LDSCRIPT_MAKEFILE_DIR =
	endif
213 214 215 216 217
	ifeq ($(wildcard $(LDSCRIPT)),)
$(error could not find linker script)
	endif
endif

W
wdenk 已提交
218 219 220
#########################################################################
# U-Boot objects....order is important (i.e. start must be first)

P
Peter Tyser 已提交
221
OBJS  = $(CPUDIR)/start.o
W
wdenk 已提交
222
ifeq ($(CPU),ppc4xx)
P
Peter Tyser 已提交
223
OBJS += $(CPUDIR)/resetvec.o
W
wdenk 已提交
224
endif
W
wdenk 已提交
225
ifeq ($(CPU),mpc85xx)
P
Peter Tyser 已提交
226
OBJS += $(CPUDIR)/resetvec.o
W
wdenk 已提交
227
endif
W
wdenk 已提交
228

229
OBJS := $(addprefix $(obj),$(OBJS))
230

231
HAVE_VENDOR_COMMON_LIB = $(if $(wildcard board/$(VENDOR)/common/Makefile),y,n)
232

233
LIBS-y += lib/libgeneric.o
234
LIBS-y += lib/rsa/librsa.o
235 236 237
LIBS-y += lib/lzma/liblzma.o
LIBS-y += lib/lzo/liblzo.o
LIBS-y += lib/zlib/libz.o
238 239
LIBS-$(CONFIG_TIZEN) += lib/tizen/libtizen.o
LIBS-$(HAVE_VENDOR_COMMON_LIB) += board/$(VENDOR)/common/lib$(VENDOR).o
240
LIBS-y += $(CPUDIR)/lib$(CPU).o
W
wdenk 已提交
241
ifdef SOC
242
LIBS-y += $(CPUDIR)/$(SOC)/lib$(SOC).o
W
wdenk 已提交
243
endif
S
Stefan Roese 已提交
244
ifeq ($(CPU),ixp)
245
LIBS-y += drivers/net/npe/libnpe.o
S
Stefan Roese 已提交
246
endif
247
LIBS-$(CONFIG_OF_EMBED) += dts/libdts.o
248
LIBS-y += arch/$(ARCH)/lib/lib$(ARCH).o
249 250
LIBS-y += fs/libfs.o \
	fs/cbfs/libcbfs.o \
251
	fs/cramfs/libcramfs.o \
U
Uma Shankar 已提交
252 253 254 255 256
	fs/ext4/libext4fs.o \
	fs/fat/libfat.o \
	fs/fdos/libfdos.o \
	fs/jffs2/libjffs2.o \
	fs/reiserfs/libreiserfs.o \
S
Simon Glass 已提交
257
	fs/sandbox/libsandboxfs.o \
U
Uma Shankar 已提交
258 259 260
	fs/ubifs/libubifs.o \
	fs/yaffs2/libyaffs2.o \
	fs/zfs/libzfs.o
261 262 263 264
LIBS-y += net/libnet.o
LIBS-y += disk/libdisk.o
LIBS-y += drivers/bios_emulator/libatibiosemu.o
LIBS-y += drivers/block/libblock.o
265
LIBS-$(CONFIG_BOOTCOUNT_LIMIT) += drivers/bootcount/libbootcount.o
266
LIBS-y += drivers/crypto/libcrypto.o
267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283
LIBS-y += drivers/dma/libdma.o
LIBS-y += drivers/fpga/libfpga.o
LIBS-y += drivers/gpio/libgpio.o
LIBS-y += drivers/hwmon/libhwmon.o
LIBS-y += drivers/i2c/libi2c.o
LIBS-y += drivers/input/libinput.o
LIBS-y += drivers/misc/libmisc.o
LIBS-y += drivers/mmc/libmmc.o
LIBS-y += drivers/mtd/libmtd.o
LIBS-y += drivers/mtd/nand/libnand.o
LIBS-y += drivers/mtd/onenand/libonenand.o
LIBS-y += drivers/mtd/ubi/libubi.o
LIBS-y += drivers/mtd/spi/libspi_flash.o
LIBS-y += drivers/net/libnet.o
LIBS-y += drivers/net/phy/libphy.o
LIBS-y += drivers/pci/libpci.o
LIBS-y += drivers/pcmcia/libpcmcia.o
284
LIBS-y += drivers/power/libpower.o \
285
	drivers/power/fuel_gauge/libfuel_gauge.o \
286 287
	drivers/power/pmic/libpmic.o \
	drivers/power/battery/libbattery.o
288
LIBS-y += drivers/spi/libspi.o
289
LIBS-y += drivers/dfu/libdfu.o
D
Dave Liu 已提交
290
ifeq ($(CPU),mpc83xx)
291 292 293
LIBS-y += drivers/qe/libqe.o
LIBS-y += arch/powerpc/cpu/mpc8xxx/ddr/libddr.o
LIBS-y += arch/powerpc/cpu/mpc8xxx/lib8xxx.o
D
Dave Liu 已提交
294
endif
A
Andy Fleming 已提交
295
ifeq ($(CPU),mpc85xx)
296 297 298 299
LIBS-y += drivers/qe/libqe.o
LIBS-y += drivers/net/fm/libfm.o
LIBS-y += arch/powerpc/cpu/mpc8xxx/ddr/libddr.o
LIBS-y += arch/powerpc/cpu/mpc8xxx/lib8xxx.o
300 301
endif
ifeq ($(CPU),mpc86xx)
302 303
LIBS-y += arch/powerpc/cpu/mpc8xxx/ddr/libddr.o
LIBS-y += arch/powerpc/cpu/mpc8xxx/lib8xxx.o
A
Andy Fleming 已提交
304
endif
305 306
LIBS-y += drivers/rtc/librtc.o
LIBS-y += drivers/serial/libserial.o
R
Rajeshwari Shinde 已提交
307
LIBS-y += drivers/sound/libsound.o
308
LIBS-y += drivers/tpm/libtpm.o
309 310 311 312 313
LIBS-y += drivers/twserial/libtws.o
LIBS-y += drivers/usb/eth/libusb_eth.o
LIBS-y += drivers/usb/gadget/libusb_gadget.o
LIBS-y += drivers/usb/host/libusb_host.o
LIBS-y += drivers/usb/musb/libusb_musb.o
I
Ilya Yanok 已提交
314
LIBS-y += drivers/usb/musb-new/libusb_musb-new.o
315 316 317 318 319 320 321 322 323
LIBS-y += drivers/usb/phy/libusb_phy.o
LIBS-y += drivers/usb/ulpi/libusb_ulpi.o
LIBS-y += drivers/video/libvideo.o
LIBS-y += drivers/watchdog/libwatchdog.o
LIBS-y += common/libcommon.o
LIBS-y += lib/libfdt/libfdt.o
LIBS-y += api/libapi.o
LIBS-y += post/libpost.o
LIBS-y += test/libtest.o
324

L
Lokesh Vutla 已提交
325
ifneq ($(CONFIG_OMAP_COMMON),)
326
LIBS-y += $(CPUDIR)/omap-common/libomap-common.o
C
Chandan Nath 已提交
327
endif
328

329
ifneq (,$(filter $(SOC), mx25 mx27 mx5 mx6 mx31 mx35 mxs vf610))
330
LIBS-y += arch/$(ARCH)/imx-common/libimx-common.o
331 332
endif

333
ifeq ($(SOC),s5pc1xx)
334
LIBS-y += $(CPUDIR)/s5p-common/libs5p-common.o
335
endif
336
ifeq ($(SOC),exynos)
337
LIBS-y += $(CPUDIR)/s5p-common/libs5p-common.o
338
endif
339
ifneq ($(CONFIG_TEGRA),)
340
LIBS-y += arch/$(ARCH)/cpu/$(SOC)-common/lib$(SOC)-common.o
341 342
LIBS-y += arch/$(ARCH)/cpu/tegra-common/libcputegra-common.o
LIBS-y += $(CPUDIR)/tegra-common/libtegra-common.o
343
endif
344

345
LIBS := $(addprefix $(obj),$(sort $(LIBS-y)))
346
.PHONY : $(LIBS)
W
wdenk 已提交
347

348
LIBBOARD = board/$(BOARDDIR)/lib$(BOARD).o
W
Wolfgang Denk 已提交
349 350
LIBBOARD := $(addprefix $(obj),$(LIBBOARD))

W
wdenk 已提交
351
# Add GCC lib
352 353
ifdef USE_PRIVATE_LIBGCC
ifeq ("$(USE_PRIVATE_LIBGCC)", "yes")
354
PLATFORM_LIBGCC = $(OBJTREE)/arch/$(ARCH)/lib/libgcc.o
355 356 357 358
else
PLATFORM_LIBGCC = -L $(USE_PRIVATE_LIBGCC) -lgcc
endif
else
W
Wolfgang Denk 已提交
359
PLATFORM_LIBGCC := -L $(shell dirname `$(CC) $(CFLAGS) -print-libgcc-file-name`) -lgcc
360 361 362
endif
PLATFORM_LIBS += $(PLATFORM_LIBGCC)
export PLATFORM_LIBS
W
wdenk 已提交
363

364 365 366 367 368
# Special flags for CPP when processing the linker script.
# Pass the version down so we can handle backwards compatibility
# on the fly.
LDPPFLAGS += \
	-include $(TOPDIR)/include/u-boot/u-boot.lds.h \
369
	-DCPUDIR=$(CPUDIR) \
370 371 372
	$(shell $(LD) --version | \
	  sed -ne 's/GNU ld version \([0-9][0-9]*\)\.\([0-9][0-9]*\).*/-DLD_MAJOR=\1 -DLD_MINOR=\2/p')

373
__OBJS := $(subst $(obj),,$(OBJS))
W
Wolfgang Denk 已提交
374
__LIBS := $(subst $(obj),,$(LIBS)) $(subst $(obj),,$(LIBBOARD))
375

376
#########################################################################
W
wdenk 已提交
377 378
#########################################################################

379 380 381
ifneq ($(CONFIG_BOARD_SIZE_LIMIT),)
BOARD_SIZE_CHECK = \
	@actual=`wc -c $@ | awk '{print $$1}'`; \
382
	limit=`printf "%d" $(CONFIG_BOARD_SIZE_LIMIT)`; \
383
	if test $$actual -gt $$limit; then \
384 385 386 387
		echo "$@ exceeds file size limit:" >&2 ; \
		echo "  limit:  $$limit bytes" >&2 ; \
		echo "  actual: $$actual bytes" >&2 ; \
		echo "  excess: $$((actual - limit)) bytes" >&2; \
388 389 390 391 392 393
		exit 1; \
	fi
else
BOARD_SIZE_CHECK =
endif

394
# Always append ALL so that arch config.mk's can add custom ones
395
ALL-y += $(obj)u-boot.srec $(obj)u-boot.bin $(obj)System.map
396

397 398
ALL-$(CONFIG_NAND_U_BOOT) += $(obj)u-boot-nand.bin
ALL-$(CONFIG_ONENAND_U_BOOT) += $(obj)u-boot-onenand.bin
399
ALL-$(CONFIG_SPL) += $(obj)spl/u-boot-spl.bin
400
ALL-$(CONFIG_OF_SEPARATE) += $(obj)u-boot.dtb $(obj)u-boot-dtb.bin
401 402 403
ifneq ($(CONFIG_SPL_TARGET),)
ALL-$(CONFIG_SPL) += $(obj)$(subst ",,$(CONFIG_SPL_TARGET))
endif
404

405
# enable combined SPL/u-boot/dtb rules for tegra
406
ifneq ($(CONFIG_TEGRA),)
407 408 409 410 411 412 413
ifeq ($(CONFIG_OF_SEPARATE),y)
ALL-y += $(obj)u-boot-dtb-tegra.bin
else
ALL-y += $(obj)u-boot-nodtb-tegra.bin
endif
endif

414
all:		$(ALL-y) $(SUBDIR_EXAMPLES)
W
wdenk 已提交
415

416 417 418 419 420 421 422
$(obj)u-boot.dtb:	$(obj)u-boot
		$(MAKE) -C dts binary
		mv $(obj)dts/dt.dtb $@

$(obj)u-boot-dtb.bin:	$(obj)u-boot.bin $(obj)u-boot.dtb
		cat $^ >$@

423
$(obj)u-boot.hex:	$(obj)u-boot
W
wdenk 已提交
424 425
		$(OBJCOPY) ${OBJCFLAGS} -O ihex $< $@

426
$(obj)u-boot.srec:	$(obj)u-boot
427
		$(OBJCOPY) -O srec $< $@
W
wdenk 已提交
428

429
$(obj)u-boot.bin:	$(obj)u-boot
W
wdenk 已提交
430
		$(OBJCOPY) ${OBJCFLAGS} -O binary $< $@
431
		$(BOARD_SIZE_CHECK)
W
wdenk 已提交
432

433
$(obj)u-boot.ldr:	$(obj)u-boot
434
		$(CREATE_LDR_ENV)
435
		$(LDR) -T $(CONFIG_BFIN_CPU) -c $@ $< $(LDR_FLAGS)
436
		$(BOARD_SIZE_CHECK)
437 438 439 440 441 442 443

$(obj)u-boot.ldr.hex:	$(obj)u-boot.ldr
		$(OBJCOPY) ${OBJCFLAGS} -O ihex $< $@ -I binary

$(obj)u-boot.ldr.srec:	$(obj)u-boot.ldr
		$(OBJCOPY) ${OBJCFLAGS} -O srec $< $@ -I binary

444 445 446 447 448 449 450 451
#
# U-Boot entry point, needed for booting of full-blown U-Boot
# from the SPL U-Boot version.
#
ifndef CONFIG_SYS_UBOOT_START
CONFIG_SYS_UBOOT_START := 0
endif

452
$(obj)u-boot.img:	$(obj)u-boot.bin
453
		$(obj)tools/mkimage -A $(ARCH) -T firmware -C none \
454 455
		-O u-boot -a $(CONFIG_SYS_TEXT_BASE) \
		-e $(CONFIG_SYS_UBOOT_START) \
456
		-n $(shell sed -n -e 's/.*U_BOOT_VERSION//p' $(VERSION_FILE) | \
457 458 459
			sed -e 's/"[	 ]*$$/ for $(BOARD) board"/') \
		-d $< $@

460 461
$(obj)u-boot.imx: $(obj)u-boot.bin depend
		$(MAKE) -C $(SRCTREE)/arch/arm/imx-common $(OBJTREE)/u-boot.imx
462

463
$(obj)u-boot.kwb:       $(obj)u-boot.bin
464
		$(obj)tools/mkimage -n $(CONFIG_SYS_KWD_CONFIG) -T kwbimage \
465
		-a $(CONFIG_SYS_TEXT_BASE) -e $(CONFIG_SYS_TEXT_BASE) -d $< $@
466

467 468 469 470 471
$(obj)u-boot.pbl:	$(obj)u-boot.bin
		$(obj)tools/mkimage -n $(CONFIG_PBLRCW_CONFIG) \
		-R $(CONFIG_PBLPBI_CONFIG) -T pblimage \
		-d $< $@

472
$(obj)u-boot.sha1:	$(obj)u-boot.bin
473
		$(obj)tools/ubsha1 $(obj)u-boot.bin
474

475
$(obj)u-boot.dis:	$(obj)u-boot
W
wdenk 已提交
476 477
		$(OBJDUMP) -d $< > $@

478 479


480
$(obj)u-boot-with-spl.bin: $(obj)spl/u-boot-spl.bin $(obj)u-boot.bin
481 482
		$(OBJCOPY) ${OBJCFLAGS} --pad-to=$(CONFIG_SPL_PAD_TO) \
			-I binary -O binary $< $(obj)spl/u-boot-spl-pad.bin
483
		cat $(obj)spl/u-boot-spl-pad.bin $(obj)u-boot.bin > $@
484
		rm $(obj)spl/u-boot-spl-pad.bin
485

486 487 488 489
$(obj)u-boot-with-spl.imx: $(obj)spl/u-boot-spl.bin $(obj)u-boot.bin
		$(MAKE) -C $(SRCTREE)/arch/arm/imx-common \
			$(OBJTREE)/u-boot-with-spl.imx

490 491 492 493
$(obj)u-boot-with-nand-spl.imx: $(obj)spl/u-boot-spl.bin $(obj)u-boot.bin
		$(MAKE) -C $(SRCTREE)/arch/arm/imx-common \
			$(OBJTREE)/u-boot-with-nand-spl.imx

494
$(obj)u-boot.ubl:       $(obj)u-boot-with-spl.bin
495
		$(obj)tools/mkimage -n $(UBL_CONFIG) -T ublimage \
496
		-e $(CONFIG_SYS_TEXT_BASE) -d $< $(obj)u-boot.ubl
497

498
$(obj)u-boot.ais:       $(obj)spl/u-boot-spl.bin $(obj)u-boot.img
499 500
		$(obj)tools/mkimage -s -n $(if $(CONFIG_AIS_CONFIG_FILE),$(CONFIG_AIS_CONFIG_FILE),"/dev/null") \
			-T aisimage \
501 502 503 504 505 506
			-e $(CONFIG_SPL_TEXT_BASE) \
			-d $(obj)spl/u-boot-spl.bin \
			$(obj)spl/u-boot-spl.ais
		$(OBJCOPY) ${OBJCFLAGS} -I binary \
			--pad-to=$(CONFIG_SPL_MAX_SIZE) -O binary \
			$(obj)spl/u-boot-spl.ais $(obj)spl/u-boot-spl-pad.ais
507
		cat $(obj)spl/u-boot-spl-pad.ais $(obj)u-boot.img > \
508 509
			$(obj)u-boot.ais

510

511
$(obj)u-boot.sb:       $(obj)u-boot.bin $(obj)spl/u-boot-spl.bin
512
		$(MAKE) -C $(SRCTREE)/$(CPUDIR)/$(SOC)/ $(OBJTREE)/u-boot.sb
513

514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529
# On x600 (SPEAr600) U-Boot is appended to U-Boot SPL.
# Both images are created using mkimage (crc etc), so that the ROM
# bootloader can check its integrity. Padding needs to be done to the
# SPL image (with mkimage header) and not the binary. Otherwise the resulting image
# which is loaded/copied by the ROM bootloader to SRAM doesn't fit.
# The resulting image containing both U-Boot images is called u-boot.spr
$(obj)u-boot.spr:	$(obj)u-boot.img $(obj)spl/u-boot-spl.bin
		$(obj)tools/mkimage -A $(ARCH) -T firmware -C none \
		-a $(CONFIG_SPL_TEXT_BASE) -e $(CONFIG_SPL_TEXT_BASE) -n XLOADER \
		-d $(obj)spl/u-boot-spl.bin $(obj)spl/u-boot-spl.img
		tr "\000" "\377" < /dev/zero | dd ibs=1 count=$(CONFIG_SPL_PAD_TO) \
			of=$(obj)spl/u-boot-spl-pad.img 2>/dev/null
		dd if=$(obj)spl/u-boot-spl.img of=$(obj)spl/u-boot-spl-pad.img \
			conv=notrunc 2>/dev/null
		cat $(obj)spl/u-boot-spl-pad.img $(obj)u-boot.img > $@

530
ifneq ($(CONFIG_TEGRA),)
531
$(obj)u-boot-nodtb-tegra.bin: $(obj)spl/u-boot-spl.bin $(obj)u-boot.bin
532
		$(OBJCOPY) ${OBJCFLAGS} --pad-to=$(CONFIG_SYS_TEXT_BASE) -O binary $(obj)spl/u-boot-spl $(obj)spl/u-boot-spl-pad.bin
533
		cat $(obj)spl/u-boot-spl-pad.bin $(obj)u-boot.bin > $@
534
		rm $(obj)spl/u-boot-spl-pad.bin
535 536 537 538 539

ifeq ($(CONFIG_OF_SEPARATE),y)
$(obj)u-boot-dtb-tegra.bin: $(obj)u-boot-nodtb-tegra.bin $(obj)u-boot.dtb
		cat $(obj)u-boot-nodtb-tegra.bin $(obj)u-boot.dtb > $@
endif
540 541
endif

542 543 544
$(obj)u-boot-img.bin: $(obj)spl/u-boot-spl.bin $(obj)u-boot.img
		cat $(obj)spl/u-boot-spl.bin $(obj)u-boot.img > $@

545 546 547 548 549 550 551 552 553 554 555 556
# PPC4xx needs the SPL at the end of the image, since the reset vector
# is located at 0xfffffffc. So we can't use the "u-boot-img.bin" target
# and need to introduce a new build target with the full blown U-Boot
# at the start padded up to the start of the SPL image. And then concat
# the SPL image to the end.
$(obj)u-boot-img-spl-at-end.bin: $(obj)spl/u-boot-spl.bin $(obj)u-boot.img
		tr "\000" "\377" < /dev/zero | dd ibs=1 count=$(CONFIG_UBOOT_PAD_TO) \
			of=$(obj)u-boot-pad.img 2>/dev/null
		dd if=$(obj)u-boot.img of=$(obj)u-boot-pad.img \
			conv=notrunc 2>/dev/null
		cat $(obj)u-boot-pad.img $(obj)spl/u-boot-spl.bin > $@

557 558 559 560 561 562
ifeq ($(CONFIG_SANDBOX),y)
GEN_UBOOT = \
		cd $(LNDIR) && $(CC) $(SYMS) -T $(obj)u-boot.lds \
			-Wl,--start-group $(__LIBS) -Wl,--end-group \
			$(PLATFORM_LIBS) -Wl,-Map -Wl,u-boot.map -o u-boot
else
563
GEN_UBOOT = \
564
		cd $(LNDIR) && $(LD) $(LDFLAGS) $(LDFLAGS_$(@F)) \
565
			$(__OBJS) \
566
			--start-group $(__LIBS) --end-group $(PLATFORM_LIBS) \
W
wdenk 已提交
567
			-Map u-boot.map -o u-boot
568 569
endif

570
$(obj)u-boot:	depend \
571
		$(SUBDIR_TOOLS) $(OBJS) $(LIBBOARD) $(LIBS) $(LDSCRIPT) $(obj)u-boot.lds
572 573
		$(GEN_UBOOT)
ifeq ($(CONFIG_KALLSYMS),y)
574
		smap=`$(call SYSTEM_MAP,$(obj)u-boot) | \
575 576 577
			awk '$$2 ~ /[tTwW]/ {printf $$1 $$3 "\\\\000"}'` ; \
		$(CC) $(CFLAGS) -DSYSTEM_MAP="\"$${smap}\"" \
			-c common/system_map.c -o $(obj)common/system_map.o
578 579
		$(GEN_UBOOT) $(obj)common/system_map.o
endif
W
wdenk 已提交
580

581
$(OBJS):	depend
P
Peter Tyser 已提交
582
		$(MAKE) -C $(CPUDIR) $(if $(REMOTE_BUILD),$@,$(notdir $@))
583

584
$(LIBS):	depend $(SUBDIR_TOOLS)
585
		$(MAKE) -C $(dir $(subst $(obj),,$@))
W
wdenk 已提交
586

587
$(LIBBOARD):	depend $(LIBS)
W
Wolfgang Denk 已提交
588 589
		$(MAKE) -C $(dir $(subst $(obj),,$@))

590
$(SUBDIRS):	depend
W
wdenk 已提交
591
		$(MAKE) -C $@ all
W
wdenk 已提交
592

593 594
$(SUBDIR_EXAMPLES): $(obj)u-boot

595
$(LDSCRIPT):	depend
596 597
		$(MAKE) -C $(dir $@) $(notdir $@)

598
$(obj)u-boot.lds: $(LDSCRIPT)
599
		$(CPP) $(CPPFLAGS) $(LDPPFLAGS) -ansi -D__ASSEMBLY__ -P - <$< >$@
600

601
nand_spl:	$(TIMESTAMP_FILE) $(VERSION_FILE) depend
602
		$(MAKE) -C nand_spl/board/$(BOARDDIR) all
603

604
$(obj)u-boot-nand.bin:	nand_spl $(obj)u-boot.bin
605
		cat $(obj)nand_spl/u-boot-spl-16k.bin $(obj)u-boot.bin > $(obj)u-boot-nand.bin
606

607
$(obj)spl/u-boot-spl.bin:	$(SUBDIR_TOOLS) depend
608 609
		$(MAKE) -C spl all

610
updater:
M
Mike Frysinger 已提交
611
		$(MAKE) -C tools/updater all
612

D
Daniel Hobi 已提交
613 614
# Explicitly make _depend in subdirs containing multiple targets to prevent
# parallel sub-makes creating .depend files simultaneously.
615 616
depend dep:	$(TIMESTAMP_FILE) $(VERSION_FILE) \
		$(obj)include/autoconf.mk \
617 618
		$(obj)include/generated/generic-asm-offsets.h \
		$(obj)include/generated/asm-offsets.h
619
		for dir in $(SUBDIRS) $(CPUDIR) $(LDSCRIPT_MAKEFILE_DIR) ; do \
D
Daniel Hobi 已提交
620
			$(MAKE) -C $$dir _depend ; done
W
wdenk 已提交
621

L
Li Yang 已提交
622 623
TAG_SUBDIRS = $(SUBDIRS)
TAG_SUBDIRS += $(dir $(__LIBS))
624 625
TAG_SUBDIRS += include

626 627 628
FIND := find
FINDFLAGS := -L

629 630 631 632 633
checkstack:
		$(CROSS_COMPILE)objdump -d $(obj)u-boot \
			`$(FIND) $(obj) -name u-boot-spl -print` | \
			perl $(src)tools/checkstack.pl $(ARCH)

634
tags ctags:
635
		ctags -w -o $(obj)ctags `$(FIND) $(FINDFLAGS) $(TAG_SUBDIRS) \
L
Li Yang 已提交
636
						-name '*.[chS]' -print`
W
wdenk 已提交
637 638

etags:
639
		etags -a -o $(obj)etags `$(FIND) $(FINDFLAGS) $(TAG_SUBDIRS) \
L
Li Yang 已提交
640
						-name '*.[chS]' -print`
L
Li Yang 已提交
641
cscope:
642 643
		$(FIND) $(FINDFLAGS) $(TAG_SUBDIRS) -name '*.[chS]' -print > \
						cscope.files
L
Li Yang 已提交
644
		cscope -b -q -k
W
wdenk 已提交
645

646 647
SYSTEM_MAP = \
		$(NM) $1 | \
W
wdenk 已提交
648
		grep -v '\(compiled\)\|\(\.o$$\)\|\( [aUw] \)\|\(\.\.ng$$\)\|\(LASH[RL]DI\)' | \
649 650 651
		LC_ALL=C sort
$(obj)System.map:	$(obj)u-boot
		@$(call SYSTEM_MAP,$<) > $(obj)System.map
W
wdenk 已提交
652

T
Tom Rini 已提交
653 654 655 656 657 658 659
checkthumb:
	@if test $(call cc-version) -lt 0404; then \
		echo -n '*** Your GCC does not produce working '; \
		echo 'binaries in THUMB mode.'; \
		echo '*** Your board is configured for THUMB mode.'; \
		false; \
	fi
660 661 662 663 664 665 666 667 668 669

# GCC 3.x is reported to have problems generating the type of relocation
# that U-Boot wants.
# See http://lists.denx.de/pipermail/u-boot/2012-September/135156.html
checkgcc4:
	@if test $(call cc-version) -lt 0400; then \
		echo -n '*** Your GCC is too old, please upgrade to GCC 4.x or newer'; \
		false; \
	fi

670 671 672 673 674 675
#
# Auto-generate the autoconf.mk file (which is included by all makefiles)
#
# This target actually generates 2 files; autoconf.mk and autoconf.mk.dep.
# the dep file is only include in this top level makefile to determine when
# to regenerate the autoconf.mk file.
676 677
$(obj)include/autoconf.mk.dep: $(obj)include/config.h include/common.h
	@$(XECHO) Generating $@ ; \
678
	set -e ; \
679
	: Generate the dependancies ; \
680
	$(CC) -x c -DDO_DEPS_ONLY -M $(CFLAGS) $(CPPFLAGS) \
681 682 683 684 685
		-MQ $(obj)include/autoconf.mk include/common.h > $@

$(obj)include/autoconf.mk: $(obj)include/config.h
	@$(XECHO) Generating $@ ; \
	set -e ; \
686
	: Extract the config macros ; \
687
	$(CPP) $(CFLAGS) -DDO_DEPS_ONLY -dM include/common.h | \
688 689
		sed -n -f tools/scripts/define2mk.sed > $@.tmp && \
	mv $@.tmp $@
690

691 692 693 694 695 696 697 698 699 700 701 702
$(obj)include/generated/generic-asm-offsets.h:	$(obj)include/autoconf.mk.dep \
	$(obj)lib/asm-offsets.s
	@$(XECHO) Generating $@
	tools/scripts/make-asm-offsets $(obj)lib/asm-offsets.s $@

$(obj)lib/asm-offsets.s:	$(obj)include/autoconf.mk.dep \
	$(src)lib/asm-offsets.c
	@mkdir -p $(obj)lib
	$(CC) -DDO_DEPS_ONLY \
		$(CFLAGS) $(CFLAGS_$(BCURDIR)/$(@F)) $(CFLAGS_$(BCURDIR)) \
		-o $@ $(src)lib/asm-offsets.c -c -S

703 704
$(obj)include/generated/asm-offsets.h:	$(obj)include/autoconf.mk.dep \
	$(obj)$(CPUDIR)/$(SOC)/asm-offsets.s
705
	@$(XECHO) Generating $@
706 707 708 709 710 711 712 713 714 715 716 717
	tools/scripts/make-asm-offsets $(obj)$(CPUDIR)/$(SOC)/asm-offsets.s $@

$(obj)$(CPUDIR)/$(SOC)/asm-offsets.s:	$(obj)include/autoconf.mk.dep
	@mkdir -p $(obj)$(CPUDIR)/$(SOC)
	if [ -f $(src)$(CPUDIR)/$(SOC)/asm-offsets.c ];then \
		$(CC) -DDO_DEPS_ONLY \
		$(CFLAGS) $(CFLAGS_$(BCURDIR)/$(@F)) $(CFLAGS_$(BCURDIR)) \
			-o $@ $(src)$(CPUDIR)/$(SOC)/asm-offsets.c -c -S; \
	else \
		touch $@; \
	fi

W
wdenk 已提交
718
#########################################################################
719
else	# !config.mk
720 721
all $(obj)u-boot.hex $(obj)u-boot.srec $(obj)u-boot.bin \
$(obj)u-boot.img $(obj)u-boot.dis $(obj)u-boot \
722
$(filter-out tools,$(SUBDIRS)) \
M
Mike Frysinger 已提交
723
updater depend dep tags ctags etags cscope $(obj)System.map:
W
wdenk 已提交
724 725
	@echo "System not configured - see README" >&2
	@ exit 1
726

727
tools: $(VERSION_FILE) $(TIMESTAMP_FILE)
M
Mike Frysinger 已提交
728
	$(MAKE) -C $@ all
729
endif	# config.mk
W
wdenk 已提交
730

731 732 733
# ARM relocations should all be R_ARM_RELATIVE.
checkarmreloc: $(obj)u-boot
	@if test "R_ARM_RELATIVE" != \
A
Andreas Bießmann 已提交
734
		"`$(CROSS_COMPILE)readelf -r $< | cut -d ' ' -f 4 | grep R_ARM | sort -u`"; \
735 736 737
		then echo "$< contains relocations other than \
		R_ARM_RELATIVE"; false; fi

738
$(VERSION_FILE):
739
		@mkdir -p $(dir $(VERSION_FILE))
740 741 742 743 744 745 746 747 748 749 750 751
		@( localvers='$(shell $(TOPDIR)/tools/setlocalversion $(TOPDIR))' ; \
		   printf '#define PLAIN_VERSION "%s%s"\n' \
			"$(U_BOOT_VERSION)" "$${localvers}" ; \
		   printf '#define U_BOOT_VERSION "U-Boot %s%s"\n' \
			"$(U_BOOT_VERSION)" "$${localvers}" ; \
		) > $@.tmp
		@( printf '#define CC_VERSION_STRING "%s"\n' \
		 '$(shell $(CC) --version | head -n 1)' )>>  $@.tmp
		@( printf '#define LD_VERSION_STRING "%s"\n' \
		 '$(shell $(LD) -v | head -n 1)' )>>  $@.tmp
		@cmp -s $@ $@.tmp && rm -f $@.tmp || mv -f $@.tmp $@

752 753
$(TIMESTAMP_FILE):
		@mkdir -p $(dir $(TIMESTAMP_FILE))
754 755 756
		@LC_ALL=C date +'#define U_BOOT_DATE "%b %d %C%y"' > $@.tmp
		@LC_ALL=C date +'#define U_BOOT_TIME "%T"' >> $@.tmp
		@cmp -s $@ $@.tmp && rm -f $@.tmp || mv -f $@.tmp $@
757

M
Mike Frysinger 已提交
758 759 760 761
easylogo env gdb:
	$(MAKE) -C tools/$@ all MTD_VERSION=${MTD_VERSION}
gdbtools: gdb

762 763 764
xmldocs pdfdocs psdocs htmldocs mandocs: tools/kernel-doc/docproc
	$(MAKE) U_BOOT_VERSION=$(U_BOOT_VERSION) -C doc/DocBook/ $@

765
tools-all: easylogo env gdb $(VERSION_FILE) $(TIMESTAMP_FILE)
M
Mike Frysinger 已提交
766 767
	$(MAKE) -C tools HOST_TOOLS_ALL=y

768 769
.PHONY : CHANGELOG
CHANGELOG:
770 771
	git log --no-merges U-Boot-1_1_5.. | \
	unexpand -a | sed -e 's/\s\s*$$//' > $@
772

773
include/license.h: tools/bin2header COPYING
774
	cat COPYING | gzip -9 -c | ./tools/bin2header license_gzip > include/license.h
W
wdenk 已提交
775 776 777
#########################################################################

unconfig:
778
	@rm -f $(obj)include/config.h $(obj)include/config.mk \
779 780
		$(obj)board/*/config.tmp $(obj)board/*/*/config.tmp \
		$(obj)include/autoconf.mk $(obj)include/autoconf.mk.dep
W
wdenk 已提交
781

782 783 784
%_config::	unconfig
	@$(MKCONFIG) -A $(@:_config=)

785 786
sinclude $(obj).boards.depend
$(obj).boards.depend:	boards.cfg
787
	@awk '(NF && $$1 !~ /^#/) { print $$1 ": " $$1 "_config; $$(MAKE)" }' $< > $@
788

789 790 791 792 793 794
#
# Functions to generate common board directory names
#
lcname	= $(shell echo $(1) | sed -e 's/\(.*\)_config/\L\1/')
ucname	= $(shell echo $(1) | sed -e 's/\(.*\)_config/\U\1/')

W
wdenk 已提交
795 796
#########################################################################
#########################################################################
W
wdenk 已提交
797 798

clean:
799
	@rm -f $(obj)examples/standalone/82559_eeprom			  \
800
	       $(obj)examples/standalone/atmel_df_pow2			  \
801 802 803 804 805
	       $(obj)examples/standalone/eepro100_eeprom		  \
	       $(obj)examples/standalone/hello_world			  \
	       $(obj)examples/standalone/interrupt			  \
	       $(obj)examples/standalone/mem_to_mem_idma2intr		  \
	       $(obj)examples/standalone/sched				  \
806
	       $(obj)examples/standalone/smc911{11,x}_eeprom		  \
807 808
	       $(obj)examples/standalone/test_burst			  \
	       $(obj)examples/standalone/timer
P
Peter Tyser 已提交
809
	@rm -f $(obj)examples/api/demo{,.bin}
810 811 812 813 814
	@rm -f $(obj)tools/bmp_logo	   $(obj)tools/easylogo/easylogo  \
	       $(obj)tools/env/{fw_printenv,fw_setenv}			  \
	       $(obj)tools/envcrc					  \
	       $(obj)tools/gdb/{astest,gdbcont,gdbsend}			  \
	       $(obj)tools/gen_eth_addr    $(obj)tools/img2srec		  \
815
	       $(obj)tools/mk{env,}image   $(obj)tools/mpc86x_clk	  \
816
	       $(obj)tools/mk{smdk5250,}spl				  \
817
	       $(obj)tools/mxsboot					  \
818
	       $(obj)tools/ncb		   $(obj)tools/ubsha1		  \
819 820
	       $(obj)tools/kernel-doc/docproc				  \
	       $(obj)tools/proftool
821
	@rm -f $(obj)board/cray/L1/{bootscript.c,bootscript.image}	  \
822
	       $(obj)board/matrix_vision/*/bootscript.img		  \
823
	       $(obj)board/voiceblue/eeprom 				  \
824
	       $(obj)u-boot.lds						  \
825 826
	       $(obj)arch/blackfin/cpu/bootrom-asm-offsets.[chs]	  \
	       $(obj)arch/blackfin/cpu/init.{lds,elf}
827
	@rm -f $(obj)include/bmp_logo.h
828
	@rm -f $(obj)include/bmp_logo_data.h
829
	@rm -f $(obj)lib/asm-offsets.s
830 831
	@rm -f $(obj)include/generated/asm-offsets.h
	@rm -f $(obj)$(CPUDIR)/$(SOC)/asm-offsets.s
P
Peter Tyser 已提交
832
	@rm -f $(TIMESTAMP_FILE) $(VERSION_FILE)
A
Andreas Bießmann 已提交
833
	@$(MAKE) -s -C doc/DocBook/ cleandocs
834
	@find $(OBJTREE) -type f \
835
		\( -name 'core' -o -name '*.bak' -o -name '*~' -o -name '*.su' \
836 837
		-o -name '*.o'	-o -name '*.a' -o -name '*.exe' \
		-o -name '*.cfgtmp' \) -print \
W
wdenk 已提交
838 839
		| xargs rm -f

A
Andy Fleming 已提交
840 841 842 843 844 845 846 847
# Removes everything not needed for testing u-boot
tidy:	clean
	@find $(OBJTREE) -type f \( -name '*.depend*' \) -print | xargs rm -f

clobber:	tidy
	@find $(OBJTREE) -type f \( -name '*.srec' \
		-o -name '*.bin' -o -name u-boot.img \) \
		-print0 | xargs -0 rm -f
L
Li Yang 已提交
848
	@rm -f $(OBJS) $(obj)*.bak $(obj)ctags $(obj)etags $(obj)TAGS \
W
Wolfgang Denk 已提交
849
		$(obj)cscope.* $(obj)*.*~
850
	@rm -f $(obj)u-boot $(obj)u-boot.map $(obj)u-boot.hex $(ALL-y)
851
	@rm -f $(obj)u-boot.kwb
852
	@rm -f $(obj)u-boot.pbl
853
	@rm -f $(obj)u-boot.imx
854
	@rm -f $(obj)u-boot-with-spl.imx
855
	@rm -f $(obj)u-boot-with-nand-spl.imx
856
	@rm -f $(obj)u-boot.ubl
857
	@rm -f $(obj)u-boot.ais
858
	@rm -f $(obj)u-boot.dtb
859
	@rm -f $(obj)u-boot.sb
860
	@rm -f $(obj)u-boot.bd
861
	@rm -f $(obj)u-boot.spr
862 863 864
	@rm -f $(obj)nand_spl/{u-boot.{lds,lst},System.map}
	@rm -f $(obj)nand_spl/{u-boot-nand_spl.lds,u-boot-spl,u-boot-spl.map}
	@rm -f $(obj)spl/{u-boot-spl,u-boot-spl.bin,u-boot-spl.map}
865
	@rm -f $(obj)spl/u-boot-spl.lds
866
	@rm -f $(obj)MLO MLO.byteswap
S
Stefano Babic 已提交
867
	@rm -f $(obj)SPL
868
	@rm -f $(obj)tools/xway-swap-bytes
S
Stefan Roese 已提交
869
	@rm -f $(obj)arch/powerpc/cpu/mpc824x/bedbug_603e.c
870
	@rm -f $(obj)arch/powerpc/cpu/mpc83xx/ddr-gen?.c
871
	@rm -fr $(obj)include/asm/proc $(obj)include/asm/arch $(obj)include/asm
872
	@rm -fr $(obj)include/generated
873
	@[ ! -d $(obj)nand_spl ] || find $(obj)nand_spl -name "*" -type l -print | xargs rm -f
874
	@rm -f $(obj)dts/*.tmp
875
	@rm -f $(obj)spl/u-boot-spl{,-pad}.ais
876 877 878

mrproper \
distclean:	clobber unconfig
879
ifneq ($(OBJTREE),$(SRCTREE))
880
	rm -rf $(obj)*
881
endif
W
wdenk 已提交
882 883 884

backup:
	F=`basename $(TOPDIR)` ; cd .. ; \
885
	gtar --force-local -zcvf `LC_ALL=C date "+$$F-%Y-%m-%d-%T.tar.gz"` $$F
W
wdenk 已提交
886 887

#########################################################################