diff -r 7f9bbf94b0bb -r b46de4c38396 steps.mk --- a/steps.mk Wed Apr 30 10:43:41 2008 +0000 +++ b/steps.mk Thu Jun 19 21:54:57 2008 +0000 @@ -30,10 +30,13 @@ @$(CT_NG) RESTART=$(patsubst %+,%,$@) build help-build:: - @echo ' liststeps - List all build steps' + @echo ' list-steps - List all build steps' -liststeps: +list-steps: @echo 'Available build steps, in order:' @for step in $(CT_STEPS); do \ echo " - $${step}"; \ done + @echo 'Use "$(CT_NG) " to execute only that step.' + @echo 'Use "$(CT_NG) +" to execute up to that step.' + @echo 'Use "$(CT_NG) +" to execute from that step onward.'