]> git.evergreen-ils.org Git - Evergreen.git/blob - Open-ILS/src/python/Makefile
Install Evergreen Python modules via distutils
[Evergreen.git] / Open-ILS / src / python / Makefile
1 # vim:noet:ts=4
2
3 install: python-install
4
5 python-build:
6         @echo $@
7         python setup.py build
8
9 python-install:
10         @echo $@
11         python setup.py install
12
13 clean:
14         @echo $@
15         rm -fr build
16         find . -name "*.pyc" -exec rm -f {} \;