]> git.evergreen-ils.org Git - OpenSRF.git/blob - src/python/Makefile
9eafc3c793f6c0dc57db7c371204e970a7949f1d
[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         /bin/rm -rf build 
22