2013-02-20 14:43:24 +01:00
|
|
|
# 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)
|
2013-04-01 19:12:03 +02:00
|
|
|
SRCS=$(filter-out messages.po,$(wildcard *.po))
|
|
|
|
OBJS=$(patsubst %.po,%.mo,$(SRCS))
|
2013-02-20 14:43:24 +01:00
|
|
|
|
|
|
|
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
|
|
|
|
|
2013-04-02 11:28:24 +02:00
|
|
|
%.mo: %.po
|
2013-02-20 14:43:24 +01:00
|
|
|
@msgfmt -o $@ $(SRC_PATH)/po/`basename $@ .mo`.po
|
|
|
|
|
|
|
|
messages.po: $(SRC_PATH)/ui/gtk.c
|
2013-04-01 19:12:04 +02:00
|
|
|
@xgettext -o $@ --foreign-user --package-name=QEMU --package-version=$(VERSION) --msgid-bugs-address=qemu-devel@nongnu.org -k_ -C $<
|
2013-02-20 14:43:24 +01:00
|
|
|
|
2013-04-01 19:12:03 +02:00
|
|
|
%.po: messages.po
|
2013-02-20 14:43:24 +01:00
|
|
|
@msgmerge $@ $< > $@.bak && mv $@.bak $@
|
|
|
|
|
2013-04-01 19:12:03 +02:00
|
|
|
.PHONY: clean all
|