diff -r 9fa249552dba -r 096c748b438a Makefile --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/Makefile Sat Jan 18 09:41:26 2014 +0100 @@ -0,0 +1,20 @@ +# +# Makefile for pymove3D +# + +# location for the pymove3d.py we use: +export PYTHONPATH=$(PWD) + +pylint: + pylint ./pymove3d.py + +pybabel_init: + pybabel extract -o ./translations/pymove3d.pot . + pybabel init -i ./translations/pymove3d.pot -d translations -l de + pybabel init -i ./translations/pymove3d.pot -d translations -l en + +pybabel_update: + pybabel extract -o ./translations/pymove3d.pot . + pybabel update -i ./translations/pymove3d.pot -d translations -l de + pybabel update -i ./translations/pymove3d.pot -d translations -l en +