mirror of
https://github.com/restic/rest-server.git
synced 2025-10-19 07:33:21 +00:00

These are the vendor files needed for Prometheus support. I have not been able to figure out how to do this properly with gopkg.
15 lines
181 B
Text
15 lines
181 B
Text
all: build cover test vet
|
|
|
|
build:
|
|
go build -v ./...
|
|
|
|
cover: test
|
|
$(MAKE) -C pbutil cover
|
|
|
|
test: build
|
|
go test -v ./...
|
|
|
|
vet: build
|
|
go vet -v ./...
|
|
|
|
.PHONY: build cover test vet
|