From f04fa24f528aa78b9d91998eabc6686c8716dcf9 Mon Sep 17 00:00:00 2001 From: Frank Lichtenheld Date: Fri, 17 Feb 2006 16:36:08 +0000 Subject: [PATCH] Add new updatepo target that calls `make updatepo' in all subdirectories. --- man/ChangeLog | 3 +++ man/Makefile.am | 6 ++++++ 2 files changed, 9 insertions(+) diff --git a/man/ChangeLog b/man/ChangeLog index 906ac10e..fc9d603e 100644 --- a/man/ChangeLog +++ b/man/ChangeLog @@ -2,5 +2,8 @@ * C/po/*.pot: Update. + * Makefile.am (updatepo): New target that calls + `make updatepo' in all subdirectories. + Older changes are documented in the top-level ChangeLog diff --git a/man/Makefile.am b/man/Makefile.am index b1d4385d..63f86917 100644 --- a/man/Makefile.am +++ b/man/Makefile.am @@ -2,3 +2,9 @@ # C must be the first sub-directory because it contains the POT files. SUBDIRS = C de es fr hu ja pt_BR ru sv + +.PHONY: updatepo +updatepo: + list='$(SUBDIRS)'; for dir in $$list; do \ + $(MAKE) -C "$$dir" updatepo; \ + done -- 2.39.5