diff options
author | Ned Batchelder <ned@nedbatchelder.com> | 2020-07-04 10:44:10 -0400 |
---|---|---|
committer | Ned Batchelder <ned@nedbatchelder.com> | 2020-07-04 10:44:10 -0400 |
commit | 705c05b7f63b40a2565dc0648ad5739bbc6352a7 (patch) | |
tree | 62438b73e0777d535c3f7ecf4538ddd24184f8cd | |
parent | c60118961ecb3543a9b71ca93513007e91318df4 (diff) | |
download | python-coveragepy-git-705c05b7f63b40a2565dc0648ad5739bbc6352a7.tar.gz |
Document two more Makefile targets
-rw-r--r-- | Makefile | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -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) |