1.1 --- /dev/null Thu Jan 01 00:00:00 1970 +0000
1.2 +++ b/Makefile Sat Jan 18 09:41:26 2014 +0100
1.3 @@ -0,0 +1,20 @@
1.4 +#
1.5 +# Makefile for pymove3D
1.6 +#
1.7 +
1.8 +# location for the pymove3d.py we use:
1.9 +export PYTHONPATH=$(PWD)
1.10 +
1.11 +pylint:
1.12 + pylint ./pymove3d.py
1.13 +
1.14 +pybabel_init:
1.15 + pybabel extract -o ./translations/pymove3d.pot .
1.16 + pybabel init -i ./translations/pymove3d.pot -d translations -l de
1.17 + pybabel init -i ./translations/pymove3d.pot -d translations -l en
1.18 +
1.19 +pybabel_update:
1.20 + pybabel extract -o ./translations/pymove3d.pot .
1.21 + pybabel update -i ./translations/pymove3d.pot -d translations -l de
1.22 + pybabel update -i ./translations/pymove3d.pot -d translations -l en
1.23 +