mirror of
https://github.com/nicolargo/glances.git
synced 2024-12-29 04:04:03 +03:00
11 lines
153 B
Makefile
11 lines
153 B
Makefile
MSGFMT = msgfmt -v
|
|
|
|
.SUFFIXES: .po .mo
|
|
|
|
MSGOBJ := $(patsubst %.po,%.mo,$(wildcard i18n/*/LC_MESSAGES/*.po))
|
|
|
|
.po.mo:
|
|
$(MSGFMT) -o $@ $<
|
|
|
|
all: $(MSGOBJ)
|