]> git.proxmox.com Git - mirror_qemu.git/blob - po/Makefile
po: Fix Makefile rules for in-tree builds without configuration
[mirror_qemu.git] / po / Makefile
1 # This makefile is very special as it's meant to build as part of the build
2 # process and also within the source tree to update the translation files.
3
4 # Set SRC_PATH for in-tree builds without configuration.
5 SRC_PATH=..
6
7 # The default target must come before any include statements.
8 all:
9
10 .PHONY: all build clean install update
11
12 -include ../config-host.mak
13 include $(SRC_PATH)/rules.mak
14
15 PO_PATH=$(SRC_PATH)/po
16
17 VERSION=$(shell cat $(SRC_PATH)/VERSION)
18 SRCS=$(filter-out $(PO_PATH)/messages.po,$(wildcard $(PO_PATH)/*.po))
19 OBJS=$(patsubst $(PO_PATH)/%.po,%.mo,$(SRCS))
20
21 vpath %.po $(PO_PATH)
22
23 all:
24 @echo "Use 'make update' to update translation files or use 'make build'"
25 @echo "or 'make install' to build and install the translation files."
26
27 update: $(SRCS)
28
29 build: $(OBJS)
30
31 clean:
32 $(RM) $(OBJS)
33
34 install: $(OBJS)
35 for obj in $(OBJS); do \
36 base=`basename $$obj .mo`; \
37 $(INSTALL) -d $(DESTDIR)$(prefix)/share/locale/$$base/LC_MESSAGES; \
38 $(INSTALL) -m644 $$obj $(DESTDIR)$(prefix)/share/locale/$$base/LC_MESSAGES/qemu.mo; \
39 done
40
41 %.mo: %.po
42 $(call quiet-command, msgfmt -o $@ $<, " GEN $@")
43
44 $(PO_PATH)/messages.po: $(SRC_PATH)/ui/gtk.c
45 $(call quiet-command, ( cd $(SRC_PATH) && \
46 xgettext -o - --from-code=UTF-8 --foreign-user \
47 --package-name=QEMU --package-version=$(VERSION) \
48 --msgid-bugs-address=qemu-devel@nongnu.org -k_ -C ui/gtk.c | \
49 sed -e s/CHARSET/UTF-8/) >$@, " GEN $@")
50
51 $(PO_PATH)/%.po: $(PO_PATH)/messages.po
52 $(call quiet-command, msgmerge -q $@ $< > $@.bak && mv $@.bak $@, " GEN $@")