summaryrefslogtreecommitdiff
path: root/Makefile
diff options
context:
space:
mode:
authorMike Crute <mike@crute.us>2023-07-31 13:34:44 -0700
committerMike Crute <mike@crute.us>2023-07-31 13:34:44 -0700
commitdb217bbb1f74b7aa955d3095fef62c71946768cf (patch)
tree80ee49b11f137412cf440262950e4a116099eb24 /Makefile
parent6d867608837f879be2eb934d034f49359f973c84 (diff)
downloadwebsocket_proxy-db217bbb1f74b7aa955d3095fef62c71946768cf.tar.bz2
websocket_proxy-db217bbb1f74b7aa955d3095fef62c71946768cf.tar.xz
websocket_proxy-db217bbb1f74b7aa955d3095fef62c71946768cf.zip
Complete registration flow
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile3
1 files changed, 2 insertions, 1 deletions
diff --git a/Makefile b/Makefile
index 81601bc..cc3fc5f 100644
--- a/Makefile
+++ b/Makefile
@@ -16,7 +16,8 @@ $(CLIENT_BINARY): $(shell find . -name '*.go')
16 CGO_ENABLED=0 go build \ 16 CGO_ENABLED=0 go build \
17 -tags clientonly \ 17 -tags clientonly \
18 -ldflags "-X main.appVersion=$(shell git describe --long --tags --dirty --always) \ 18 -ldflags "-X main.appVersion=$(shell git describe --long --tags --dirty --always) \
19 -X code.crute.us/mcrute/ssh-proxy/cmd/client.clientId=$(CLIENT_ID)" \ 19 -X code.crute.us/mcrute/ssh-proxy/cmd/client.clientId=$(CLIENT_ID) \
20 -s -w" \
20 -o $@ 21 -o $@
21 22
22.PHONY: vet 23.PHONY: vet