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 aec8efe commit b161f73Copy full SHA for b161f73
docs/Makefile
@@ -13,6 +13,15 @@ help:
13
14
.PHONY: help Makefile
15
16
+# I got the following warning running "make html":
17
+# WARNING: html_static_path entry '_static' does not exist
18
+# The _static folder in a Sphinx project is used to store custom static files. We must either
19
+# suppress the warning by creating the folder or remove the entry from conf.py ("html_static_path = []").
20
+# Creating the folder may be safer.
21
+html:
22
+ @mkdir -p _static
23
+ @$(SPHINXBUILD) -M $@ "$(SOURCEDIR)" "$(BUILDDIR)" $(SPHINXOPTS) $(O)
24
+
25
# Catch-all target: route all unknown targets to Sphinx using the new
26
# "make mode" option. $(O) is meant as a shortcut for $(SPHINXOPTS).
27
%: Makefile
0 commit comments