Web   ·   Wiki   ·   Activities   ·   Blog   ·   Lists   ·   Chat   ·   Meeting   ·   Bugs   ·   Git   ·   Translate   ·   Archive   ·   People   ·   Donate
summaryrefslogtreecommitdiffstats
path: root/Makefile
blob: 24072f1723d44c78950783f399efedb3ebb4d885 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
install:
	python setup.py install

test:
	py.test tests/

locale-extract:
	pybabel extract --mapping=babel.ini --project='Hatta Wiki' --copyright-holder='Radomir Dopieralski' --msgid-bugs-address='hatta@sheep.art.pl' --output=locale/hatta.pot hatta/

locale-compile: locale/*/LC_MESSAGES/hatta.mo

locale/%/LC_MESSAGES/hatta.mo: locale/%/hatta.po
	msgfmt -o $@ -- $<

.PHONY: locale-extract locale-compile test install