gajim-plural/po/Makefile

17 lines
409 B
Makefile
Raw Normal View History

top_srcdir = ../src/
NAME = gajim
LANGS := fr pt el pl es ru bg de nb cs nl pt_BR sv it eu sk no zh_CN
2005-08-08 08:09:57 +00:00
LANGDIR := $(foreach LANG, $(LANGS),$(LANG)/LC_MESSAGES/gajim.mo)
2005-04-25 07:56:44 +00:00
all: $(LANGDIR)
%.mo: %.po
msgfmt $< -o $@
2006-02-06 21:05:33 +00:00
gajim.pot: ../src/*py ../src/common/*py ../src/gtkgui.glade.h \
../src/history_manager.glade.h
2005-08-08 08:09:57 +00:00
intltool-update --pot --gettext-package=$(NAME)
2005-04-25 07:56:44 +00:00
clean:
find . -name '*.mo' -exec rm {} \;