grafana/Makefile

19 lines
217 B
Makefile
Raw Normal View History

2014-11-26 02:58:36 -06:00
all: build
build:
2014-12-15 10:36:42 -06:00
go build -o bin/grafana .
2014-12-16 09:45:07 -06:00
go test ./pkg/...
2014-11-26 02:58:36 -06:00
2014-12-16 03:45:16 -06:00
lint:
@gofmt -w . && go tool vet pkg/**/*.go && echo "$(GOLINT)"
2014-11-28 04:51:34 -06:00
setup:
go get github.com/tools/godep
2014-12-16 03:45:16 -06:00
go install github.com/mattn/go-sqlite3
2014-11-28 04:51:34 -06:00
2014-11-26 02:58:36 -06:00