summaryrefslogtreecommitdiff
path: root/.travis/script-linux.sh
blob: 36135d7271d45a3c5ea23625717f0d95a336b75a (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
#!/bin/bash

set -e

# Preparation
_FLAGS="-Werror"
export CFLAGS="${_FLAGS}"
export CXXFLAGS="${_FLAGS}"

# Start clean
make clean >/dev/null

# Build now
make