]> git.mxchange.org Git - quix0rs-gnu-social.git/blob - Makefile
$sender cannot be only Profile ... (false found).
[quix0rs-gnu-social.git] / Makefile
1 # Warning: do not transform tabs to spaces in this file.
2
3 all : translations
4
5 core_mo = $(patsubst %.po,%.mo,$(wildcard locale/*/LC_MESSAGES/statusnet.po))
6 plugin_mo = $(patsubst %.po,%.mo,$(wildcard plugins/*/locale/*/LC_MESSAGES/*.po))
7
8 translations : $(core_mo) $(plugin_mo)
9
10 upgrade :
11         php scripts/upgrade.php
12
13 clean :
14         rm -f $(core_mo) $(plugin_mo)
15
16 updatepo :
17         php scripts/update_po_templates.php --all
18
19 %.mo : %.po
20         msgfmt -o $@ $<
21