blob: e3bb195ec525db43eb9bb97d4479fd894a8aa5b1 [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
Junxiao Shi6eff4e52015-06-28 12:57:29 -07008# Configure/build in release mode without tests
Junxiao Shi439d9722015-03-20 15:08:44 -07009./waf -j1 --color=yes configure
10./waf -j1 --color=yes build
11
12# Cleanup
13sudo ./waf -j1 --color=yes distclean
14
Junxiao Shi6eff4e52015-06-28 12:57:29 -070015# Configure/build in debug mode with tests
16./waf -j1 --color=yes configure --with-tests --debug
Junxiao Shi439d9722015-03-20 15:08:44 -070017./waf -j1 --color=yes build