From d3c256103ce74767040c0448c31877b755705321 Mon Sep 17 00:00:00 2001 From: Sam Clegg Date: Tue, 16 Jul 2019 12:58:47 -0700 Subject: [PATCH] Use $(MAKE) to building wasi-libc to inherit -j flag (#44) Followup on #40 --- Makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Makefile b/Makefile index 9943fc0..3cfc58c 100644 --- a/Makefile +++ b/Makefile @@ -41,7 +41,7 @@ build/llvm.BUILT: touch build/llvm.BUILT build/wasi-libc.BUILT: build/llvm.BUILT - make -C $(ROOT_DIR)/src/wasi-libc \ + $(MAKE) -C $(ROOT_DIR)/src/wasi-libc \ WASM_CC=$(PREFIX)/bin/clang \ SYSROOT=$(PREFIX)/share/wasi-sysroot touch build/wasi-libc.BUILT