mirror of
https://github.com/tmux/tmux.git
synced 2025-09-03 06:17:04 +00:00
Add build of everything.
This commit is contained in:
20
.github/travis/build.sh
vendored
20
.github/travis/build.sh
vendored
@ -1,9 +1,17 @@
|
||||
#!/bin/sh
|
||||
|
||||
sh autogen.sh || exit 1
|
||||
if [ "$BUILD" = "static" ]; then
|
||||
./configure --enable-static || exit 1
|
||||
else
|
||||
./configure || exit 1
|
||||
fi
|
||||
exec make
|
||||
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
|
||||
|
Reference in New Issue
Block a user