]> git.evergreen-ils.org Git - OpenSRF.git/blob - src/python/Makefile.in
Patch from Kevin Beswick to use autotools for OpenSRF configuration and build
[OpenSRF.git] / src / python / Makefile.in
1 # makefile for OpenSRF Python modules and scripts
2
3 all: build
4
5 # ------------------------------------------------------------------------------
6 # BUILD
7 # ------------------------------------------------------------------------------
8 build:
9         @echo $@
10         python setup.py build
11
12 # ------------------------------------------------------------------------------
13 # INSTALL
14 # ------------------------------------------------------------------------------
15 install:        build
16         @echo $@
17         python setup.py install
18
19 # ------------------------------------------------------------------------------
20 # CLEAN 
21 # ------------------------------------------------------------------------------
22 clean:
23         python setup.py clean --all
24