summaryrefslogtreecommitdiff
path: root/locale
diff options
context:
space:
mode:
Diffstat (limited to 'locale')
-rw-r--r--locale/Makefile6
1 files changed, 4 insertions, 2 deletions
diff --git a/locale/Makefile b/locale/Makefile
index 4f17f683f..00700ada1 100644
--- a/locale/Makefile
+++ b/locale/Makefile
@@ -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 $@ $<