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
fcd62b9a6c
@ -51,6 +51,7 @@ BUILDERS = [
|
||||
("", "doctest", "to run all doctests embedded in 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 " coverage to run coverage check of the documentation (if enabled)"
|
||||
@echo " dummy to check syntax errors of document sources"
|
||||
@echo " clean to remove everything in the build directory"
|
||||
|
||||
.PHONY: clean
|
||||
clean:
|
||||
|
@ -43,6 +43,7 @@ if "%1" == "help" (
|
||||
echo. doctest to run all doctests embedded in 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. clean to remove everything in the build directory
|
||||
goto end
|
||||
)
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user