summaryrefslogtreecommitdiffstats
path: root/.github/travis/build.sh
blob: f863d8ad2337fd9369bb904f6476527b748d64b0 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
#!/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
		;;
	musl)
		CC=musl-gcc sh $(dirname $0)/build-all.sh
		exec make
		;;
	musl-static)
		CC=musl-gcc sh $(dirname $0)/build-all.sh --enable-static
		exec make
		;;
	*)
		./configure || exit 1
		exec make
		;;
esac