From 070129895457f73f6a89b976c08d3f1d594b396e Mon Sep 17 00:00:00 2001 From: vanhofen Date: Sat, 3 Nov 2018 01:01:21 +0100 Subject: [PATCH] - Makefile: rework help target --- Makefile | 23 ++++++++++++++--------- 1 file changed, 14 insertions(+), 9 deletions(-) diff --git a/Makefile b/Makefile index 54d315a5..fc87394b 100755 --- a/Makefile +++ b/Makefile @@ -61,17 +61,22 @@ printenv: fi help: - @echo "a few helpful make targets:" - @echo "* make preqs - downloads necessary stuff" - @echo "* make crosstool - build cross toolchain" - @echo "* make bootstrap - prepares for building" - @echo "* make neutrino - builds neutrino" + @echo "A few helpful make targets:" + @echo " * make preqs - Downloads necessary stuff" + @echo " * make crosstool - Build cross toolchain" + @echo " * make bootstrap - Prepares for building" + @echo " * make neutrino - Builds Neutrino" + @echo " * make image - Builds our beautiful NI-Image" @echo "" - @echo "later, you might find those useful:" - @echo "* make update-all - update buildsystem and all sources" + @echo "Later, you might find those useful:" + @echo " * make update-all - Update buildsystem and all sources" @echo "" - @echo "cleanup:" - @echo "* make clean - cleanup from previous build an prepare for a new one" + @echo "Cleanup:" + @echo " * make clean - Clean up from previous build an prepare for a new one" + @echo "" + @echo "Total renew:" + @echo " * make all-clean - Reset buildsystem to delivery state" + @echo " but doesn't touch your local stuff" done: @echo "*************"