1
0
mirror of https://github.com/Zygo/bees.git synced 2025-05-17 21:35:45 +02:00

Makefile: Use the jobserver properly

Signed-off-by: Kai Krakow <kai@kaishome.de>
This commit is contained in:
Kai Krakow 2018-11-08 02:49:37 +01:00
parent 8cbd6fc67a
commit d4535901a5
No known key found for this signature in database
GPG Key ID: 046FAC3028D76321

View File

@ -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)