summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorNed Batchelder <ned@nedbatchelder.com>2020-07-04 10:44:10 -0400
committerNed Batchelder <ned@nedbatchelder.com>2020-07-04 10:44:10 -0400
commit705c05b7f63b40a2565dc0648ad5739bbc6352a7 (patch)
tree62438b73e0777d535c3f7ecf4538ddd24184f8cd
parentc60118961ecb3543a9b71ca93513007e91318df4 (diff)
downloadpython-coveragepy-git-705c05b7f63b40a2565dc0648ad5739bbc6352a7.tar.gz
Document two more Makefile targets
-rw-r--r--Makefile4
1 files changed, 2 insertions, 2 deletions
diff --git a/Makefile b/Makefile
index 3589c10b..fb88fd7d 100644
--- a/Makefile
+++ b/Makefile
@@ -159,7 +159,7 @@ dochtml: $(DOCBIN) cmd_help ## Build the docs HTML output.
docdev: dochtml ## Build docs, and auto-watch for changes.
PATH=$(DOCBIN):$(PATH) $(SPHINXAUTOBUILD) -b html doc doc/_build/html
-docspell: $(DOCBIN)
+docspell: $(DOCBIN) ## Run the spell checker on the docs.
$(SPHINXBUILD) -b spelling doc doc/_spell
publish:
@@ -179,7 +179,7 @@ $(CHANGES_MD): CHANGES.rst $(DOCBIN)
$(SPHINXBUILD) -b rst doc tmp/rst_rst
pandoc -frst -tmarkdown_strict --atx-headers --wrap=none tmp/rst_rst/changes.rst > $(CHANGES_MD)
-relnotes_json: $(RELNOTES_JSON)
+relnotes_json: $(RELNOTES_JSON) ## Convert changelog to JSON for further parsing.
$(RELNOTES_JSON): $(CHANGES_MD)
$(DOCBIN)/python ci/parse_relnotes.py tmp/rst_rst/changes.md $(RELNOTES_JSON)