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.
This commit is contained in:
parent
4b8bc5228a
commit
7aa5fa1e90
1 changed files with 2 additions and 1 deletions
3
Makefile
3
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
|
||||
|
||||
|
|
Loading…
Reference in a new issue