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 75e1b73 commit 6047b12Copy full SHA for 6047b12
Makefile
@@ -278,9 +278,10 @@ dist/$(PACKAGE_NAME)-$(PACKAGE_VERSION)-build-epoch.txt:
278
echo $(SOURCE_DATE_EPOCH) > dist/$(PACKAGE_NAME)-$(PACKAGE_VERSION)-build-epoch.txt
279
280
# Build the HTML documentation from the package's source.
281
+DOCS_SOURCE := $(shell find docs/source -type f -name '*.rst')
282
.PHONY: docs
283
docs: docs/_build/html/index.html
-docs/_build/html/index.html:
284
+docs/_build/html/index.html: $(DOCS_SOURCE)
285
$(MAKE) -C docs/ html
286
287
# Build the Docker image. The image name and tag are read from IMAGE_NAME and RELEASE_TAG
0 commit comments