]> git.evergreen-ils.org Git - OpenSRF.git/blob - src/python/Makefile
Make cleaning in Python dir optional as well, to avoid problems with missing setuptools
[OpenSRF.git] / src / python / Makefile
1 # makefile for OpenSRF Python modules and scripts
2
3 # ------------------------------------------------------------------------------
4 # BUILD
5 # ------------------------------------------------------------------------------
6 build:
7         @echo $@
8         python setup.py build
9
10 # ------------------------------------------------------------------------------
11 # INSTALL
12 # ------------------------------------------------------------------------------
13 install:        build
14         @echo $@
15         python setup.py install
16
17 # ------------------------------------------------------------------------------
18 # CLEAN 
19 # ------------------------------------------------------------------------------
20 clean:
21         python setup.py clean --all
22