summaryrefslogtreecommitdiff
path: root/maint.mk
diff options
context:
space:
mode:
authorEric Blake <ebb9@byu.net>2008-10-08 09:33:48 -0600
committerEric Blake <ebb9@byu.net>2008-10-08 09:43:25 -0600
commit5e7bc716e5670e929b0074ead8e4bd3b745a1ff8 (patch)
tree7ec7c6a2d5af17fccec672ed7d2f99c026710c11 /maint.mk
parent734abde3de165b9031bac6345bbca0314c314dcb (diff)
downloadautoconf-5e7bc716e5670e929b0074ead8e4bd3b745a1ff8.tar.gz
Resync from gnulib.
* cfg.mk (cvs_executable_files, cvs_files): Rewrite... (fetch): ...into new target. (executable-update): Delete, now that it is unused. * maint.mk (update, local_updates, cvs_files, gnulib_repo) (wget-update, cvs-update): Likewise. * HACKING (Update the foreign files): Document new procedure. * GNUmakefile: Resync from upstream, via new 'make fetch'. * build-aux/config.guess: Likewise. Signed-off-by: Eric Blake <ebb9@byu.net>
Diffstat (limited to 'maint.mk')
-rw-r--r--maint.mk38
1 files changed, 0 insertions, 38 deletions
diff --git a/maint.mk b/maint.mk
index 7149adf8..227720e8 100644
--- a/maint.mk
+++ b/maint.mk
@@ -549,44 +549,6 @@ www-gnu = http://www.gnu.org
# Use mv, if you don't have/want move-if-change.
move_if_change ?= move-if-change
-
-# --------------------- #
-# Updating everything. #
-# --------------------- #
-
-.PHONY: update
-local_updates ?= cvs-update
-update: $(local_updates)
-
-
-# -------------------------- #
-# Updating GNU build tools. #
-# -------------------------- #
-
-cvs_files ?= \
- $(srcdir)/build-aux/depcomp \
- $(srcdir)/build-aux/install-sh \
- $(srcdir)/build-aux/missing
-gnulib_repo=:pserver:anonymous@cvs.savannah.gnu.org:/sources/gnulib
-.PHONY: wget-update
-wget-update: $(get-targets)
-
-.PHONY: cvs-update
-cvs-update:
- fail=; \
- for f in $(cvs_files) dummy; do \
- test $$f = dummy && continue; \
- test -f $$f || { echo "*** skipping $$f" 1>&2; continue; }; \
- cvs diff $$f > /dev/null \
- || { echo "*** $$f is locally modified; skipping it" 1>&2; \
- fail=yes; continue; }; \
- file=$$(expr "X$$f" : 'X$(srcdir)/\(.*\)'); \
- echo checking out $$file...; \
- $(CVS) -d $(gnulib_repo) co -p gnulib/$$file >$$f.t \
- && $(move_if_change) $$f.t $$f; \
- done; \
- test "$$fail" && exit 1
-
emit_upload_commands:
@echo =====================================
@echo =====================================