mirror of
https://github.com/crosstool-ng/crosstool-ng.git
synced 2024-12-19 12:57:53 +00:00
58b4c6d0a4
- reorder most of the environment setup, - geting, extracting and patching are now components' sub-actions, - save the current config as a sample to be used as a pre-configured target.
13 lines
476 B
Makefile
13 lines
476 B
Makefile
CONFIG_SUB_SRC="http://cvs.savannah.gnu.org/viewcvs/*checkout*/config/config/config.sub"
|
|
CONFIG_SUB_DEST="$(CT_TOP_DIR)/tools/config.sub"
|
|
CONFIG_GUESS_SRC="http://cvs.savannah.gnu.org/viewcvs/*checkout*/config/config/config.guess"
|
|
CONFIG_GUESS_DEST="$(CT_TOP_DIR)/tools/config.guess"
|
|
|
|
updatetools:
|
|
@wget "$(CONFIG_SUB_SRC)" -O "$(CONFIG_SUB_DEST)"
|
|
@wget "$(CONFIG_GUESS_SRC)" -O "$(CONFIG_GUESS_DEST)"
|
|
|
|
help::
|
|
@echo ' updatetools - Update the config tools'
|
|
@echo ''
|