[tools][mkimage] Update mkimage deps to reflect external refactoring.

This commit is contained in:
Gurjant Kalsi
2016-03-04 17:36:27 -08:00
parent 87fb7721f5
commit d22f8054c9

View File

@@ -8,8 +8,8 @@ lkboot: $(LKBOOT_SRCS) $(LKBOOT_DEPS)
gcc -Wall -o $@ $(LKBOOT_INCS) $(LKBOOT_SRCS)
MKIMAGE_DEPS := bootimage.h ../lib/bootimage/include/lib/bootimage_struct.h
MKIMAGE_SRCS := mkimage.c bootimage.c ../lib/mincrypt/sha256.c
MKIMAGE_INCS := -I../lib/mincrypt/include -I../lib/bootimage/include
MKIMAGE_SRCS := mkimage.c bootimage.c ../external/lib/mincrypt/sha256.c
MKIMAGE_INCS := -I../external/lib/mincrypt/include -I../lib/bootimage/include
mkimage: $(MKIMAGE_SRCS) $(MKIMAGE_DEPS)
gcc -Wall -g -o $@ $(MKIMAGE_INCS) $(MKIMAGE_SRCS)