aboutsummaryrefslogtreecommitdiff
path: root/po/Makefile
blob: 2b4420f1780acf94958b6ee0c9db0a73f44da814 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
# This makefile is very special as it's meant to build as part of the build
# 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))

SRC_PATH=..

-include ../config-host.mak

vpath %.po $(SRC_PATH)/po

all:
	@echo Use 'make update' to update translation files
	@echo or us 'make build' or 'make install' to build and install
	@echo the translation files

update: $(SRCS)

build: $(OBJS)

clean:
	$(RM) $(OBJS)

install: $(OBJS)
	for obj in $(OBJS); do \
	    base=`basename $$obj .mo`; \
	    $(INSTALL) -d $(DESTDIR)$(prefix)/share/locale/$$base/LC_MESSAGES; \
	    $(INSTALL) -m644 $$obj $(DESTDIR)$(prefix)/share/locale/$$base/LC_MESSAGES/qemu.mo; \
	done

%.mo:
	@msgfmt -o $@ $(SRC_PATH)/po/`basename $@ .mo`.po

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
	@msgmerge $@ $< > $@.bak && mv $@.bak $@

it.po: messages.po $(SRC_PATH)/ui/gtk.c
	@msgmerge $@ $< > $@.bak && mv $@.bak $@

.PHONY: $(SRCS) clean all