tusd/scripts/build_all.sh

28 lines
511 B
Bash
Raw Normal View History

2019-09-12 19:39:00 +00:00
#!/usr/bin/env bash
set -e
__dir="$(cd "$(dirname "${BASH_SOURCE[0]}")" && pwd)"
source "${__dir}/build_funcs.sh"
compile linux 386
compile linux amd64
compile linux arm
2021-03-11 17:20:14 +00:00
compile linux arm64
2019-09-12 19:39:00 +00:00
compile darwin amd64
compile darwin arm64
2019-09-20 09:05:31 +00:00
compile windows 386 .exe
compile windows amd64 .exe
2019-09-12 19:39:00 +00:00
maketar linux 386
maketar linux amd64
maketar linux arm
2021-03-11 17:20:14 +00:00
maketar linux arm64
2019-09-12 19:39:00 +00:00
makezip darwin amd64
makezip darwin arm64
2019-09-20 09:05:31 +00:00
makezip windows 386 .exe
makezip windows amd64 .exe
2019-09-12 19:39:00 +00:00
makedep amd64
2021-03-11 17:20:14 +00:00
makedep arm64