diff options
author | Yann E. MORIN" <yann.morin.1998@anciens.enib.fr> | 2007-07-02 19:40:54 +0000 |
---|---|---|
committer | Yann E. MORIN" <yann.morin.1998@anciens.enib.fr> | 2007-07-02 19:40:54 +0000 |
commit | 9265403b8bfd3c1f20f81a52a3f2c6f7711dffb5 (patch) | |
tree | a1191f479d39cf9db1858fa4ebaee6c9aac68601 /ct-ng.in | |
parent | 928ccb1f4172c14c01991ca64783c8ac0aeecbaf (diff) | |
download | crosstool-ng-9265403b8bfd3c1f20f81a52a3f2c6f7711dffb5.tar.gz crosstool-ng-9265403b8bfd3c1f20f81a52a3f2c6f7711dffb5.tar.bz2 crosstool-ng-9265403b8bfd3c1f20f81a52a3f2c6f7711dffb5.zip |
Get rid of eclipse fiels once and for all.
Homogenise the references to crosstool-NG:
- the project is named "crosstool-NG"
- the front-end is named "ct-ng"
- don't use shortcuts (such as "ct-ng" to stand for "crosstool-NG")
Default action is to print help.
Don't speak of make rules when dumping help, just speak of actions.
Diffstat (limited to 'ct-ng.in')
-rw-r--r-- | ct-ng.in | 20 |
1 files changed, 10 insertions, 10 deletions
@@ -13,7 +13,7 @@ export CT_TOP_DIR:=$(shell pwd) export CT_LIB_DIR:=@@CT_LIBDIR@@ export CT_DOC_DIR:=@@CT_DOCDIR@@ -# This is crosstool-ng version string +# This is crosstool-NG version string export CT_VERSION=$(shell cat $(CT_LIB_DIR)/version) export CT_STOP=$(STOP) @@ -21,7 +21,7 @@ export CT_RESTART=$(RESTART) .PHONY: $(PHONY) PHONY += all -all: build +all: help HOST_CC = gcc -funsigned-char @@ -29,23 +29,23 @@ HOST_CC = gcc -funsigned-char help:: help-head help-config help-samples help-build help-distrib help-env help-tail help-head:: - @echo 'Available make rules:' + @echo 'Available actions:' help-config:: @echo - @echo 'Configuration rules:' + @echo 'Configuration actions:' help-samples:: @echo - @echo 'Preconfigured rules:' + @echo 'Preconfigured actions:' help-build:: @echo - @echo 'Build rules:' + @echo 'Build actions:' help-distrib:: @echo - @echo 'Distribution rules:' + @echo 'Distribution actions:' help-env:: @echo @@ -53,14 +53,14 @@ help-env:: help-tail:: @echo - @echo 'Execute "$(CT_NG) config" or "$(CT_NG) menuconfig" to configure ct-ng' - @echo 'Execute "$(CT_NG)" or "$(CT_NG) all" to build all targets marked with [*]' + @echo 'Execute "$(CT_NG) config" or "$(CT_NG) menuconfig" to configure crosstool-NG' + @echo 'Execute "$(CT_NG) build" to build your toolchain' @echo 'See "man 1 ct-ng" for some help as well' # End help system help-build:: - @echo '* build - Build the toolchain' + @echo ' build - Build the toolchain' @echo ' clean - Remove generated files' @echo ' distclean - Remove generated files, configuration and build directories' |