tools/Makefile
author "Yann E. MORIN" <yann.morin.1998@anciens.enib.fr>
Sun Jun 17 14:51:37 2007 +0000 (2007-06-17)
changeset 174 75f3f975e2ad
parent 19 d80e6dedcc13
child 176 59676cfb4ada
permissions -rw-r--r--
The log file is no longer configurable: it is always "${CT_PREFIX_DIR}/build.log".
Add an option to compress the log file upon successfull build.
Make rendering the toolchain read-only optional.
A few eye-candy fixes.
yann@1
     1
CONFIG_SUB_SRC="http://cvs.savannah.gnu.org/viewcvs/*checkout*/config/config/config.sub"
yann@1
     2
CONFIG_SUB_DEST="$(CT_TOP_DIR)/tools/config.sub"
yann@1
     3
CONFIG_GUESS_SRC="http://cvs.savannah.gnu.org/viewcvs/*checkout*/config/config/config.guess"
yann@1
     4
CONFIG_GUESS_DEST="$(CT_TOP_DIR)/tools/config.guess"
yann@1
     5
yann@1
     6
updatetools:
yann@1
     7
	@wget "$(CONFIG_SUB_SRC)" -O "$(CONFIG_SUB_DEST)"
yann@1
     8
	@wget "$(CONFIG_GUESS_SRC)" -O "$(CONFIG_GUESS_DEST)"
yann@1
     9
yann@1
    10
help::
yann@19
    11
	@echo  '  updatetools    - Update the config tools'
yann@63
    12
	@echo  ''