Without this, "make help" first builds "help.o", then tries to link it to make a "help" executable, which might take a while to fail in a clean tree. Signed-off-by: Samuel Bronson <naesten@xxxxxxxxx> --- Makefile | 6 ++++++ 1 files changed, 6 insertions(+), 0 deletions(-) diff --git a/Makefile b/Makefile index eaae45d..07a141d 100644 --- a/Makefile +++ b/Makefile @@ -1,6 +1,12 @@ # The default target of this Makefile is... all:: +.PHONY: help +help: + @echo 'Building:' + @echo ' For help on building, see the INSTALL file and the comments at' + @echo ' the top of Makefile' + # Define V=1 to have a more verbose compile. # # Define SNPRINTF_RETURNS_BOGUS if your are on a system which snprintf() -- 1.6.3.1 -- To unsubscribe from this list: send the line "unsubscribe git" in the body of a message to majordomo@xxxxxxxxxxxxxxx More majordomo info at http://vger.kernel.org/majordomo-info.html