From 9b1a28c074d5a5c5f2151a26ac169764677b416d Mon Sep 17 00:00:00 2001 From: Ben Smith Date: Tue, 23 May 2017 10:41:49 -0700 Subject: Use + with $(MAKE) to use jobserver (#450) This allows you to run: ``` make -j10 ``` Without this, Make complains: make[1]: warning: jobserver unavailable: using -j1. Add '+' to parent make rule. --- Makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'Makefile') diff --git a/Makefile b/Makefile index e1dd54a1..bc9202b0 100644 --- a/Makefile +++ b/Makefile @@ -90,7 +90,7 @@ BUILD_CMD := ninja BUILD_FILE := build.ninja GENERATOR := Ninja else -BUILD_CMD := $(MAKE) --no-print-directory +BUILD_CMD := +$(MAKE) --no-print-directory BUILD_FILE := Makefile GENERATOR := "Unix Makefiles" endif -- cgit v1.2.3