summaryrefslogtreecommitdiff
path: root/Makefile
diff options
context:
space:
mode:
authorMike Crute <mike@crute.us>2023-07-15 16:58:36 -0700
committerMike Crute <mike@crute.us>2023-07-15 16:58:36 -0700
commitfea07831eadd35532055ec16fc43b0cde56a54b1 (patch)
tree35c304a16e5b6f9acadb9c66f4c48215ad9abd2b /Makefile
parent51949f8dc563c7c1ce03d8862abbee4cc1e20943 (diff)
downloadwebsocket_proxy-fea07831eadd35532055ec16fc43b0cde56a54b1.tar.bz2
websocket_proxy-fea07831eadd35532055ec16fc43b0cde56a54b1.tar.xz
websocket_proxy-fea07831eadd35532055ec16fc43b0cde56a54b1.zip
Cleanup, add local client
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile2
1 files changed, 1 insertions, 1 deletions
diff --git a/Makefile b/Makefile
index 7a77930..3e599d0 100644
--- a/Makefile
+++ b/Makefile
@@ -1,7 +1,7 @@
1IMAGE="docker.crute.me/websocket-proxy" 1IMAGE="docker.crute.me/websocket-proxy"
2VERSION="0.1.0" 2VERSION="0.1.0"
3 3
4websocket-proxy: main.go sockets.go server.go client.go 4websocket-proxy: main.go sockets.go server.go client.go localclient.go
5 CGO_ENABLED=0 go build -ldflags "-X main.version=$(VERSION)" -o $@ $^ 5 CGO_ENABLED=0 go build -ldflags "-X main.version=$(VERSION)" -o $@ $^
6 6
7.PHONY: docker 7.PHONY: docker