00134a6203
Commit f84756554e
added a wildcard search
for *.po files. This search found no files for out of tree builds, so
those builds no longer created and installed *.mo files.
Signed-off-by: Stefan Weil <sw@weilnetz.de>
Signed-off-by: Anthony Liguori <aliguori@us.ibm.com>
45 lines
1.2 KiB
Makefile
45 lines
1.2 KiB
Makefile
# 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.
|
|
|
|
# Set SRC_PATH for in-tree builds without configuration.
|
|
SRC_PATH=..
|
|
|
|
-include ../config-host.mak
|
|
|
|
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)
|
|
|
|
all:
|
|
@echo "Use 'make update' to update translation files or use 'make build'"
|
|
@echo "or 'make install' to build and install 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: %.po
|
|
@msgfmt -o $@ $<
|
|
|
|
$(PO_PATH)/messages.po: $(SRC_PATH)/ui/gtk.c
|
|
@xgettext -o $@ --foreign-user --package-name=QEMU --package-version=$(VERSION) --msgid-bugs-address=qemu-devel@nongnu.org -k_ -C $<
|
|
|
|
$(PO_PATH)/%.po: $(PO_PATH)/messages.po
|
|
@msgmerge $@ $< > $@.bak && mv $@.bak $@
|
|
|
|
.PHONY: clean all
|