summaryrefslogtreecommitdiff
path: root/locale/Makefile
blob: 00700ada104f26fa60c10517d51d3ab597ab042f (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
# Warning: do not transform tabs to spaces in this file.

all : translations

trans = $(patsubst %.po,%.mo,$(wildcard */LC_MESSAGES/statusnet.po))

translations : $(trans)

clean :
	rm -f $(trans)

%.mo : %.po
	msgfmt -o $@ $<