You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 
 
minio/Makefile

29 lines
465 B

#GOPATH := $(CURDIR)/tmp/gopath
all: test install
build-erasure:
cd erasure && make
test: build-erasure
godep go test -race -coverprofile=cover.out github.com/minio-io/minio
install: build-erasure
godep go install github.com/minio-io/minio/cmd/minio-encode
godep go install github.com/minio-io/minio/cmd/minio-decode
save:
godep save ./...
restore:
godep restore
env:
godep go env
run: all
minio gateway
cover: test
go tool cover -html=cover.out