diff options
Diffstat (limited to 'target/tools/uboot-mkimage/Makefile')
-rw-r--r-- | target/tools/uboot-mkimage/Makefile | 4 |
1 files changed, 1 insertions, 3 deletions
diff --git a/target/tools/uboot-mkimage/Makefile b/target/tools/uboot-mkimage/Makefile index 08506a5f8..c9d85a28e 100644 --- a/target/tools/uboot-mkimage/Makefile +++ b/target/tools/uboot-mkimage/Makefile @@ -1,6 +1,4 @@ include $(TOPDIR)/rules.mk all: - $(HOSTCC) -c crc32.c -o crc32.o - $(HOSTCC) -c mkimage.c -o mkimage.o - $(HOSTCC) -o ${STAGING_HOST_DIR}/bin/mkimage mkimage.o crc32.o + $(HOSTCC) ${HOSTCFLAGS} -o ${STAGING_HOST_DIR}/bin/mkimage mkimage.c crc32.c |