]> git.proxmox.com Git - qemu.git/blob - po/Makefile
qdev: Introduce qdev_prop_set_globals_for_type()
[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 VERSION=$(shell cat ../VERSION)
5 SRCS=$(filter-out messages.po,$(wildcard *.po))
6 OBJS=$(patsubst %.po,%.mo,$(SRCS))
7
8 SRC_PATH=..
9
10 -include ../config-host.mak
11
12 vpath %.po $(SRC_PATH)/po
13
14 all:
15 @echo Use 'make update' to update translation files
16 @echo or us 'make build' or 'make install' to build and install
17 @echo the translation files
18
19 update: $(SRCS)
20
21 build: $(OBJS)
22
23 clean:
24 $(RM) $(OBJS)
25
26 install: $(OBJS)
27 for obj in $(OBJS); do \
28 base=`basename $$obj .mo`; \
29 $(INSTALL) -d $(DESTDIR)$(prefix)/share/locale/$$base/LC_MESSAGES; \
30 $(INSTALL) -m644 $$obj $(DESTDIR)$(prefix)/share/locale/$$base/LC_MESSAGES/qemu.mo; \
31 done
32
33 %.mo: %.po
34 @msgfmt -o $@ $(SRC_PATH)/po/`basename $@ .mo`.po
35
36 messages.po: $(SRC_PATH)/ui/gtk.c
37 @xgettext -o $@ --foreign-user --package-name=QEMU --package-version=$(VERSION) --msgid-bugs-address=qemu-devel@nongnu.org -k_ -C $<
38
39 %.po: messages.po
40 @msgmerge $@ $< > $@.bak && mv $@.bak $@
41
42 .PHONY: clean all