[new uImage] Add sha1.o object to mkimage binary build

Signed-off-by: Bartlomiej Sieka <tur@semihalf.com>
This commit is contained in:
Bartlomiej Sieka 2008-02-29 16:00:23 +01:00 committed by Marian Balakowicz
parent df6f1b895c
commit a6e530f00d
2 changed files with 2 additions and 1 deletions

View File

@ -137,7 +137,7 @@ $(obj)img2srec$(SFX): $(obj)img2srec.o
$(CC) $(CFLAGS) $(HOST_LDFLAGS) -o $@ $^
$(STRIP) $@
$(obj)mkimage$(SFX): $(obj)mkimage.o $(obj)crc32.o $(obj)image.o
$(obj)mkimage$(SFX): $(obj)mkimage.o $(obj)crc32.o $(obj)image.o $(obj)sha1.o
$(CC) $(CFLAGS) $(HOST_LDFLAGS) -o $@ $^
$(STRIP) $@

View File

@ -32,6 +32,7 @@
#include <sys/stat.h>
#include <time.h>
#include <unistd.h>
#include <sha1.h>
#if defined(__BEOS__) || defined(__NetBSD__) || defined(__APPLE__)
#include <inttypes.h>