diff options
author | Mike Frysinger <vapier@gentoo.org> | 2009-06-15 00:25:19 -0400 |
---|---|---|
committer | Mike Frysinger <vapier@gentoo.org> | 2009-06-15 13:30:27 -0400 |
commit | 3e88337b225bf796f6df21d0a7f591530e9d4ce0 (patch) | |
tree | 4f90a896f2c64cc05c3a1bc451a0aee6ebbadd61 /Makefile | |
parent | afac8b07172d7e4a65f86ce1ec4c783a6165ba1f (diff) | |
download | u-boot-3e88337b225bf796f6df21d0a7f591530e9d4ce0.tar.gz u-boot-3e88337b225bf796f6df21d0a7f591530e9d4ce0.tar.xz u-boot-3e88337b225bf796f6df21d0a7f591530e9d4ce0.zip |
Blackfin: move ALL += u-boot.ldr to blackfin_config.mk
The way the ALL variable is used allows for config.mk's to add more
targets themselves without having to clutter up the top level Makefile.
Signed-off-by: Mike Frysinger <vapier@gentoo.org>
Diffstat (limited to 'Makefile')
-rw-r--r-- | Makefile | 4 |
1 files changed, 1 insertions, 3 deletions
@@ -306,10 +306,8 @@ __LIBS := $(subst $(obj),,$(LIBS)) $(subst $(obj),,$(LIBBOARD)) ######################################################################### ######################################################################### +# Always append ALL so that arch config.mk's can add custom ones ALL += $(obj)u-boot.srec $(obj)u-boot.bin $(obj)System.map $(U_BOOT_NAND) $(U_BOOT_ONENAND) -ifeq ($(ARCH),blackfin) -ALL += $(obj)u-boot.ldr -endif all: $(ALL) |