summaryrefslogtreecommitdiff
path: root/Makefile
diff options
context:
space:
mode:
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile5
1 files changed, 4 insertions, 1 deletions
diff --git a/Makefile b/Makefile
index 80614508..af3a84e9 100644
--- a/Makefile
+++ b/Makefile
@@ -49,8 +49,11 @@ help:
clean:
rm -rf $(BUILDDIR)/*
+# The html-linked builder does not support caching, so we
+# remove all cached state first.
html:
- $(SPHINXBUILD) -b html $(ALLSPHINXOPTS) $(BUILDDIR)/html
+ rm -rf $(BUILDDIR)/*
+ $(SPHINXBUILD) -b html-linked $(ALLSPHINXOPTS) $(BUILDDIR)/html
@echo
@echo "Build finished. The HTML pages are in $(BUILDDIR)/html."