minio/Makefile

27 lines
412 B
Makefile
Raw Normal View History

#GOPATH := $(CURDIR)/tmp/gopath
2014-11-01 18:20:59 -04:00
all: test install
test:
mkdir -p cover
godep go test -race -coverprofile=cover/cover.out github.com/minios/minios
godep go test -race github.com/minios/minios/minio
install:
godep go install -race github.com/minios/minios/minio
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/cover.out