diff options
author | Yann E. MORIN" <yann.morin.1998@anciens.enib.fr> | 2009-05-13 18:10:47 +0000 |
---|---|---|
committer | Yann E. MORIN" <yann.morin.1998@anciens.enib.fr> | 2009-05-13 18:10:47 +0000 |
commit | e89072b5a5922a08bcf3f1f10f3bd12806918f23 (patch) | |
tree | d48438023543db61b9e8c1efe01127293cf1130a /Makefile.in | |
parent | 1c1d672f87c1fbf0428486f0eeb4f2791483570a (diff) | |
download | crosstool-ng-e89072b5a5922a08bcf3f1f10f3bd12806918f23.tar.gz crosstool-ng-e89072b5a5922a08bcf3f1f10f3bd12806918f23.tar.bz2 crosstool-ng-e89072b5a5922a08bcf3f1f10f3bd12806918f23.zip |
Add a new action: show-tuple
- in a directory containing a crosstool-NG configuration,
prints the tuple of the configured target to stdout.
-------- diffstat follows --------
/trunk/Makefile.in | 4 3 1 0 +++-
/trunk/scripts/showTuple.sh.in | 30 30 0 0 ++++++++++++++++++++++++++++++
/trunk/ct-ng.comp | 2 1 1 0 +-
/trunk/ct-ng.in | 10 9 1 0 +++++++++-
4 files changed, 43 insertions(+), 3 deletions(-)
Diffstat (limited to 'Makefile.in')
-rw-r--r-- | Makefile.in | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/Makefile.in b/Makefile.in index cb2bf42f..2bef4515 100644 --- a/Makefile.in +++ b/Makefile.in @@ -102,7 +102,7 @@ uninstall: real-uninstall #-------------------------------------- # Build rules -build-bin: ct-ng scripts/crosstool-NG.sh scripts/saveSample.sh +build-bin: ct-ng scripts/crosstool-NG.sh scripts/saveSample.sh scripts/showTuple.sh @chmod 755 $^ build-lib: paths.mk @@ -151,6 +151,8 @@ clean-bin: @rm -f scripts/crosstool-NG.sh @echo " RM 'script/saveSample.sh'" @rm -f scripts/saveSample.sh + @echo " RM 'script/showTuple.sh'" + @rm -f scripts/showTuple.sh clean-lib: @echo " RM 'paths.mk'" |