summaryrefslogtreecommitdiff
path: root/.travis/run.sh
blob: 941037aff2ae480df8b750d39536634cbaf0c016 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
#!/bin/bash

set -e

CFLAGS="-Werror"

if [ "$CC" = "clang" ]; then
	CFLAGS="$CFLAGS -Wno-error=unused-command-line-argument"
fi

./autogen.sh
./configure
make CFLAGS="$CFLAGS"
make CFLAGS="$CFLAGS" check