diff options
author | Yann E. MORIN" <yann.morin.1998@anciens.enib.fr> | 2008-06-01 21:12:00 +0000 |
---|---|---|
committer | Yann E. MORIN" <yann.morin.1998@anciens.enib.fr> | 2008-06-01 21:12:00 +0000 |
commit | 9d8b0a6829a654a414244ca77923faf40cf1e74f (patch) | |
tree | 9accdc78697f9a559c7e2872027d6cb1819d4a49 /steps.mk | |
parent | 5db396b048fedb44b3e28345e86380d7ed75ba7a (diff) | |
download | crosstool-ng-9d8b0a6829a654a414244ca77923faf40cf1e74f.tar.gz crosstool-ng-9d8b0a6829a654a414244ca77923faf40cf1e74f.tar.bz2 crosstool-ng-9d8b0a6829a654a414244ca77923faf40cf1e74f.zip |
Rework a little bit the steps and samples help entries.
/trunk/docs/overview.txt | 2 1 1 0 +-
/trunk/steps.mk | 7 5 2 0 +++++--
/trunk/samples/samples.mk | 8 5 3 0 +++++---
/trunk/ct-ng.in | 5 3 2 0 +++--
4 files changed, 14 insertions(+), 8 deletions(-)
Diffstat (limited to 'steps.mk')
-rw-r--r-- | steps.mk | 7 |
1 files changed, 5 insertions, 2 deletions
@@ -30,10 +30,13 @@ $(patsubst %,%+,$(CT_STEPS)): @$(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) <step>" to execute only that step.' + @echo 'Use "$(CT_NG) +<step>" to execute up to that step.' + @echo 'Use "$(CT_NG) <step>+" to execute from that step onward.' |