diff options
author | Prafulla Wadaskar <prafulla@marvell.com> | 2009-09-07 14:59:06 +0530 |
---|---|---|
committer | Wolfgang Denk <wd@denx.de> | 2009-09-10 22:58:48 +0200 |
commit | 37b801888cf73b18f78c1109140ff44e3e37914f (patch) | |
tree | 7a21b201ffcbeea76c3dcd1474400e692d0627ac /tools/Makefile | |
parent | 3a2003f61ee79ac53d20c24cc896c2637a2dfc24 (diff) | |
download | u-boot-imx-37b801888cf73b18f78c1109140ff44e3e37914f.zip u-boot-imx-37b801888cf73b18f78c1109140ff44e3e37914f.tar.gz u-boot-imx-37b801888cf73b18f78c1109140ff44e3e37914f.tar.bz2 |
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 <prafulla@marvell.com>
Acked-by: Ron Lee <ron@debian.org>
Edited commit message.
Signed-off-by: Wolfgang Denk <wd@denx.de>
Diffstat (limited to 'tools/Makefile')
-rw-r--r-- | tools/Makefile | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/tools/Makefile b/tools/Makefile index 858b0e8..d5c23fd 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 |