summaryrefslogtreecommitdiff
path: root/locale/Makefile
diff options
context:
space:
mode:
authorBrion Vibber <brion@pobox.com>2009-11-30 12:25:49 -0800
committerBrion Vibber <brion@pobox.com>2009-11-30 12:25:49 -0800
commit769b3a37dda5bad2f7a87c9e1b31f767207177ea (patch)
tree9b811aced879da41fbf4439a6f81b833b85e5a9d /locale/Makefile
parentbb70f77a5c8801a9bf76a85584377eb55efdb392 (diff)
Drop binary .mo localization files from git repo to aid in development.
Added a Makefile in locale subdirectory to rebuild them -- needs to be made part of deployment and packaging.
Diffstat (limited to 'locale/Makefile')
-rw-r--r--locale/Makefile11
1 files changed, 11 insertions, 0 deletions
diff --git a/locale/Makefile b/locale/Makefile
new file mode 100644
index 000000000..4f17f683f
--- /dev/null
+++ b/locale/Makefile
@@ -0,0 +1,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 $@ $<