From d4535901a5216d9a001ed01cba2516a5b115fb49 Mon Sep 17 00:00:00 2001 From: Kai Krakow Date: Thu, 8 Nov 2018 02:49:37 +0100 Subject: [PATCH] Makefile: Use the jobserver properly Signed-off-by: Kai Krakow --- Makefile | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/Makefile b/Makefile index 177bb03..3ac472f 100644 --- a/Makefile +++ b/Makefile @@ -31,18 +31,18 @@ clean: ## Cleanup .PHONY: lib src test doc lib: ## Build libs - $(MAKE) -C lib + +$(MAKE) -C lib src: ## Build bins src: lib - $(MAKE) BEES_VERSION="$(BEES_VERSION)" -C src + +$(MAKE) BEES_VERSION="$(BEES_VERSION)" -C src test: ## Run tests test: lib src - $(MAKE) -C test + +$(MAKE) -C test doc: ## Build docs - $(MAKE) -C docs + +$(MAKE) -C docs scripts/%: scripts/%.in $(TEMPLATE_COMPILER)