mirror of
https://github.com/Llewellynvdm/Tomb.git
synced 2024-11-11 07:30:56 +00:00
17 lines
439 B
Makefile
17 lines
439 B
Makefile
LOCALEDIR ?= /usr/share/locale
|
|
TOMBFILE = LC_MESSAGES/tomb.mo
|
|
|
|
all:
|
|
@rm -f tomb.pot
|
|
@./generate_translatable_strings.sh > tomb.pot
|
|
@echo "Strings generated in tomb.pot"
|
|
|
|
install: es.mo ru.mo fr.mo de.mo
|
|
@install -Dm644 es.mo ${LOCALEDIR}/es/${TOMBFILE}
|
|
@install -Dm644 ru.mo ${LOCALEDIR}/ru/${TOMBFILE}
|
|
@install -Dm644 fr.mo ${LOCALEDIR}/fr/${TOMBFILE}
|
|
@install -Dm644 de.mo ${LOCALEDIR}/de/${TOMBFILE}
|
|
|
|
%.mo: %.po
|
|
msgfmt -o $@ $<
|