From 7aa5fa1e90c1ca7038ef60591637e5267e282749 Mon Sep 17 00:00:00 2001 From: Andres AG Date: Thu, 25 Aug 2016 16:36:16 +0100 Subject: [PATCH] Fix main Makefile to allow parallel builds Modify the main Makefile so that post_build target is not started in parallel with tests and programs recipe. --- Makefile | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/Makefile b/Makefile index 39fc342bf..d2fa6b81f 100644 --- a/Makefile +++ b/Makefile @@ -6,7 +6,8 @@ PREFIX=mbedtls_ .PHONY: all no_test programs lib tests install uninstall clean test check covtest lcov apidoc apidoc_clean -all: programs tests post_build +all: programs tests + $(MAKE) post_build no_test: programs