We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent f6ab002 commit 0bb69d2Copy full SHA for 0bb69d2
Makefile
@@ -1,19 +1,16 @@
1
+all: build-macosx build-x86 build-x64
2
+
3
build-x64:
4
GOOS=linux GOARCH=amd64 CGO_ENABLED=0 go build
5
tar -czf cloud_ssh_x64.tar.gz cloud-ssh
6
rm cloud-ssh
7
8
build-x86:
- GOOS=linux GOARCH=i386 CGO_ENABLED=0 go build
9
+ GOOS=linux GOARCH=386 CGO_ENABLED=0 go build
10
tar -czf cloud_ssh_x86.tar.gz cloud-ssh
11
12
-build-macos:
13
+build-macosx:
14
GOOS=darwin GOARCH=amd64 CGO_ENABLED=0 go build
15
tar -czf cloud_ssh_macosx.tar.gz cloud-ssh
- rm cloud-ssh
-
16
-all:
17
- build-macos
18
- build-x86
19
- build-x64
+ rm cloud-ssh
0 commit comments