From: Simon Glass Date: Sat, 13 Aug 2022 17:40:40 +0000 (-0600) Subject: doc: Build documentation in parallel X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=5e730d9cf9451da4158244a5d7404289438928df;p=platform%2Fkernel%2Fu-boot-spacemit.git doc: Build documentation in parallel With the addition of the revision stats this now takes over a minute. Use a parallel build to reduce it a bit (24 seconds for me). Series-changes; 2 - Use '-j auto' instead Signed-off-by: Simon Glass --- diff --git a/doc/Makefile b/doc/Makefile index 6081858..f5de65e 100644 --- a/doc/Makefile +++ b/doc/Makefile @@ -58,6 +58,7 @@ quiet_cmd_sphinx = SPHINX $@ --> file://$(abspath $(BUILDDIR)/$3/$4) $(SPHINXBUILD) \ -j$(shell nproc) \ -b $2 \ + -j auto \ -c $(abspath $(srctree)/$(src)) \ -d $(abspath $(BUILDDIR)/.doctrees/$3) \ -D version=$(KERNELVERSION) -D release=$(KERNELRELEASE) \