tools/Makefile
author "Yann E. MORIN" <yann.morin.1998@anciens.enib.fr>
Mon May 07 15:57:02 2007 +0000 (2007-05-07)
changeset 64 7dab8d1a2426
parent 19 d80e6dedcc13
child 176 59676cfb4ada
permissions -rw-r--r--
Fix glibc and uClibc downloading and extracting.
Although we no longer need the kernel config file, we now need to specify the kernel source directory when installing headers.
Re-order components downloading to match build order.
Fix the saveSample.sh script in case the referenced files are the same as the destination files.
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  ''