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 10:09:57 +02:00
LANGDIR := $(foreach LANG, $(LANGS),$(LANG)/LC_MESSAGES/gajim.mo)
2005-04-25 09:56:44 +02:00
all: $(LANGDIR)
%.mo: %.po
msgfmt $< -o $@
2006-02-06 22:05:33 +01:00
gajim.pot: ../src/*py ../src/common/*py ../src/gtkgui.glade.h \
../src/history_manager.glade.h
2005-08-08 10:09:57 +02:00
intltool-update --pot --gettext-package=$(NAME)
2005-04-25 09:56:44 +02:00
clean:
find . -name '*.mo' -exec rm {} \;