mirror of
https://github.com/sphinx-doc/sphinx.git
synced 2025-02-25 18:55:22 -06:00
Makefiles: Include clean in help message
The make clean help command was missing from all make files.
This commit is contained in:
parent
7d468744ec
commit
7d1ea39d43
@ -51,6 +51,7 @@ BUILDERS = [
|
|||||||
("", "doctest", "to run all doctests embedded in the documentation "
|
("", "doctest", "to run all doctests embedded in the documentation "
|
||||||
"(if enabled)"),
|
"(if enabled)"),
|
||||||
("", "coverage", "to run coverage check of the documentation (if enabled)"),
|
("", "coverage", "to run coverage check of the documentation (if enabled)"),
|
||||||
|
("", "clean", "to remove everything in the build directory"),
|
||||||
]
|
]
|
||||||
|
|
||||||
|
|
||||||
|
@ -46,6 +46,7 @@ help:
|
|||||||
@echo " doctest to run all doctests embedded in the documentation (if enabled)"
|
@echo " doctest to run all doctests embedded in the documentation (if enabled)"
|
||||||
@echo " coverage to run coverage check of the documentation (if enabled)"
|
@echo " coverage to run coverage check of the documentation (if enabled)"
|
||||||
@echo " dummy to check syntax errors of document sources"
|
@echo " dummy to check syntax errors of document sources"
|
||||||
|
@echo " clean to remove everything in the build directory"
|
||||||
|
|
||||||
.PHONY: clean
|
.PHONY: clean
|
||||||
clean:
|
clean:
|
||||||
@ -94,4 +95,3 @@ gettext:
|
|||||||
.PHONY: Makefile
|
.PHONY: Makefile
|
||||||
%: Makefile
|
%: Makefile
|
||||||
$(SPHINXBUILD) -b "$@" $(ALLSPHINXOPTS) "$(BUILDDIR)/$@"
|
$(SPHINXBUILD) -b "$@" $(ALLSPHINXOPTS) "$(BUILDDIR)/$@"
|
||||||
|
|
||||||
|
@ -43,6 +43,7 @@ if "%1" == "help" (
|
|||||||
echo. doctest to run all doctests embedded in the documentation if enabled
|
echo. doctest to run all doctests embedded in the documentation if enabled
|
||||||
echo. coverage to run coverage check of the documentation if enabled
|
echo. coverage to run coverage check of the documentation if enabled
|
||||||
echo. dummy to check syntax errors of document sources
|
echo. dummy to check syntax errors of document sources
|
||||||
|
echo. clean to remove everything in the build directory
|
||||||
goto end
|
goto end
|
||||||
)
|
)
|
||||||
|
|
||||||
@ -106,4 +107,3 @@ goto end
|
|||||||
|
|
||||||
:end
|
:end
|
||||||
popd
|
popd
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user