From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from eggs.gnu.org ([208.118.235.92]:48614) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1UMiHL-0004lS-8i for qemu-devel@nongnu.org; Mon, 01 Apr 2013 13:12:20 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1UMiHE-00031N-OX for qemu-devel@nongnu.org; Mon, 01 Apr 2013 13:12:19 -0400 Received: from hall.aurel32.net ([2001:470:1f15:c4f::1]:53156) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1UMiHE-000318-He for qemu-devel@nongnu.org; Mon, 01 Apr 2013 13:12:12 -0400 From: Aurelien Jarno Date: Mon, 1 Apr 2013 19:12:03 +0200 Message-Id: <1364836326-8707-3-git-send-email-aurelien@aurel32.net> In-Reply-To: <1364836326-8707-1-git-send-email-aurelien@aurel32.net> References: <1364836326-8707-1-git-send-email-aurelien@aurel32.net> Subject: [Qemu-devel] [PATCH 2/5] po/Makefile: simplify List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , To: qemu-devel@nongnu.org Cc: Anthony Liguori , Aurelien Jarno In the hope we get more translations, we should not have to modify po/Makefile for each of them. Cc: Anthony Liguori Signed-off-by: Aurelien Jarno --- po/Makefile | 12 ++++-------- 1 file changed, 4 insertions(+), 8 deletions(-) diff --git a/po/Makefile b/po/Makefile index 2b4420f..2c0193e 100644 --- a/po/Makefile +++ b/po/Makefile @@ -2,9 +2,8 @@ # process and also within the source tree to update the translation files. VERSION=$(shell cat ../VERSION) -TRANSLATIONS=de_DE it -SRCS=$(addsuffix .po, $(TRANSLATIONS)) -OBJS=$(addsuffix .mo, $(TRANSLATIONS)) +SRCS=$(filter-out messages.po,$(wildcard *.po)) +OBJS=$(patsubst %.po,%.mo,$(SRCS)) SRC_PATH=.. @@ -37,10 +36,7 @@ install: $(OBJS) messages.po: $(SRC_PATH)/ui/gtk.c @xgettext -o $@ --foreign-user --package-name=QEMU --package-version=1.0.50 --msgid-bugs-address=qemu-devel@nongnu.org -k_ -C $< -de_DE.po: messages.po $(SRC_PATH)/ui/gtk.c +%.po: messages.po @msgmerge $@ $< > $@.bak && mv $@.bak $@ -it.po: messages.po $(SRC_PATH)/ui/gtk.c - @msgmerge $@ $< > $@.bak && mv $@.bak $@ - -.PHONY: $(SRCS) clean all +.PHONY: clean all -- 1.7.10.4