[U-Boot] [PATCH] POST Make: fix the sub-dir dependencies missing.

From: Yuri Tikhonov yur@emcraft.com
Signed-off-by: Yuri Tikhonov yur@emcraft.com --- post/Makefile | 7 ++++++- 1 files changed, 6 insertions(+), 1 deletions(-)
diff --git a/post/Makefile b/post/Makefile index a402e6a..666a896 100644 --- a/post/Makefile +++ b/post/Makefile @@ -45,7 +45,12 @@ SRCS := $(SOBJS:.o=.S) $(COBJS:.o=.c) OBJS := $(addprefix $(obj),$(COBJS)) LIB := $(obj)$(LIB)
-all: $(LIB) +all: postdeps $(LIB) + +postdeps: + @for lib in $(SPLIB-y) ; do \ + $(MAKE) -C `dirname $$lib` all ; \ + done
# generic POST library $(GPLIB): $(obj).depend $(OBJS)

Dear Yuri,
In message 1228684370-5292-1-git-send-email-wd@denx.de you wrote:
From: Yuri Tikhonov yur@emcraft.com
Signed-off-by: Yuri Tikhonov yur@emcraft.com
post/Makefile | 7 ++++++- 1 files changed, 6 insertions(+), 1 deletions(-)
Applied, thanks.
Best regards,
Wolfgang Denk
participants (1)
-
Wolfgang Denk