1build: 2 python setup.py build 3install: 4 python setup.py install 5generate_pot: 6 python scripts/generate_pot.py 7compile_translations: 8 python scripts/compile_translations.py 9update_translations: 10 python scripts/update_translations.py 11clean: 12 rm -rf build etc 13 find . -name "*.pyc" -delete 14.PHONY: install build clean 15