ipbl/vendor/gopkg.in/zeromq/goczmq.v4/Makefile
Paul Lecuq 90136fe906
Some checks failed
continuous-integration/drone/push Build is failing
added zeromq handling
2022-03-11 23:34:09 +01:00

19 lines
218 B
Makefile

build: format clean test
go build ./...
test: get
go test -v .
bench: get
go test -v -bench . ./...
get:
go get -t -v ./...
format:
find . -name \*.go -type f -exec gofmt -w {} \;
clean:
.PHONY: clean build