minio/Makefile

69 lines
1.7 KiB
Makefile
Raw Normal View History

2015-02-18 23:35:49 +01:00
MINIOPATH=$(GOPATH)/src/github.com/minio-io/minio
all: getdeps install
2014-11-30 22:55:10 +01:00
2014-12-04 10:56:01 +01:00
checkdeps:
@echo "Checking deps.."
@(env bash $(PWD)/buildscripts/checkdeps.sh)
2014-12-04 10:56:01 +01:00
2015-02-18 23:35:49 +01:00
checkgopath:
2015-03-03 11:36:12 +01:00
@echo "Checking if project is at ${MINIOPATH}"
2015-02-18 23:35:49 +01:00
@if [ ! -d ${MINIOPATH} ]; then echo "Project not found in $GOPATH, please follow instructions provided at https://github.com/Minio-io/minio/blob/master/CONTRIBUTING.md#setup-your-minio-github-repository" && exit 1; fi
2015-02-18 23:35:49 +01:00
getdeps: checkdeps checkgopath
2014-12-20 18:09:35 +01:00
@go get github.com/tools/godep && echo "Installed godep"
@go get github.com/golang/lint/golint && echo "Installed golint"
@go get golang.org/x/tools/cmd/vet && echo "Installed vet"
@go get github.com/fzipp/gocyclo && echo "Installed gocyclo"
verifiers: getdeps vet fmt lint cyclo
vet:
@echo "Running $@"
@go vet ./...
fmt:
@echo "Running $@"
@test -z "$$(gofmt -s -l . | grep -v Godeps/_workspace/src/ | tee /dev/stderr)" || \
echo "+ please format Go code with 'gofmt -s'"
lint:
@echo "Running $@"
@test -z "$$(golint ./... | grep -v Godeps/_workspace/src/ | tee /dev/stderr)"
cyclo:
@echo "Running $@"
@test -z "$$(gocyclo -over 15 . | grep -v Godeps/_workspace/src/ | tee /dev/stderr)"
build-all: verifiers
@echo "Building Libraries"
@godep go generate ./...
@godep go build ./...
2015-01-21 09:50:23 +01:00
test-all: build-all
@echo "Running Test Suites:"
@godep go test -race ./...
2015-02-23 20:03:40 +01:00
test: test-all
minio: build-all test-all
install: minio
@godep go install github.com/minio-io/minio && echo "Installed minio"
save: restore
2014-12-01 23:45:50 +01:00
@godep save ./...
restore:
2014-12-01 23:45:50 +01:00
@godep restore
2014-11-01 09:02:47 +01:00
env:
2014-12-01 23:45:50 +01:00
@godep go env
docs-deploy:
@mkdocs gh-deploy --clean
2014-12-01 23:45:50 +01:00
clean:
2015-01-14 21:40:43 +01:00
@echo "Cleaning up all the generated files"
@rm -fv pkg/utils/split/TESTPREFIX.*
@rm -fv cover.out
2015-01-27 22:13:25 +01:00
@rm -fv pkg/storage/erasure/*.syso