From: Prafulla Wadaskar Date: Mon, 7 Sep 2009 09:29:06 +0000 (+0530) Subject: mkimage: Include missing files in build dependency calculations X-Git-Tag: v2010.09-rc1~1^2~19^2~42^2~129 X-Git-Url: https://git.librecmc.org/?a=commitdiff_plain;h=db588c7dcbdf05160be832dd690d2d0299071808;p=oweals%2Fu-boot.git mkimage: Include missing files in build dependency calculations Include default_image.o and fit_image.o into the build dependency calculations. This makes sure they get rebuilt if any of the headers they include are modified Signed-off-by: Prafulla Wadaskar Acked-by: Ron Lee Edited commit message. Signed-off-by: Wolfgang Denk --- diff --git a/tools/Makefile b/tools/Makefile index 858b0e8f0a..d5c23fd7ee 100644 --- a/tools/Makefile +++ b/tools/Makefile @@ -93,7 +93,9 @@ EXT_OBJ_FILES-y += lib_generic/sha1.o # Source files located in the tools directory OBJ_FILES-$(CONFIG_LCD_LOGO) += bmp_logo.o OBJ_FILES-$(CONFIG_VIDEO_LOGO) += bmp_logo.o +OBJ_FILES-y += default_image.o OBJ_FILES-$(CONFIG_ENV_IS_EMBEDDED) += envcrc.o +OBJ_FILES-y += fit_image.o OBJ_FILES-$(CONFIG_CMD_NET) += gen_eth_addr.o OBJ_FILES-$(CONFIG_CMD_LOADS) += img2srec.o OBJ_FILES-$(CONFIG_INCA_IP) += inca-swap-bytes.o