summaryrefslogtreecommitdiff
path: root/Makefile
blob: 17cd4ecc4909e2c203f6c644e98f73c3ee91e413 (plain)
1
2
3
4
5
6
7
websocket-proxy: main.go sockets.go server.go client.go
	go build -o $@ $^


.PHONY: clean
clean:
	rm -rf websocket-proxy