From 412325bd35c084c7e9bea62801774516a0baf0a9 Mon Sep 17 00:00:00 2001 From: Andreas Baumann Date: Wed, 18 Mar 2009 15:22:10 +0100 Subject: added check and merge po targets --- makefiles/gmake/top.mk | 15 +++++++++++++++ 1 file changed, 15 insertions(+) (limited to 'makefiles/gmake/top.mk') 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 -- cgit v1.2.3-54-g00ecf