Tomb/extras/po/Makefile

24 lines
597 B
Makefile
Raw Normal View History

PREFIX ?= /usr/local
LOCALEDIR ?= ${PREFIX}/share/locale
2014-08-19 22:06:33 +00:00
TOMBFILE = LC_MESSAGES/tomb.mo
2014-08-11 20:56:26 +00:00
all:
@rm -f tomb.pot
@./generate_translatable_strings.sh > tomb.pot
@echo "Strings generated in tomb.pot"
2014-09-13 15:32:12 +00:00
.PHONY: install
install: es.mo ru.mo fr.mo de.mo
install -Dm644 es.mo ${DESTDIR}${LOCALEDIR}/es_ES/${TOMBFILE}
install -Dm644 ru.mo ${DESTDIR}${LOCALEDIR}/ru_RU/${TOMBFILE}
install -Dm644 fr.mo ${DESTDIR}${LOCALEDIR}/fr_FR/${TOMBFILE}
install -Dm644 de.mo ${DESTDIR}${LOCALEDIR}/de_DE/${TOMBFILE}
2014-09-13 15:32:12 +00:00
@echo "Translations installed."
2014-08-11 20:56:26 +00:00
2014-08-19 22:06:33 +00:00
%.mo: %.po
2014-08-11 20:56:26 +00:00
msgfmt -o $@ $<
2014-09-13 15:32:12 +00:00
.PHONY: clean
clean:
@rm -f *.mo