minio/Makefile

29 lines
404 B
Makefile
Raw Normal View History

#GOPATH := $(CURDIR)/tmp/gopath
2014-11-01 18:20:59 -04:00
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
2014-11-22 14:17:53 -05:00
godep go install github.com/minio-io/minio/cmd/minio-encode
save:
godep save ./...
restore:
godep restore
2014-11-01 04:02:47 -04:00
env:
godep go env
run: all
minio gateway
cover: test
go tool cover -html=cover.out