Bladeren bron

Add new updatepo target that calls `make updatepo' in all subdirectories.

Frank Lichtenheld 20 jaren geleden
bovenliggende
commit
f04fa24f52
2 gewijzigde bestanden met toevoegingen van 9 en 0 verwijderingen
  1. 3 0
      man/ChangeLog
  2. 6 0
      man/Makefile.am

+ 3 - 0
man/ChangeLog

@@ -2,5 +2,8 @@
 
 
 	* C/po/*.pot: Update.
 	* 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
 Older changes are documented in the top-level ChangeLog

+ 6 - 0
man/Makefile.am

@@ -2,3 +2,9 @@
 
 
 # C must be the first sub-directory because it contains the POT files.
 # C must be the first sub-directory because it contains the POT files.
 SUBDIRS = C de es fr hu ja pt_BR ru sv
 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