diff options
author | root <root@krebs> | 2011-08-22 15:13:34 +0200 |
---|---|---|
committer | root <root@krebs> | 2011-08-22 15:13:34 +0200 |
commit | 77653ab3cb741537e475c2556b6c164b74657e99 (patch) | |
tree | d9cc3fd9b712082ff2572046d92dbdb532780f96 /ovh/soapi/Makefile | |
parent | 2be46b6392bd35dabf850f92d0829b452296e12b (diff) | |
parent | 963b1ab3b05651afeec350e054a258595d067e26 (diff) |
Merge branch 'master' of github.com:/krebscode/painload
Diffstat (limited to 'ovh/soapi/Makefile')
-rw-r--r-- | ovh/soapi/Makefile | 25 |
1 files changed, 25 insertions, 0 deletions
diff --git a/ovh/soapi/Makefile b/ovh/soapi/Makefile new file mode 100644 index 00000000..6a4a3a6b --- /dev/null +++ b/ovh/soapi/Makefile @@ -0,0 +1,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 -vsnf ../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/SOAPpy + ln -snf $< |