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.
|
|
|
|
|
2013-07-05 22:55:42 +02:00
|
|
|
# Set SRC_PATH for in-tree builds without configuration.
|
2013-02-20 14:43:24 +01:00
|
|
|
SRC_PATH=..
|
|
|
|
|
2014-07-18 16:52:29 +02:00
|
|
|
# The default target must come before any include statements.
|
|
|
|
all:
|
|
|
|
|
|
|
|
.PHONY: all build clean install update
|
|
|
|
|
2014-09-22 16:19:05 +02:00
|
|
|
%.mo: %.po
|
|
|
|
$(call quiet-command, msgfmt -o $@ $<, " GEN $@")
|
|
|
|
|
2013-02-20 14:43:24 +01:00
|
|
|
-include ../config-host.mak
|
2013-07-05 22:55:44 +02:00
|
|
|
include $(SRC_PATH)/rules.mak
|
2013-02-20 14:43:24 +01:00
|
|
|
|
2013-07-05 22:55:42 +02:00
|
|
|
PO_PATH=$(SRC_PATH)/po
|
|
|
|
|
|
|
|
VERSION=$(shell cat $(SRC_PATH)/VERSION)
|
|
|
|
SRCS=$(filter-out $(PO_PATH)/messages.po,$(wildcard $(PO_PATH)/*.po))
|
|
|
|
OBJS=$(patsubst $(PO_PATH)/%.po,%.mo,$(SRCS))
|
|
|
|
|
|
|
|
vpath %.po $(PO_PATH)
|
2013-02-20 14:43:24 +01:00
|
|
|
|
|
|
|
all:
|
2013-07-05 22:55:41 +02:00
|
|
|
@echo "Use 'make update' to update translation files or use 'make build'"
|
|
|
|
@echo "or 'make install' to build and install the translation files."
|
2013-02-20 14:43:24 +01:00
|
|
|
|
|
|
|
update: $(SRCS)
|
|
|
|
|
|
|
|
build: $(OBJS)
|
|
|
|
|
|
|
|
clean:
|
2016-03-20 02:58:54 +01:00
|
|
|
rm -f $(OBJS)
|
2013-02-20 14:43:24 +01:00
|
|
|
|
|
|
|
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-07-05 22:55:42 +02:00
|
|
|
$(PO_PATH)/messages.po: $(SRC_PATH)/ui/gtk.c
|
2014-04-27 11:32:07 +02:00
|
|
|
$(call quiet-command, ( cd $(SRC_PATH) && \
|
|
|
|
xgettext -o - --from-code=UTF-8 --foreign-user \
|
2013-07-05 22:55:43 +02:00
|
|
|
--package-name=QEMU --package-version=$(VERSION) \
|
|
|
|
--msgid-bugs-address=qemu-devel@nongnu.org -k_ -C ui/gtk.c | \
|
2013-07-05 22:55:44 +02:00
|
|
|
sed -e s/CHARSET/UTF-8/) >$@, " GEN $@")
|
2013-02-20 14:43:24 +01:00
|
|
|
|
2013-07-05 22:55:42 +02:00
|
|
|
$(PO_PATH)/%.po: $(PO_PATH)/messages.po
|
2013-07-05 22:55:44 +02:00
|
|
|
$(call quiet-command, msgmerge -q $@ $< > $@.bak && mv $@.bak $@, " GEN $@")
|