diff options
author | Yann E. MORIN" <yann.morin.1998@anciens.enib.fr> | 2007-07-09 20:55:32 +0000 |
---|---|---|
committer | Yann E. MORIN" <yann.morin.1998@anciens.enib.fr> | 2007-07-09 20:55:32 +0000 |
commit | ba2827e22df32bd36ab081ccf0b58cd0389ab310 (patch) | |
tree | b7b5cb6c55e08fb18e5bd9ae23dd39c256ed3576 /ct-ng.in | |
parent | 02e0cb51dd856ead80481e063f876da8ac221936 (diff) | |
download | crosstool-ng-ba2827e22df32bd36ab081ccf0b58cd0389ab310.tar.gz crosstool-ng-ba2827e22df32bd36ab081ccf0b58cd0389ab310.tar.bz2 crosstool-ng-ba2827e22df32bd36ab081ccf0b58cd0389ab310.zip |
Separate clean actions from build actions;
Re-label "Preconfigured actions" to "Preconfigured toolchains";
Small eye-candy fix in the help text for liststeps.
Diffstat (limited to 'ct-ng.in')
-rw-r--r-- | ct-ng.in | 10 |
1 files changed, 8 insertions, 2 deletions
@@ -26,7 +26,7 @@ all: help 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-config:: 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-tail:: help-build:: @echo ' build - Build the toolchain' + +help-clean:: @echo ' clean - Remove generated files' @echo ' distclean - Remove generated files, configuration and build directories' |