From 633263d5355b4729ab16f7689689754ba015507a Mon Sep 17 00:00:00 2001 From: Adrian Likins Date: Wed, 13 Sep 2017 16:45:05 -0400 Subject: [PATCH] add htmlsingle target (#30287) For whatever reason, building the 'singlehtml' version of the docs is much much faster than building the normal html version. --- docs/docsite/Makefile | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/docs/docsite/Makefile b/docs/docsite/Makefile index 6437b1e376..547b95c7b6 100644 --- a/docs/docsite/Makefile +++ b/docs/docsite/Makefile @@ -20,10 +20,14 @@ all: docs docs: clean htmldocs -htmldocs: testing keywords modules staticmin cli config +generate_rst: testing keywords modules staticmin cli config +htmldocs: generate_rst CPUS=$(CPUS) $(MAKE) -f Makefile.sphinx html +singlehtmldocs: generate_rst + CPUS=$(CPUS) $(MAKE) -f Makefile.sphinx singlehtml + webdocs: docs #TODO: leaving htmlout removal for those having older versions, should eventually be removed also