2014-08-11 22:56:26 +02:00
|
|
|
LOCALEDIR ?= /usr/share/locale
|
2014-08-20 00:06:33 +02:00
|
|
|
TOMBFILE = LC_MESSAGES/tomb.mo
|
2014-08-11 22:56:26 +02:00
|
|
|
|
2013-05-28 11:59:11 +02:00
|
|
|
all:
|
|
|
|
@rm -f tomb.pot
|
|
|
|
@./generate_translatable_strings.sh > tomb.pot
|
|
|
|
@echo "Strings generated in tomb.pot"
|
2014-08-11 22:56:26 +02:00
|
|
|
|
2014-08-20 00:06:33 +02:00
|
|
|
install: es.mo ru.mo fr.mo
|
|
|
|
@install -Dm644 es.mo ${LOCALEDIR}/es/${TOMBFILE}
|
|
|
|
@install -Dm644 ru.mo ${LOCALEDIR}/ru/${TOMBFILE}
|
|
|
|
@install -Dm644 fr.mo ${LOCALEDIR}/fr/${TOMBFILE}
|
2014-08-11 22:56:26 +02:00
|
|
|
|
2014-08-20 00:06:33 +02:00
|
|
|
%.mo: %.po
|
2014-08-11 22:56:26 +02:00
|
|
|
msgfmt -o $@ $<
|