]> ruderich.org/simon Gitweb - safcm/safcm.git/blob - cmd/safcm-remote/build.sh
Add basic support for OpenBSD
[safcm/safcm.git] / cmd / safcm-remote / build.sh
1 #!/bin/sh
2
3 # Build remote helpers for all operating systems and architectures which are
4 # supported as target hosts
5
6 # Copyright (C) 2021  Simon Ruderich
7 #
8 # This program is free software: you can redistribute it and/or modify
9 # it under the terms of the GNU General Public License as published by
10 # the Free Software Foundation, either version 3 of the License, or
11 # (at your option) any later version.
12 #
13 # This program is distributed in the hope that it will be useful,
14 # but WITHOUT ANY WARRANTY; without even the implied warranty of
15 # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
16 # GNU General Public License for more details.
17 #
18 # You should have received a copy of the GNU General Public License
19 # along with this program.  If not, see <http://www.gnu.org/licenses/>.
20
21 set -eu
22
23
24 build() {
25     GOOS="$1" GOARCH="$2" go build -o "$dest/$1-$2"
26 }
27
28 build_arm() {
29     GOOS="$1" GOARCH="$2" GOARM="$3" go build -o "$dest/$1-${2}v${3}l"
30 }
31
32
33 dest=../../remote/helpers
34
35 mkdir -p "$dest"
36
37 build freebsd amd64
38 build linux amd64
39 build openbsd amd64
40 build_arm linux arm 7
41 # TODO: support more operating systems and architectures