summaryrefslogtreecommitdiff
path: root/Makefile
diff options
context:
space:
mode:
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile2
1 files changed, 1 insertions, 1 deletions
diff --git a/Makefile b/Makefile
index d629150..7a77930 100644
--- a/Makefile
+++ b/Makefile
@@ -2,7 +2,7 @@ IMAGE="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
5 CGO_ENABLED=0 go build -o $@ $^ 5 CGO_ENABLED=0 go build -ldflags "-X main.version=$(VERSION)" -o $@ $^
6 6
7.PHONY: docker 7.PHONY: docker
8docker: websocket-proxy 8docker: websocket-proxy