2007-07-01 19:04:20 +00:00
|
|
|
# Makefile for the tools/ sub-directory
|
|
|
|
|
|
|
|
# Here, we can update the config.* scripts.
|
|
|
|
# If we're in CT_LIB_DIR, then CT_LIB_DIR == CT_TOP_DIR, and we can update those
|
|
|
|
# scripts for later inclusion mainline. If CT_LIB_DIR != CT_TOP_DIR, then those
|
|
|
|
# scripts are downloaded only for use in CT_TOP_DIR.
|
|
|
|
|
2007-02-24 11:00:05 +00:00
|
|
|
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"
|
|
|
|
|
2007-07-01 19:04:20 +00:00
|
|
|
$(CT_TOP_DIR)/tools:
|
|
|
|
@mkdir -p $(CT_TOP_DIR)/tools
|
|
|
|
|
|
|
|
PHONY += updatetools
|
|
|
|
updatetools: $(CT_TOP_DIR)/tools $(CONFIG_SUB_DEST) $(CONFIG_GUESS_DEST)
|
|
|
|
|
|
|
|
$(CONFIG_SUB_DEST):
|
|
|
|
@wget $(CONFIG_SUB_SRC) -O $@
|
|
|
|
@chmod u+rwx,go+rx-w $@
|
|
|
|
|
|
|
|
$(CONFIG_GUESS_DEST):
|
|
|
|
@wget $(CONFIG_GUESS_SRC) -O $@
|
|
|
|
@chmod u+rwx,go+rx-w $@
|
2007-02-24 11:00:05 +00:00
|
|
|
|
2007-06-17 16:24:23 +00:00
|
|
|
help-distrib::
|
2007-08-15 14:59:37 +00:00
|
|
|
@echo ' updatetools - Update the config tools'
|
2007-07-01 19:04:20 +00:00
|
|
|
|
|
|
|
distclean::
|
|
|
|
@[ $(CT_TOP_DIR) = $(CT_LIB_DIR) ] || rm -rf $(CT_TOP_DIR)/tools
|