.PHONY: all all: clean build build: go build -o tcp-proxy -ldflags "-w -s" . clean: go clean && rm -rf tcp-proxy test: go test -v ./...