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 56c7057 commit 13d62efCopy full SHA for 13d62ef
Makefile
@@ -188,10 +188,11 @@ dist/$(PACKAGE_NAME)-$(PACKAGE_VERSION)-build-epoch.txt:
188
echo $(SOURCE_DATE_EPOCH) > dist/$(PACKAGE_NAME)-$(PACKAGE_VERSION)-build-epoch.txt
189
190
# Build the HTML and Markdown documentation from the package's source.
191
+DOCS_SOURCE := $(shell find docs/source -type f -name '*.rst')
192
.PHONY: docs docs-html docs-md
193
docs: docs-html docs-md
194
docs-html: docs/_build/html/index.html
-docs/_build/html/index.html: check test
195
+docs/_build/html/index.html: $(DOCS_SOURCE) check test
196
if [ ! -d docs/source/_static ]; then \
197
mkdir docs/source/_static/; \
198
fi
0 commit comments