diff options
author | Simon Glass <sjg@chromium.org> | 2013-05-07 06:11:54 +0000 |
---|---|---|
committer | Tom Rini <trini@ti.com> | 2013-05-14 15:37:25 -0400 |
commit | 604f23dde0b9e6d554b0445a89a809ebd398d515 (patch) | |
tree | 239eb0a5cb23d6dd50f5d1f471207fee5443713c /tools/Makefile | |
parent | 53fbb7e885d387426296d367969e2f22fa576705 (diff) | |
download | u-boot-imx-604f23dde0b9e6d554b0445a89a809ebd398d515.zip u-boot-imx-604f23dde0b9e6d554b0445a89a809ebd398d515.tar.gz u-boot-imx-604f23dde0b9e6d554b0445a89a809ebd398d515.tar.bz2 |
image: Move HOSTCC image code to tools/
This code is never compiled into U-Boot, so move it into a separate
file in tools/ to avoid the large #ifdef.
Signed-off-by: Simon Glass <sjg@chromium.org>
Reviewed-by: Marek Vasut <marex@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 067d3e4..26eb500 100644 --- a/tools/Makefile +++ b/tools/Makefile @@ -96,6 +96,7 @@ NOPED_OBJ_FILES-y += aisimage.o NOPED_OBJ_FILES-y += kwbimage.o NOPED_OBJ_FILES-y += pblimage.o NOPED_OBJ_FILES-y += imximage.o +NOPED_OBJ_FILES-y += image-host.o NOPED_OBJ_FILES-y += omapimage.o NOPED_OBJ_FILES-y += mkenvimage.o NOPED_OBJ_FILES-y += mkimage.o @@ -212,6 +213,7 @@ $(obj)mkimage$(SFX): $(obj)aisimage.o \ $(obj)fit_image.o \ $(obj)image-fit.o \ $(obj)image.o \ + $(obj)image-host.o \ $(obj)imximage.o \ $(obj)kwbimage.o \ $(obj)pblimage.o \ |