minio/Makefile

32 lines
560 B
Makefile
Raw Normal View History

#GOPATH := $(CURDIR)/tmp/gopath
2014-11-01 22:20:59 +00:00
all: test install
build-erasure:
cd pkgs/erasure && make
build-signify:
cd pkgs/signify && make
test: build-erasure build-signify
godep go test -race -coverprofile=cover.out github.com/minio-io/minio/pkgs/storage
godep go test -race -coverprofile=cover.out github.com/minio-io/minio/pkgs/gateway
install: build-erasure
2014-11-30 21:13:57 +00:00
godep go install github.com/minio-io/minio/cmd/erasure-demo
save:
godep save ./...
restore:
godep restore
2014-11-01 08:02:47 +00:00
env:
godep go env
run: all
minio gateway
cover: test
go tool cover -html=cover.out