summaryrefslogtreecommitdiffstats
path: root/ext/ovh/soapi/Makefile
diff options
context:
space:
mode:
authorlassulus <lassulus@googlemail.com>2013-01-31 19:41:11 +0100
committerlassulus <lassulus@googlemail.com>2013-01-31 19:41:11 +0100
commit5f8f9ea9e5f10abcef9c12d48345c098dca78199 (patch)
treec4dd748d5c152445569d7dfd2d0877ef66a95daa /ext/ovh/soapi/Makefile
parent7c050acc2559c622b831d9193e2336c15f42de6d (diff)
parent9461f6ece9f674588327c6dc3199fc0d7618ac48 (diff)
Merge branch 'master' of github.com:krebscode/painload
Diffstat (limited to 'ext/ovh/soapi/Makefile')
-rw-r--r--ext/ovh/soapi/Makefile25
1 files changed, 25 insertions, 0 deletions
diff --git a/ext/ovh/soapi/Makefile b/ext/ovh/soapi/Makefile
new file mode 100644
index 00000000..15ef8f3f
--- /dev/null
+++ b/ext/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 -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 $<