# HG changeset patch # User "Yann E. MORIN" # Date 1184014532 0 # Node ID 9c5809b7fd238b619d8320504da85da915389baf # Parent 5eb68e6c00b0d1b81d71e13c03095a30d5641d37 Separate clean actions from build actions; Re-label "Preconfigured actions" to "Preconfigured toolchains"; Small eye-candy fix in the help text for liststeps. diff -r 5eb68e6c00b0 -r 9c5809b7fd23 Makefile.steps --- a/Makefile.steps Mon Jul 09 18:37:21 2007 +0000 +++ b/Makefile.steps Mon Jul 09 20:55:32 2007 +0000 @@ -26,7 +26,7 @@ @$(CT_NG) RESTART=$(patsubst %-,%,$@) build help-build:: - @echo ' liststeps - Lists all build steps' + @echo ' liststeps - List all build steps' liststeps: @echo 'Available build steps, in order:' diff -r 5eb68e6c00b0 -r 9c5809b7fd23 ct-ng.in --- a/ct-ng.in Mon Jul 09 18:37:21 2007 +0000 +++ b/ct-ng.in Mon Jul 09 20:55:32 2007 +0000 @@ -26,7 +26,7 @@ HOST_CC = gcc -funsigned-char # Help system -help:: help-head help-config help-samples help-build help-distrib help-env help-tail +help:: help-head help-config help-samples help-build help-clean help-distrib help-env help-tail help-head:: @echo 'Available actions:' @@ -37,12 +37,16 @@ help-samples:: @echo - @echo 'Preconfigured actions:' + @echo 'Preconfigured toolchains:' help-build:: @echo @echo 'Build actions:' +help-clean:: + @echo + @echo 'Clean actions:' + help-distrib:: @echo @echo 'Distribution actions:' @@ -61,6 +65,8 @@ help-build:: @echo ' build - Build the toolchain' + +help-clean:: @echo ' clean - Remove generated files' @echo ' distclean - Remove generated files, configuration and build directories'