diff options
author | Nikita Sobolev <mail@sobolevn.me> | 2022-10-12 19:40:47 (GMT) |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-10-12 19:40:47 (GMT) |
commit | 4414586172a7b22ce5b7508c68401e6dc2ac49cc (patch) | |
tree | 8be9063bac38a8969d0cb2137b5d618de162bb23 /Doc/Makefile | |
parent | ccab67ba7901a3012ad66f0ffafac4ea925a1ff0 (diff) | |
download | cpython-4414586172a7b22ce5b7508c68401e6dc2ac49cc.zip cpython-4414586172a7b22ce5b7508c68401e6dc2ac49cc.tar.gz cpython-4414586172a7b22ce5b7508c68401e6dc2ac49cc.tar.bz2 |
Mark all targets in `Doc/Makefile` as `PHONY` (GH-98189)
Diffstat (limited to 'Doc/Makefile')
-rw-r--r-- | Doc/Makefile | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/Doc/Makefile b/Doc/Makefile index f520874..b09a9d7 100644 --- a/Doc/Makefile +++ b/Doc/Makefile @@ -21,9 +21,9 @@ PAPEROPT_letter = -D latex_elements.papersize=letterpaper ALLSPHINXOPTS = -b $(BUILDER) -d build/doctrees $(PAPEROPT_$(PAPER)) -j auto \ $(SPHINXOPTS) $(SPHINXERRORHANDLING) . build/$(BUILDER) $(SOURCES) -.PHONY: help build html htmlhelp latex text texinfo changes linkcheck \ - coverage doctest pydoc-topics htmlview clean dist check serve \ - autobuild-dev autobuild-stable venv +.PHONY: help build html htmlhelp latex text texinfo epub changes linkcheck \ + coverage doctest pydoc-topics htmlview clean clean-venv venv dist check serve \ + autobuild-dev autobuild-dev-html autobuild-stable autobuild-stable-html help: @echo "Please use \`make <target>' where <target> is one of" |