blob: a45f44244212c1c7a1c902805174b8cf39556168 [file] [log] [blame]
Junxiao Shi439d9722015-03-20 15:08:44 -07001#!/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