aboutsummaryrefslogtreecommitdiffhomepage
diff options
context:
space:
mode:
authorGravatar Maxime Dénès <mail@maximedenes.fr>2018-05-14 17:16:09 +0200
committerGravatar Maxime Dénès <mail@maximedenes.fr>2018-05-14 17:16:09 +0200
commitcd5a9b443590df664bd37cb33644f720bc32cc65 (patch)
tree0a926325a42108e3a5c90df5461ebf5b456e078a
parent9af4d750c1e59ca8731790f7f620f413637dfc4d (diff)
parent556bcae1d29707b21a527a134d38a94623abf5dd (diff)
Merge PR #7190: Option for quick compilation of the reference manual, bypassing dependencies
-rw-r--r--Makefile.doc6
1 files changed, 5 insertions, 1 deletions
diff --git a/Makefile.doc b/Makefile.doc
index d13d0c09e..41ae11b86 100644
--- a/Makefile.doc
+++ b/Makefile.doc
@@ -49,7 +49,11 @@ DOCCOMMON:=doc/common/version.tex doc/common/title.tex doc/common/macros.tex
doc: sphinx stdlib
-sphinx: coq
+ifndef QUICK
+SPHINX_DEPS := coq
+endif
+
+sphinx: $(SPHINX_DEPS)
$(SHOW)'SPHINXBUILD doc/sphinx'
$(HIDE)COQBIN="$(PWD)/bin" $(SPHINXBUILD) -W -b html $(ALLSPHINXOPTS) doc/sphinx $(SPHINXBUILDDIR)/html
@echo