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-01 16:08:50 -04:00
parent 7d468744ec
commit 7d1ea39d43
3 changed files with 3 additions and 2 deletions

View File

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

View File

@ -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)/$@"

View File

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