]> git.mxchange.org Git - quix0rs-gnu-social.git/blob - Makefile
Always naming it 'plugin' is not good, it can easily confuse. So better name it
[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 clean :
11         rm -f $(core_mo) $(plugin_mo)
12
13 updatepo :
14         php scripts/update_po_templates.php --all
15
16 %.mo : %.po
17         msgfmt -o $@ $<
18