Skip to content
Snippets Groups Projects
Commit 45845301 authored by Yuri Tikhonov's avatar Yuri Tikhonov Committed by Wolfgang Denk
Browse files

POST Make: fix the sub-dir dependencies missing.


Signed-off-by: default avatarYuri Tikhonov <yur@emcraft.com>
parent 22525779
No related branches found
No related tags found
No related merge requests found
......@@ -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)
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment