From 6ac0a3951956485d0df5d95574310584baf461dd Mon Sep 17 00:00:00 2001 From: Kumar Gala Date: Fri, 18 Nov 2016 01:19:21 -0600 Subject: [PATCH] target: zephyr: Allow parallel build of Zephyr (#1436) If we are building JerryScript from some other makefile that passes down a -j option to make we should respect that when we build Zephyr. JerryScript-DCO-1.0-Signed-off-by: Kumar Gala kumar.gala@linaro.org --- targets/zephyr/Makefile.zephyr | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/targets/zephyr/Makefile.zephyr b/targets/zephyr/Makefile.zephyr index 32b741ef3..5a489ddfb 100644 --- a/targets/zephyr/Makefile.zephyr +++ b/targets/zephyr/Makefile.zephyr @@ -106,7 +106,7 @@ zephyr: jerry ifdef V @echo "- ZEPHYR -------------------------------------------------------" endif - make -f $(TARGET_ZEPHYR)/Makefile $(BUILD_CONFIG) + +make -f $(TARGET_ZEPHYR)/Makefile $(BUILD_CONFIG) @echo "Finished" @file $(OUTPUT)/zephyr.strip @size $(OUTPUT)/zephyr.strip