summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAkim Demaille <akim@epita.fr>2001-08-27 10:44:39 +0000
committerAkim Demaille <akim@epita.fr>2001-08-27 10:44:39 +0000
commite4ad4676be674d4a1b6414a5f88511ecc7d44f73 (patch)
treea9d2f3d2e66c5235c91e17203b0dfe130448d966
parent7b50efe542ffe807244ca4b1302c8da574d1fe8d (diff)
downloadbison-e4ad4676be674d4a1b6414a5f88511ecc7d44f73.tar.gz
* Makefile.maint: Sync. again with CVS Autoconf.
-rw-r--r--ChangeLog4
-rw-r--r--Makefile.maint12
2 files changed, 12 insertions, 4 deletions
diff --git a/ChangeLog b/ChangeLog
index 7d4d2af7..a71456f6 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,5 +1,9 @@
2001-08-27 Akim Demaille <akim@epita.fr>
+ * Makefile.maint: Sync. again with CVS Autoconf.
+
+2001-08-27 Akim Demaille <akim@epita.fr>
+
* Makefile.maint: Formatting changes.
(po-update, cvs-update, update): New targets.
(AMTAR): Remove.
diff --git a/Makefile.maint b/Makefile.maint
index d672b30b..d3a34e02 100644
--- a/Makefile.maint
+++ b/Makefile.maint
@@ -58,13 +58,17 @@ move_if_change ?= move-if-change
# ------------------- #
po_repo = http://www.iro.umontreal.ca/contrib/po/maint/$(PACKAGE)
-.PHONY po-update:
-po-update:
+.PHONY: do-po-update po-update
+do-po-update:
cd $(srcdir)/po && wget -r -l1 -nd --no-parent -A '*.po' $(po_repo)
rm $(srcdir)/po/index.html
- cd po && make update-po
- make po-check
+ cd po && $(MAKE) update-po
+ $(MAKE) po-check
+po-update:
+ if test -d "po"; then \
+ $(MAKE) do-po-update; \
+ fi
# -------------------------- #
# Updating GNU build tools. #