Add dependencies for prometheus client.

This commit is contained in:
Hendrik van Wyk
2017-09-13 21:35:33 +02:00
parent 0c04eab1c1
commit b4a7a6984d
411 changed files with 90236 additions and 0 deletions

18
vendor/github.com/prometheus/procfs/Makefile generated vendored Normal file
View File

@@ -0,0 +1,18 @@
ci: fmt lint test
fmt:
! gofmt -l *.go | read nothing
go vet
lint:
go get github.com/golang/lint/golint
golint *.go
test: sysfs/fixtures/.unpacked
go test -v ./...
sysfs/fixtures/.unpacked: sysfs/fixtures.ttar
./ttar -C sysfs -x -f sysfs/fixtures.ttar
touch $@
.PHONY: fmt lint test ci