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

40 lines
1018 B

#GOPATH := $(CURDIR)/tmp/gopath
MAKE_OPTIONS := -s
10 years ago
all: getdeps cover install
getdeps:
@go get github.com/tools/godep && echo "Installing godep"
@go get code.google.com/p/go.tools/cmd/cover && echo "Installing cover"
build-erasure:
@cd pkgs/erasure && ${MAKE} ${MAKE_OPTIONS}
build-signify:
@cd pkgs/signify && ${MAKE} ${MAKE_OPTIONS}
build-split: build-strbyteconv
@godep go test -race -coverprofile=cover.out github.com/minio-io/minio/pkgs/split
build-strbyteconv:
@godep go test -race -coverprofile=cover.out github.com/minio-io/minio/pkgs/strbyteconv
cover: build-erasure build-signify build-split
10 years ago
@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
@godep go install github.com/minio-io/minio/cmd/erasure-demo && echo "Installed erasure-demo into ${GOPATH}/bin"
save:
godep save ./...
restore:
godep restore
env:
godep go env
run: all
minio gateway