From: Peter Tyser Date: Fri, 13 Mar 2009 23:54:36 +0000 (-0500) Subject: tools/Makefile: Make img2srec dependent upon CONFIG_CMD_LOADS X-Git-Tag: v2009.06-rc1~94 X-Git-Url: https://git.sur5r.net/?a=commitdiff_plain;h=eeba8617908e33f7e7db3b1588c04ca65b856793;p=u-boot tools/Makefile: Make img2srec dependent upon CONFIG_CMD_LOADS Signed-off-by: Peter Tyser --- diff --git a/tools/Makefile b/tools/Makefile index 3c59bba804..b4bd4172b1 100644 --- a/tools/Makefile +++ b/tools/Makefile @@ -73,7 +73,7 @@ endif include $(TOPDIR)/config.mk # Generated executable files -BIN_FILES-y += img2srec$(SFX) +BIN_FILES-$(CONFIG_CMD_LOADS) += img2srec$(SFX) BIN_FILES-y += mkimage$(SFX) BIN_FILES-y += envcrc$(SFX) BIN_FILES-y += ubsha1$(SFX) @@ -88,7 +88,7 @@ OBJ_LINKS-y += sha1.o OBJ_LINKS-y += image.o # Source files located in the tools directory -OBJ_FILES-y += img2srec.o +OBJ_FILES-$(CONFIG_CMD_LOADS) += img2srec.o OBJ_FILES-y += mkimage.o OBJ_FILES-y += envcrc.o OBJ_FILES-y += ubsha1.o