We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent dfa28d3 commit c3a46a0Copy full SHA for c3a46a0
Makefile
@@ -53,14 +53,20 @@ I18NSPHINXOPTS = $(PAPEROPT_$(PAPER)) $(SPHINXOPTS) source
53
help:
54
@echo "Please use \`make <target>' where <target> is one of"
55
@echo " html to make standalone HTML files"
56
+ @echo " clean to remove the build directory and generated files"
57
+ @echo " lint to run rstcheck to verify RST syntax"
58
+ @echo " deploy to remove any temporary files from the build"
59
60
clean:
61
rm -rf "$(BUILDDIR)"
62
63
lint:
64
rstcheck -r "$(SOURCEDIR)"
65
-html:
66
+html:
67
$(SPHINXBUILD) -b html $(ALLSPHINXOPTS) "$(SOURCEDIR)" "$(BUILDDIR)"
68
@echo
69
@echo "Build finished. The HTML pages are in $(BUILDDIR)."
70
+
71
+deploy:
72
+ rm -rf "$(BUILDDIR)/doctrees"
0 commit comments