diff options
author | Brion Vibber <brion@pobox.com> | 2009-11-30 12:10:05 -0800 |
---|---|---|
committer | Brion Vibber <brion@pobox.com> | 2009-11-30 12:10:05 -0800 |
commit | 9937767a9e2f8eee9a968a406d407059cba2cba6 (patch) | |
tree | 354617f0ec1282975956846cf9a535378d873d18 /locale/Makefile | |
parent | 9d58b3763edc88a9488b1d03f11400bed13f0874 (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/Makefile | 11 |
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 $@ $< |