From 0a8b74f047a6ee964d3c9f10673eb7d04fe93b02 Mon Sep 17 00:00:00 2001 From: Stephan de Wit Date: Thu, 13 Jul 2023 13:34:20 +0200 Subject: [PATCH] Makefile: use all available cores by default --- Makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Makefile b/Makefile index 4b4b074c..927e1fee 100644 --- a/Makefile +++ b/Makefile @@ -53,7 +53,7 @@ clean: .PHONY: html html: - $(SPHINXBUILD) -b html $(ALLSPHINXOPTS) $(BUILDDIR)/html + $(SPHINXBUILD) -b html -j auto $(ALLSPHINXOPTS) $(BUILDDIR)/html @echo @echo "Build finished. The HTML pages are in $(BUILDDIR)/html."