blob: 4fef69c8aca65c599a888d9ede99b539963ee55b [file] [log] [blame]
spirosmastorakis15ebb1e2016-01-25 21:20:25 -08001#!/usr/bin/env bash
2set -x
3set -e
4
5git submodule init
6git submodule sync
7git submodule update
8
9# Cleanup
10sudo ./waf -j1 --color=yes distclean
11
12# Configure/build in optimized mode with tests and precompiled headers
13./waf -j1 --color=yes configure --with-tests
14./waf -j1 --color=yes build
15
16# Cleanup
17sudo ./waf -j1 --color=yes distclean
18
19# Configure/build in optimized mode without tests and with precompiled headers
20./waf -j1 --color=yes configure
21./waf -j1 --color=yes build
22
23# Cleanup
24sudo ./waf -j1 --color=yes distclean
25
26./waf -j1 --color=yes configure --with-tests
27./waf -j1 --color=yes build
28
29# (tests will be run against debug version)
30
31# Install
32sudo ./waf -j1 --color=yes install