]> err.no Git - dpkg/commitdiff
Add new updatepo target that calls `make updatepo' in all subdirectories.
authorFrank Lichtenheld <djpig@debian.org>
Fri, 17 Feb 2006 16:36:08 +0000 (16:36 +0000)
committerFrank Lichtenheld <djpig@debian.org>
Fri, 17 Feb 2006 16:36:08 +0000 (16:36 +0000)
man/ChangeLog
man/Makefile.am

index 906ac10e369288fc487d043ba47fcc400b024237..fc9d603efea7df64f639f212c1dfe2a2dcec9e90 100644 (file)
@@ -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
index b1d4385d67ed5852c7af4a563c52e53a82473444..63f86917a8e9cd475e1e7cf0acbd908b991c09f1 100644 (file)
@@ -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