Makefile 198 B

1234567891011121314151617
  1. all: build
  2. build:
  3. go build -o bin/grafana .
  4. lint:
  5. @gofmt -w . && go tool vet pkg/**/*.go && echo "$(GOLINT)"
  6. setup:
  7. go get github.com/tools/godep
  8. go install github.com/mattn/go-sqlite3