Makefile: add missing help_tests info on help target
Although 'help_tests' target has been present for a long time, it is
not shown on the main 'help' target output. This commits includes
basic 'help_tests' info on the latter, making it visible.
Signed-off-by: Leonardo Sandoval <leonardo.sandoval@linaro.org>
Change-Id: Ief510ae7f340207d416412f81e97e30017866b17
diff --git a/Makefile b/Makefile
index a229d0a..a614238 100644
--- a/Makefile
+++ b/Makefile
@@ -527,7 +527,8 @@
.PHONY: help
help:
- @echo "usage: ${MAKE} PLAT=<${PLATFORMS}> <all|tftf|ns_bl1u|ns_bl2u|cactus|ivy|quark|el3_payload|distclean|clean|checkcodebase|checkpatch>"
+ @echo "usage: ${MAKE} PLAT=<${PLATFORMS}> \
+<all|tftf|ns_bl1u|ns_bl2u|cactus|ivy|quark|el3_payload|distclean|clean|checkcodebase|checkpatch|help_tests>"
@echo ""
@echo "PLAT is used to specify which platform you wish to build."
@echo "If no platform is specified, PLAT defaults to: ${DEFAULT_PLAT}"
@@ -550,6 +551,7 @@
@echo " clean Clean the build for the selected platform"
@echo " cscope Generate cscope index"
@echo " distclean Remove all build artifacts for all platforms"
+ @echo " help_tests List all possible sets of tests"
@echo ""
@echo "note: most build targets require PLAT to be set to a specific platform."
@echo ""