Files
grafana/Makefile
T

18 lines
198 B
Makefile
Raw Normal View History

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