go-tunnel/Makefile

13 lines
213 B
Makefile
Raw Normal View History

2020-10-21 18:00:15 +02:00
watch:
modd
build: build-server build-client
build-server:
2020-10-26 19:42:07 +01:00
CGO_ENABLED=0 go build -o ./bin/server ./cmd/server
2020-10-21 18:00:15 +02:00
build-client:
2020-10-26 19:42:07 +01:00
CGO_ENABLED=0 go build -o ./bin/client ./cmd/client
2020-10-21 18:00:15 +02:00
test:
go test -v -race ./...