From 7c72e088904ee47d3b10e86770e11b41d5fe70e0 Mon Sep 17 00:00:00 2001 From: tv Date: Mon, 22 Aug 2011 14:58:33 +0200 Subject: ovh soapi Makefile: initial commit Unfortunately the latest stable SOAPpy is broken, so we have to resort to the latest stable SOAPpy from SVN^_^ --- ovh/soapi/Makefile | 25 +++++++++++++++++++++++++ 1 file changed, 25 insertions(+) create mode 100644 ovh/soapi/Makefile (limited to 'ovh/soapi/Makefile') 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 $< -- cgit v1.2.3 From 95c85896c8d3f3a5dce3b58f930894b49647119f Mon Sep 17 00:00:00 2001 From: tv Date: Mon, 22 Aug 2011 16:09:36 +0200 Subject: ovh soapi Makefile: s/-v// --- ovh/soapi/Makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'ovh/soapi/Makefile') diff --git a/ovh/soapi/Makefile b/ovh/soapi/Makefile index 6a4a3a6b..8cc257ea 100644 --- a/ovh/soapi/Makefile +++ b/ovh/soapi/Makefile @@ -9,7 +9,7 @@ target_exes := $(addprefix ../../bin/,$(exes)) install: $(target_exes) ../../bin/%: % SOAPpy - ln -vsnf ../ovh/soapi/$* $@ + ln -snf ../ovh/soapi/$* $@ src: mkdir $@ -- cgit v1.2.3