From: Frank Lichtenheld Date: Fri, 17 Feb 2006 16:36:08 +0000 (+0000) Subject: Add new updatepo target that calls `make updatepo' in all subdirectories. X-Git-Url: https://err.no/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=f04fa24f528aa78b9d91998eabc6686c8716dcf9;p=dpkg Add new updatepo target that calls `make updatepo' in all subdirectories. --- 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