tools/Makefile
author "Yann E. MORIN" <yann.morin.1998@anciens.enib.fr>
Thu May 10 21:33:35 2007 +0000 (2007-05-10)
changeset 85 ac2845835b13
parent 19 d80e6dedcc13
child 176 59676cfb4ada
permissions -rw-r--r--
Update the way we handle directories supplied by the user:
- the tarball directory is considered as a local copy, and tarballs are copied to a working area,
- the sources and build directories (CT_SRC_DIR and CT_BUILD_DIR) are now computed, and no longer an option,
- the build dir has been renamed from 'build' to 'targets'.
That should ease preparing a tarball of the resulting target.
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  ''