gajim-plural/po/Makefile

11 lines
204 B
Makefile
Raw Normal View History

LANGS := fr pt el pl es ru bg de
2005-04-25 09:56:44 +02:00
LANGDIR := $(foreach lang, $(LANGS), $(subst ,/LC_MESSAGES/gajim.mo, $(lang)))
all: $(LANGDIR)
%.mo: %.po
msgfmt $< -o $@
clean:
find . -name '*.mo' -exec rm {} \;