summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authortv <tv@xso>2011-08-22 14:58:33 +0200
committertv <tv@xso>2011-08-22 14:58:33 +0200
commit963b1ab3b05651afeec350e054a258595d067e26 (patch)
treec9114d4022a773a40d07abe0dbbd2101c65d0c31
parentfebfbe5c4f2e5481b12d0142c08dd45a28cbf4b1 (diff)
ovh soapi Makefile: initial commit
Unfortunately the latest stable SOAPpy is broken, so we have to resort to the latest stable SOAPpy from SVN^_^
-rw-r--r--.gitignore2
-rw-r--r--ovh/soapi/Makefile25
2 files changed, 27 insertions, 0 deletions
diff --git a/.gitignore b/.gitignore
index 290de6b0..c948e1a0 100644
--- a/.gitignore
+++ b/.gitignore
@@ -3,3 +3,5 @@ a.out
/bin/
/node/src
/node/out
+/ovh/soapi/src
+/ovh/soapi/SOAPpy
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 $<