From b3b28b7dbf905d356cad0f80de6ba89bd195971c Mon Sep 17 00:00:00 2001 From: Wiktor Garbacz Date: Mon, 27 Jan 2020 10:32:10 +0100 Subject: [PATCH] Makefile: fix kafel submodule init for parallel build --- Makefile | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/Makefile b/Makefile index 6c24f74..2796453 100644 --- a/Makefile +++ b/Makefile @@ -69,10 +69,14 @@ ifneq ($(NL3_EXISTS), yes) endif $(CXX) -o $(BIN) $(OBJS) $(LIBS) $(LDFLAGS) -kafel/libkafel.a: +.PHONY: kafel_init +kafel_init: ifeq ("$(wildcard kafel/Makefile)","") git submodule update --init endif + +kafel/include/kafel.h: kafel_init +kafel/libkafel.a: kafel_init $(MAKE) -C kafel # Sequence of proto deps, which doesn't fit automatic make rules -- 2.34.1