Makefile 227 B

1234567891011121314
  1. # Warning: do not transform tabs to spaces in this file.
  2. all : translations
  3. trans = $(patsubst %.po,%.mo,$(wildcard */LC_MESSAGES/statusnet.po))
  4. translations : $(trans)
  5. clean :
  6. rm -f $(trans)
  7. %.mo : %.po
  8. msgfmt -o $@ $<