diff options
author | Aurelien Jarno | 2013-04-01 19:12:03 +0200 |
---|---|---|
committer | Anthony Liguori | 2013-04-02 15:13:31 +0200 |
commit | f84756554e32d97db3aa949db1dd58c7eea62375 (patch) | |
tree | 0e75524d0ef8c81fa16c1c0a5763966e5953bbbe /po | |
parent | gtk: make more messages translatable (diff) | |
download | qemu-f84756554e32d97db3aa949db1dd58c7eea62375.tar.gz qemu-f84756554e32d97db3aa949db1dd58c7eea62375.tar.xz qemu-f84756554e32d97db3aa949db1dd58c7eea62375.zip |
po/Makefile: simplify
In the hope we get more translations, we should not have to modify
po/Makefile for each of them.
Cc: Anthony Liguori <aliguori@us.ibm.com>
Signed-off-by: Aurelien Jarno <aurelien@aurel32.net>
Reviewed-by: Anthony Liguori <aliguori@us.ibm.com>
Message-id: 1364836326-8707-3-git-send-email-aurelien@aurel32.net
Signed-off-by: Anthony Liguori <aliguori@us.ibm.com>
Diffstat (limited to 'po')
-rw-r--r-- | po/Makefile | 12 |
1 files changed, 4 insertions, 8 deletions
diff --git a/po/Makefile b/po/Makefile index 2b4420f178..2c0193ed14 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 |