]> git.evergreen-ils.org Git - OpenSRF.git/blob - src/python/Makefile
Use distutils to install Python into the standard location
[OpenSRF.git] / src / python / Makefile
1 # makefile for OpenSRF Python modules and scripts
2
3 install:        python-install
4
5 # --------------------------------------------------------------------------------
6 # INSTALL
7 # --------------------------------------------------------------------------------
8 python-build:
9         @echo $@
10         python setup.py build
11
12 python-install: python-build
13         @echo $@
14         python setup.py install
15
16 # --------------------------------------------------------------------------------
17 # CLEAN 
18 # --------------------------------------------------------------------------------
19 clean:
20         /bin/rm -rf build 
21