Yingdi Yu | 1cc45d9 | 2015-02-09 14:19:54 -0800 | [diff] [blame] | 1 | #!/usr/bin/env bash |
2 | set -x | ||||
3 | set -e | ||||
4 | |||||
5 | # Cleanup | ||||
Varun Patil | 3d85090 | 2020-11-23 12:19:14 +0530 | [diff] [blame^] | 6 | sudo ./waf --color=yes distclean |
Qiuhan Ding | 56c0be5 | 2015-03-11 17:21:26 -0700 | [diff] [blame] | 7 | |
8 | # Configure/build in optimized mode with tests | ||||
Varun Patil | 3d85090 | 2020-11-23 12:19:14 +0530 | [diff] [blame^] | 9 | ./waf --color=yes configure --debug --with-tests |
10 | ./waf --color=yes build |