tcp-proxy/Makefile

12 lines
142 B
Makefile
Raw Normal View History

2020-01-14 15:00:01 +00:00
.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 ./...