blob: 4f17f683f98c367e481671d66edbc6c4aa1fc02d (
plain)
1
2
3
4
5
6
7
8
9
10
11
|
# Warning: do not transform tabs to spaces in this file.
all : translations
translations : */LC_MESSAGES/statusnet.mo
clean :
rm -f */LC_MESSAGES/statusnet.mo
%.mo : %.po
msgfmt -o $@ $<
|