blob: 15ef8f3f6bef6e0dc84a1f753d7247ad272ac89f (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
|
.PHONY: all install
all: select-target
exes := $(shell \
find . -mindepth 1 -maxdepth 1 -type f -executable -exec basename \{\} \;)
target_exes := $(addprefix ../../bin/,$(exes))
install: $(target_exes)
../../bin/%: % SOAPpy
ln -snf ../ovh/soapi/$* $@
src:
mkdir $@
src/SOAPpy: src
cd $< && \
svn co https://pywebsvcs.svn.sourceforge.net/svnroot/pywebsvcs/trunk/SOAPpy
src/SOAPpy/build/lib/SOAPpy: src/SOAPpy
cd $< && python setup.py build
SOAPpy: src/SOAPpy/build/lib.linux-x86_64-2.6/SOAPpy
ln -snf $<
|