Merge pull request #128 from gdrooid/po

Fix translations makefile.
This commit is contained in:
Jaromil 2014-08-31 09:24:48 +02:00
commit f7057b7d03

View File

@ -1,13 +1,15 @@
LOCALEDIR ?= /usr/share/locale LOCALEDIR ?= /usr/share/locale
TOMBFILE = LC_MESSAGES/tomb.po TOMBFILE = LC_MESSAGES/tomb.mo
all: all:
@rm -f tomb.pot @rm -f tomb.pot
@./generate_translatable_strings.sh > tomb.pot @./generate_translatable_strings.sh > tomb.pot
@echo "Strings generated in tomb.pot" @echo "Strings generated in tomb.pot"
install: *.mo install: es.mo ru.mo fr.mo
@install -Dm755 es.mo ${LOCALEDIR}/es/${TOMBFILE} @install -Dm644 es.mo ${LOCALEDIR}/es/${TOMBFILE}
@install -Dm644 ru.mo ${LOCALEDIR}/ru/${TOMBFILE}
@install -Dm644 fr.mo ${LOCALEDIR}/fr/${TOMBFILE}
es.mo: es.po %.mo: %.po
msgfmt -o $@ $< msgfmt -o $@ $<