diff --git a/Makefile b/Makefile index 2fcc4d434..326a10479 100644 --- a/Makefile +++ b/Makefile @@ -3,7 +3,7 @@ MINIOPATH=$(GOPATH)/src/github.com/minio-io/minio all: getdeps install checkdeps: - @echo "Checking deps.." + @echo "Checking deps:" @(env bash $(PWD)/buildscripts/checkdeps.sh) checkgopath: @@ -11,10 +11,10 @@ checkgopath: @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 getdeps: checkdeps checkgopath - @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" + @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 @@ -33,8 +33,8 @@ cyclo: @echo "Running $@:" @test -z "$$(gocyclo -over 15 . | grep -v Godeps/_workspace/src/ | tee /dev/stderr)" -pre-build: - @echo "Running pre-build:" +pre-build: + @echo "Running pre-build:" @(env bash $(PWD)/buildscripts/git-commit-id.sh) build-all: verifiers @@ -67,7 +67,7 @@ docs-deploy: clean: @echo "Cleaning up all the generated files:" - @rm -fv pkg/utils/split/TESTPREFIX.* @rm -fv cover.out - @rm -fv pkg/storage/erasure/*.syso + @rm -fv pkg/utils/split/TESTPREFIX.* + @rm -fv pkg/encoding/erasure/*.syso @rm -fv build-constants.go