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 0746f1c commit 93013beCopy full SHA for 93013be
Makefile
@@ -2,6 +2,7 @@ BINARY = ssl-proxy
2
3
.PHONY: build
4
build:
5
+ dep ensure
6
go build -o ${BINARY}
7
8
.PHONY: test
@@ -15,6 +16,7 @@ run:
15
16
17
.PHONY: release
18
release:
19
20
GOOS=linux GOARCH=amd64 go build -o build/${BINARY}-linux-amd64 .;
21
GOOS=darwin GOARCH=amd64 go build -o build/${BINARY}-darwin-amd64 .;
22
GOOS=windows GOARCH=amd64 go build -o build/${BINARY}-windows-amd64.exe .;
0 commit comments