blob: fca152a38b17bc28a62268b6f7a6447c519c0f79 [file] [log] [blame]
Yingdi Yu1cc45d92015-02-09 14:19:54 -08001#!/usr/bin/env bash
2set -x
3set -e
4
5# Cleanup
6sudo ./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
13sudo ./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
18
19# Cleanup
20sudo ./waf -j1 --color=yes distclean
Qiuhan Ding56c0be52015-03-11 17:21:26 -070021
22# Configure/build in optimized mode with tests
23./waf -j1 --color=yes configure --with-tests
24./waf -j1 --color=yes build