blob: b297b9327847de1946fa59a7c5d5b8aa7306affa (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
|
#!/bin/sh
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 $*
|