| 81d4d3b by Brion Vibber at 2009-12-08 | 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 |

