From: Amitay Isaacs Date: Thu, 15 May 2014 14:10:00 +0000 (+1000) Subject: ctdb-build: Add build files (configure/Makefile) to use waf X-Git-Url: http://git.samba.org/?a=commitdiff_plain;h=fb56e72e942830c5ab85614d638743079d2fef46;hp=fc71606480f332156f00f590edce14b48ddc60e1;p=metze%2Fsamba%2Fwip.git ctdb-build: Add build files (configure/Makefile) to use waf Signed-off-by: Amitay Isaacs Reviewed-by: Michael Adam --- diff --git a/ctdb/Makefile b/ctdb/Makefile new file mode 100644 index 000000000000..44fd756a2c10 --- /dev/null +++ b/ctdb/Makefile @@ -0,0 +1,69 @@ +# simple makefile wrapper to run waf + +WAF=WAF_MAKE=1 PATH=../buildtools/bin:$$PATH waf + +all: + $(WAF) build + +install: + $(WAF) install + +uninstall: + $(WAF) uninstall + +test: FORCE + $(WAF) test $(TEST_OPTIONS) + +testenv: + $(WAF) test --testenv $(TEST_OPTIONS) + +autotest: + $(WAF) autotest $(TEST_OPTIONS) + +quicktest: + $(WAF) test --quick $(TEST_OPTIONS) + +dist: + touch .tmplock + WAFLOCK=.tmplock $(WAF) dist + +distcheck: + touch .tmplock + WAFLOCK=.tmplock $(WAF) distcheck + +clean: + $(WAF) clean + +distclean: + $(WAF) distclean + +reconfigure: configure + $(WAF) reconfigure + +show_waf_options: + $(WAF) --help + +# some compatibility make targets +everything: all + +testsuite: all + +check: test + +torture: all + +# this should do an install as well, once install is finished +installcheck: test + +etags: + $(WAF) etags + +ctags: + $(WAF) ctags + +pydoctor: + $(WAF) pydoctor + +bin/%:: FORCE + $(WAF) --targets=`basename $@` +FORCE: diff --git a/ctdb/configure b/ctdb/configure new file mode 100755 index 000000000000..5357de415987 --- /dev/null +++ b/ctdb/configure @@ -0,0 +1,14 @@ +#!/bin/sh + +PREVPATH=`dirname $0` + +WAF=../buildtools/bin/waf + +# using JOBS=1 gives maximum compatibility with +# systems like AIX which have broken threading in python +JOBS=1 +export JOBS + +cd . || exit 1 +${PYTHON:=python} $WAF configure "$@" || exit 1 +cd $PREVPATH