summaryrefslogtreecommitdiffstats
path: root/.github/travis/build.sh
blob: c244c59c901fac8412b148bae4411812a37a8578 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
#!/bin/sh

sh autogen.sh || exit 1
case "$BUILD" in
	static)
		./configure --enable-static || exit 1
		exec make
		;;
	all)
		sh $(dirname $0)/build-all.sh
		exec make
		;;
	*)
		./configure || exit 1
		exec make
		;;
esac