File tree Expand file tree Collapse file tree 1 file changed +8
-1
lines changed Expand file tree Collapse file tree 1 file changed +8
-1
lines changed Original file line number Diff line number Diff line change @@ -3,6 +3,8 @@ BUILD_INFO_GIT_TAG ?= $(shell git describe --tags 2>/dev/null || echo unknown)
33BUILD_INFO_GIT_COMMIT ?= $(shell git rev-parse HEAD 2>/dev/null || echo unknown)
44BUILD_INFO_BUILD_DATE ?= $(shell date -u +"% Y-% m-% dT% H:% M:% SZ" || echo unknown)
55
6+ release : linux darwin windows
7+
68.PHONY : linux
79linux :
810 CGO_ENABLED=0 GOOS=linux GOARCH=amd64 go build -x -ldflags " -X golang.org/x/crypto/ssh.debugHandshake=true" -o jmstool_linux .
@@ -11,6 +13,11 @@ linux:
1113darwin :
1214 CGO_ENABLED=0 GOOS=darwin GOARCH=amd64 go build -x -ldflags " -X golang.org/x/crypto/ssh.debugHandshake=true" -o jmstool_darwin .
1315
16+ .PHONY : windows
17+ windows :
18+ CGO_ENABLED=0 GOOS=windows GOARCH=amd64 go build -x -ldflags " -X golang.org/x/crypto/ssh.debugHandshake=true" -o jmstool_windows.exe .
19+
20+
1421.PHONY : clean
1522clean :
16- rm -f jmstool_linux jmstool_darwin
23+ rm -f jmstool_linux jmstool_darwin jmstool_windows.exe
You can’t perform that action at this time.
0 commit comments