]> Git Repo - qemu.git/blobdiff - po/Makefile
rbd: use BlockDriverState's AioContext
[qemu.git] / po / Makefile
index a6ab4825fa9bd9dff531a0660c696cde89a56c73..669f8654a608be6e5f811ba23b0b4a16ff8f212f 100644 (file)
@@ -5,6 +5,7 @@
 SRC_PATH=..
 
 -include ../config-host.mak
+include $(SRC_PATH)/rules.mak
 
 PO_PATH=$(SRC_PATH)/po
 
@@ -33,16 +34,16 @@ install: $(OBJS)
        done
 
 %.mo: %.po
-       @msgfmt -o $@ $<
+       $(call quiet-command, msgfmt -o $@ $<, "  GEN   $@")
 
 $(PO_PATH)/messages.po: $(SRC_PATH)/ui/gtk.c
-       @cd $(SRC_PATH) && \
-        (xgettext -o - --from-code=UTF-8 --foreign-user \
+       $(call quiet-command, ( cd $(SRC_PATH) && \
+          xgettext -o - --from-code=UTF-8 --foreign-user \
            --package-name=QEMU --package-version=$(VERSION) \
            [email protected] -k_ -C ui/gtk.c | \
-         sed -e s/CHARSET/UTF-8/) >$@
+         sed -e s/CHARSET/UTF-8/) >$@, "  GEN   $@")
 
 $(PO_PATH)/%.po: $(PO_PATH)/messages.po
-       @msgmerge $@ $< > [email protected] && mv [email protected] $@
+       $(call quiet-command, msgmerge -q $@ $< > [email protected] && mv [email protected] $@, "  GEN   $@")
 
 .PHONY: clean all
This page took 0.026036 seconds and 4 git commands to generate.