diff options
author | Yann E. MORIN" <yann.morin.1998@anciens.enib.fr> | 2007-07-16 16:34:36 +0000 |
---|---|---|
committer | Yann E. MORIN" <yann.morin.1998@anciens.enib.fr> | 2007-07-16 16:34:36 +0000 |
commit | 16503c2f06963f369b58831d681a985fe1249f1f (patch) | |
tree | abd11b3eadee6ef2031eb303eae5d1ad10dd76a7 /ct-ng.in | |
parent | e95b75f7e3bf17fc97b6d4eb7cc317cf970fb6fb (diff) | |
download | crosstool-ng-16503c2f06963f369b58831d681a985fe1249f1f.tar.gz crosstool-ng-16503c2f06963f369b58831d681a985fe1249f1f.tar.bz2 crosstool-ng-16503c2f06963f369b58831d681a985fe1249f1f.zip |
Add an action to print the version.
Diffstat (limited to 'ct-ng.in')
-rw-r--r-- | ct-ng.in | 6 |
1 files changed, 6 insertions, 0 deletions
@@ -59,6 +59,7 @@ help-tail:: @echo @echo 'Execute "$(CT_NG) config" or "$(CT_NG) menuconfig" to configure crosstool-NG' @echo 'Execute "$(CT_NG) build" to build your toolchain' + @echo 'Execute "$(CT_NG) version" to see the version' @echo 'See "man 1 ct-ng" for some help as well' # End help system @@ -94,8 +95,13 @@ PHONY += tarball #tarball: # @$(CT_LIB_DIR)/scripts/tarball.sh tarball: + @echo 'Tarbal creation disabled for now... Sorry.' @true +PHONY += version +version: + @echo 'This crosstool-NG version $(CT_VERSION)' + PHONY += clean clean:: @rm -f $(CT_TOP_DIR)/.config.* |