Junxiao Shi | 439d972 | 2015-03-20 15:08:44 -0700 | [diff] [blame] | 1 | #!/usr/bin/env bash |
2 | set -x | ||||
3 | set -e | ||||
4 | |||||
5 | # Cleanup | ||||
6 | sudo ./waf -j1 --color=yes distclean | ||||
7 | |||||
8 | # Configure/build in release mode | ||||
9 | ./waf -j1 --color=yes configure | ||||
10 | ./waf -j1 --color=yes build | ||||
11 | |||||
12 | # Cleanup | ||||
13 | sudo ./waf -j1 --color=yes distclean | ||||
14 | |||||
15 | # Configure/build in debug mode | ||||
16 | ./waf -j1 --color=yes configure --debug | ||||
17 | ./waf -j1 --color=yes build |