]> git.ipfire.org Git - thirdparty/autoconf.git/commitdiff
* Makefile.am (cvs_files): Add elisp-comp, mdate-sh.
authorAkim Demaille <akim@epita.fr>
Thu, 7 Nov 2002 14:03:41 +0000 (14:03 +0000)
committerAkim Demaille <akim@epita.fr>
Thu, 7 Nov 2002 14:03:41 +0000 (14:03 +0000)
(local_updates): New.
* Makefile.maint: Update, from CVS Bison.
(local_updates): New.

ChangeLog
Makefile.am
Makefile.in
Makefile.maint

index 5e8af271fcf916e24b204b2f4f6885396e341291..133b39468063e91408fe1f7c49d4c36af54f58f7 100644 (file)
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,10 @@
+2002-11-07  Akim Demaille  <akim@epita.fr>
+
+       * Makefile.am (cvs_files): Add elisp-comp, mdate-sh.
+       (local_updates): New.
+       * Makefile.maint: Update, from CVS Bison.
+       (local_updates): New.
+
 2002-11-06  Akim Demaille  <akim@epita.fr>
 
        * lib/autoconf/c.m4 (AC_LANG_FUNC_LINK_TRY): Wrap the `f'
index 709ecb9cbfa73ac873763fefee8d88adab06c4f2..cef5fdb1f24a97b17c660466e8725d506a03821c 100644 (file)
@@ -74,6 +74,9 @@ url_dir_list = \
 wget_files = $(srcdir)/config/config.guess $(srcdir)/config/config.sub \
             $(srcdir)/config/texinfo.tex \
             $(srcdir)/doc/standards.texi $(srcdir)/doc/make-stds.texi
-cvs_files = $(srcdir)/config/missing \
+cvs_files = $(srcdir)/config/elisp-comp \
+            $(srcdir)/config/mdate-sh \
+            $(srcdir)/config/missing \
             $(srcdir)/config/install-sh \
             $(srcdir)/config/mkinstalldirs
+local_updates = wget-update cvs-update
index 2d89f2921b43eaa36542d69212039c2aee10fdfb..02f239aeb2bd7f9e86faf040edb6bebd449238a9 100644 (file)
@@ -123,10 +123,13 @@ wget_files = $(srcdir)/config/config.guess $(srcdir)/config/config.sub \
             $(srcdir)/config/texinfo.tex \
             $(srcdir)/doc/standards.texi $(srcdir)/doc/make-stds.texi
 
-cvs_files = $(srcdir)/config/missing \
+cvs_files = $(srcdir)/config/elisp-comp \
+            $(srcdir)/config/mdate-sh \
+            $(srcdir)/config/missing \
             $(srcdir)/config/install-sh \
             $(srcdir)/config/mkinstalldirs
 
+local_updates = wget-update cvs-update
 subdir = .
 ACLOCAL_M4 = $(top_srcdir)/aclocal.m4
 mkinstalldirs = $(SHELL) $(top_srcdir)/config/mkinstalldirs
index ef8b99760b3983644127fdc49e43b8dcc71e54bb..e2e90f742f70553269fa9ba80f54265c64b90271 100644 (file)
@@ -264,12 +264,51 @@ announcement: NEWS ChangeLog $(rel-files)
              -e 'print "\n"."*"x70 ."\n"; s///; print; print "*"x70 ."\n"'; \
        )
 
+
+## ---------------- ##
+## Updating files.  ##
+## ---------------- ##
+
 WGET = wget
 ftp-gnu = ftp://ftp.gnu.org/gnu
 
 # Use mv, if you don't have/want move-if-change.
 move_if_change ?= move-if-change
 
+
+# --------------------- #
+# Updating everything.  #
+# --------------------- #
+
+.PHONY: update
+local_updates ?= wget-update cvs-update po-update
+update: $(local_updates)
+
+
+# ------------------- #
+# Updating PO files.  #
+# ------------------- #
+
+po_repo = http://www.iro.umontreal.ca/contrib/po/maint/$(PACKAGE)
+.PHONY: do-po-update po-update
+do-po-update:
+       tmppo=/tmp/$(PACKAGE)-$(VERSION)-po &&\
+       rm -rf $$tmppo && \
+       mkdir $$tmppo && \
+       (cd $$tmppo && $(WGET) -r -l1 -nd --no-parent -A '*.po' $(po_repo)) &&\
+       cp $$tmppo/*.po po
+       cd po && $(MAKE) update-po
+       $(MAKE) po-check
+
+po-update:
+       if test -d "po"; then \
+         $(MAKE) do-po-update; \
+       fi
+
+# -------------------------- #
+# Updating GNU build tools.  #
+# -------------------------- #
+
 # The following pseudo table associates a local directory and a URL
 # with each of the files that belongs to some other package and is
 # regularly updated from the specified URL.
@@ -302,6 +341,9 @@ cvs_files ?= $(srcdir)/config/depcomp $(srcdir)/config/missing $(srcdir)/config/
 automake_repo=:pserver:anoncvs:anoncvs@sources.redhat.com:/cvs/automake
 .PHONY: wget-update
 wget-update: $(get-targets)
+
+.PHONY: cvs-update
+cvs-update:
        for f in $(cvs_files); do                                     \
          test -f $$f || { echo "*** skipping $$f" 1>&2; continue; }; \
          file=$$(basename $$f);                                      \