summaryrefslogtreecommitdiff
path: root/makefiles/gmake/top.mk
diff options
context:
space:
mode:
authorAndreas Baumann <abaumann@yahoo.com>2009-03-18 15:22:10 +0100
committerAndreas Baumann <abaumann@yahoo.com>2009-03-18 15:22:10 +0100
commit412325bd35c084c7e9bea62801774516a0baf0a9 (patch)
treeac8c02725ebf8224d402ad2d060a7837995d395a /makefiles/gmake/top.mk
parentfea8be0ec6cead21a787a424feacc7a45398e630 (diff)
downloadwolfbones-412325bd35c084c7e9bea62801774516a0baf0a9.tar.gz
wolfbones-412325bd35c084c7e9bea62801774516a0baf0a9.tar.bz2
added check and merge po targets
Diffstat (limited to 'makefiles/gmake/top.mk')
-rw-r--r--makefiles/gmake/top.mk15
1 files changed, 15 insertions, 0 deletions
diff --git a/makefiles/gmake/top.mk b/makefiles/gmake/top.mk
index 037c37f..c276758 100644
--- a/makefiles/gmake/top.mk
+++ b/makefiles/gmake/top.mk
@@ -49,4 +49,19 @@ doc:
help:
@cat $(TOPDIR)/makefiles/gmake/help.mk
+.PHONY: init-po
+init-po:
+ @test -z "$(SUBDIRS)" || ( set -e; for d in $(SUBDIRS)""; do \
+ (set -e; $(MAKE) -C $$d init-po || exit 1); done)
+
+.PHONY: merge-po
+merge-po:
+ @test -z "$(SUBDIRS)" || ( set -e; for d in $(SUBDIRS)""; do \
+ (set -e; $(MAKE) -C $$d merge-po || exit 1); done)
+
+.PHONY: check-po
+check-po:
+ @test -z "$(SUBDIRS)" || ( set -e; for d in $(SUBDIRS)""; do \
+ (set -e; $(MAKE) -C $$d check-po || exit 1); done)
+
-include $(TOPDIR)/makefiles/gmake/dist.mk