mirror of
https://github.com/weaveworks/scope.git
synced 2026-04-19 17:07:30 +00:00
21 lines
234 B
Makefile
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 .
|