diff -r 7f9bbf94b0bb -r b2261f6f9bc2 steps.mk --- a/steps.mk Wed Apr 30 10:43:41 2008 +0000 +++ b/steps.mk Wed Jun 11 20:40:38 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.'