mirror of
https://github.com/crosstool-ng/crosstool-ng.git
synced 2024-12-23 22:52:23 +00:00
1906cf93f8
You might just say: 'Yeah! crosstool-NG's got its own repo!". Unfortunately, that's because the previous repo got damaged beyond repair and I had no backup. That means I'm putting backups in place in the afternoon. That also means we've lost history... :-(
12 lines
463 B
Makefile
12 lines
463 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'
|