blob: 53efbb56b66679f600a0f8d3f6507e28f1e0668d (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
|
#!/bin/bash
echo "Using waf based build"
WAF=../buildtools/waf
# don't enable WAFCACHE by default till it is
# size limited
#export WAFCACHE=$HOME/.wafcache
#mkdir -p $WAFCACHE
$WAF configure $*
|