Files
weave-scope/vendor/github.com/weaveworks/procspy/Makefile
2015-10-24 11:19:50 +01:00

21 lines
234 B
Makefile

.PHONY: all build buildall test install bench
all: test build buildall install
build:
go build
go vet
golint .
buildall:
GOOS=darwin go build
GOOS=linux go build
test:
go test
install:
go install
bench:
go test -bench .