Makefiles: Include clean in help message

The make clean help command was missing from all make files.
This commit is contained in:
Aaron Carlisle 2020-10-05 09:15:33 -04:00
parent 7d468744ec
commit fcd62b9a6c
3 changed files with 3 additions and 0 deletions

View File

@ -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"),
]

View File

@ -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:

View File

@ -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
)