blob: e64e944d6916c21120817469a118e589ab8559b6 [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