From 24dc03cac985dd76b72f3b1982b3d1ff4535c676 Mon Sep 17 00:00:00 2001 From: Szczepan Zalega Date: Mon, 24 Oct 2016 14:42:49 +0200 Subject: Build properly subtasks in parallel Signed-off-by: Szczepan Zalega --- Makefile | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/Makefile b/Makefile index cf0cf0c..977eae6 100644 --- a/Makefile +++ b/Makefile @@ -30,14 +30,14 @@ $(BUILD)/%.o: %.cc $(DEPENDS) clean: rm -f $(OBJ) rm -f $(BUILD)/libnitrokey.so - make -C unittest clean + ${MAKE} -C unittest clean mrproper: clean rm -f $(BUILD)/*.d - make -C unittest mrproper + ${MAKE} -C unittest mrproper unittest: $(BUILD)/libnitrokey.so - make -C unittest + ${MAKE} -C unittest cd unittest/build && ln -fs ../../build/libnitrokey.so . .PHONY: all clean mrproper unittest -- cgit v1.2.1