Files
weave-scope/probe/Makefile
2015-05-19 10:02:02 +00:00

22 lines
199 B
Makefile

.PHONY: all vet lint build test clean
all: build test vet lint
vet:
go vet ./...
lint:
golint .
build:
go build
test:
#GOOS=darwin go build
#GOOS=linux go build
go test
clean:
go clean