2015-02-18 14:35:49 -08:00
MINIOPATH = $( GOPATH) /src/github.com/minio-io/minio
2015-01-14 11:29:04 -08:00
all : getdeps install
2014-11-30 13:55:10 -08:00
2014-12-04 01:56:01 -08:00
checkdeps :
2015-03-25 23:10:03 -07:00
@echo "Checking deps:"
2015-02-21 21:38:04 -08:00
@( env bash $( PWD) /buildscripts/checkdeps.sh)
2014-12-04 01:56:01 -08:00
2015-02-18 14:35:49 -08:00
checkgopath :
2015-03-03 02:36:12 -08:00
@echo " Checking if project is at ${ MINIOPATH } "
2015-02-18 14:35:49 -08: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-01 21:18:46 -08:00
2015-02-18 14:35:49 -08:00
getdeps : checkdeps checkgopath
2015-04-01 20:57:27 -07:00
@go get github.com/minio-io/godep && echo "Installed godep:"
2015-03-25 23:10:03 -07:00
@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:"
2015-03-09 16:15:06 -07:00
2015-03-25 15:49:42 -07:00
verifiers : getdeps vet fmt lint cyclo
2015-03-09 16:15:06 -07:00
vet :
2015-03-25 22:51:19 -07:00
@echo " Running $@ : "
2015-03-09 16:15:06 -07:00
@go vet ./...
fmt :
2015-03-25 22:51:19 -07:00
@echo " Running $@ : "
2015-03-09 16:15:06 -07:00
@test -z " $$ (gofmt -s -l . | grep -v Godeps/_workspace/src/ | tee /dev/stderr) " || \
echo "+ please format Go code with 'gofmt -s'"
lint :
2015-03-25 22:51:19 -07:00
@echo " Running $@ : "
2015-03-09 16:15:06 -07:00
@test -z " $$ (golint ./... | grep -v Godeps/_workspace/src/ | tee /dev/stderr) "
2015-03-25 15:49:42 -07:00
cyclo :
2015-03-25 22:51:19 -07:00
@echo " Running $@ : "
2015-03-25 15:49:42 -07:00
@test -z " $$ (gocyclo -over 15 . | grep -v Godeps/_workspace/src/ | tee /dev/stderr) "
2015-03-25 23:10:03 -07:00
pre-build :
@echo "Running pre-build:"
2015-03-25 22:51:19 -07:00
@( env bash $( PWD) /buildscripts/git-commit-id.sh)
2015-03-09 16:15:06 -07:00
build-all : verifiers
2015-03-25 22:51:19 -07:00
@echo "Building Libraries:"
2015-04-01 16:56:43 -07:00
@godep go generate github.com/minio-io/erasure
2015-02-01 21:18:46 -08:00
@godep go generate ./...
2015-04-02 14:34:05 -07:00
@godep go build -a ./... # have no stale packages
2015-01-21 00:50:23 -08:00
2015-01-30 10:58:47 -08:00
test-all : build -all
@echo "Running Test Suites:"
@godep go test -race ./...
2015-02-23 11:03:40 -08:00
test : test -all
2015-03-25 22:51:19 -07:00
minio : pre -build build -all test -all
2014-11-01 17:04:24 -07:00
2015-01-25 17:45:00 -08:00
install : minio
2015-04-02 16:11:49 -07:00
@godep go install -a github.com/minio-io/minio && echo "Installed minio:"
2014-11-01 17:04:24 -07:00
2014-12-13 20:27:34 -08:00
save : restore
2014-12-01 14:45:50 -08:00
@godep save ./...
2014-11-01 17:04:24 -07:00
2014-11-03 20:59:07 -08:00
restore :
2014-12-01 14:45:50 -08:00
@godep restore
2014-11-01 04:02:47 -04:00
2014-11-03 20:59:07 -08:00
env :
2014-12-01 14:45:50 -08:00
@godep go env
2014-11-06 22:45:27 -08:00
2015-02-08 17:40:39 -08:00
docs-deploy :
@mkdocs gh-deploy --clean
2014-12-01 14:45:50 -08:00
clean :
2015-03-25 22:51:19 -07:00
@echo "Cleaning up all the generated files:"
2015-01-14 12:40:43 -08:00
@rm -fv cover.out
2015-03-25 23:10:03 -07:00
@rm -fv pkg/utils/split/TESTPREFIX.*
2015-03-25 23:04:27 -07:00
@rm -fv build-constants.go