Merge branch '0.9.x' of gitorious.org:statusnet/mainline into 0.9.x

This commit is contained in:
Brion Vibber 2009-12-01 12:55:55 -08:00
commit 95663e70df
1 changed files with 4 additions and 2 deletions

View File

@ -2,10 +2,12 @@
all : translations
translations : */LC_MESSAGES/statusnet.mo
trans = $(patsubst %.po,%.mo,$(wildcard */LC_MESSAGES/statusnet.po))
translations : $(trans)
clean :
rm -f */LC_MESSAGES/statusnet.mo
rm -f $(trans)
%.mo : %.po
msgfmt -o $@ $<