From 88bddfa40c9acfb3101b8d39f9cc5938488d719c Mon Sep 17 00:00:00 2001 From: Jose Martins Date: Fri, 2 Apr 2021 22:06:37 +0100 Subject: [PATCH] fix make prerequisites to support parallel execution --- Makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Makefile b/Makefile index 91e48eb8b..6a908065b 100644 --- a/Makefile +++ b/Makefile @@ -169,7 +169,7 @@ $(build_dir)/%.d : $(src_dir)/%.[c,S] @echo "Creating dependecy $(patsubst $(cur_dir)/%, %, $<)" @$(cc) -MM -MG -MT "$(patsubst %.d, %.o, $@) $@" $(CPPFLAGS) $< > $@ -$(objs-y): +$(objs-y): | $(gens) @echo "Compiling source $(patsubst $(cur_dir)/%, %, $<)" @$(cc) $(CFLAGS) -c $< -o $@