2015-01-14 14:29:04 -05:00
all : getdeps install
2014-11-30 16:55:10 -05:00
2014-12-04 04:56:01 -05:00
checkdeps :
2015-03-26 02:10:03 -04:00
@echo "Checking deps:"
2015-02-22 00:38:04 -05:00
@( env bash $( PWD) /buildscripts/checkdeps.sh)
2014-12-04 04:56:01 -05:00
2015-02-18 17:35:49 -05:00
checkgopath :
2015-04-11 20:31:01 -04:00
@echo " Checking if project is at ${ GOPATH } "
@for mcpath in $( echo ${ GOPATH } | sed 's/:/\n/g' | grep -v Godeps) ; do if [ ! -d ${ mcpath } /src/github.com/minio-io/minio ] ; then echo " Project not found in ${ mcpath } , please follow instructions provided at https://github.com/Minio-io/minio/blob/master/CONTRIBUTING.md#setup-your-minio-github-repository " && exit 1; fi done
2015-02-02 00:18:46 -05:00
2015-02-18 17:35:49 -05:00
getdeps : checkdeps checkgopath
2015-04-01 23:57:27 -04:00
@go get github.com/minio-io/godep && echo "Installed godep:"
2015-03-26 02:10:03 -04: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 19:15:06 -04:00
2015-03-25 18:49:42 -04:00
verifiers : getdeps vet fmt lint cyclo
2015-03-09 19:15:06 -04:00
vet :
2015-03-26 01:51:19 -04:00
@echo " Running $@ : "
2015-03-09 19:15:06 -04:00
@go vet ./...
fmt :
2015-03-26 01:51:19 -04:00
@echo " Running $@ : "
2015-03-09 19:15:06 -04: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-26 01:51:19 -04:00
@echo " Running $@ : "
2015-03-09 19:15:06 -04:00
@test -z " $$ (golint ./... | grep -v Godeps/_workspace/src/ | tee /dev/stderr) "
2015-03-25 18:49:42 -04:00
cyclo :
2015-03-26 01:51:19 -04:00
@echo " Running $@ : "
2015-04-29 18:34:00 -04:00
@test -z " $$ (gocyclo -over 18 . | grep -v Godeps/_workspace/src/ | tee /dev/stderr) "
2015-03-25 18:49:42 -04:00
2015-03-26 02:10:03 -04:00
pre-build :
@echo "Running pre-build:"
2015-03-26 01:51:19 -04:00
2015-03-09 19:15:06 -04:00
build-all : verifiers
2015-03-26 01:51:19 -04:00
@echo "Building Libraries:"
2015-02-02 00:18:46 -05:00
@godep go generate ./...
2015-04-02 17:34:05 -04:00
@godep go build -a ./... # have no stale packages
2015-01-21 03:50:23 -05:00
2015-01-30 13:58:47 -05:00
test-all : build -all
@echo "Running Test Suites:"
@godep go test -race ./...
2015-02-23 14:03:40 -05:00
test : test -all
2015-03-26 01:51:19 -04:00
minio : pre -build build -all test -all
2014-11-01 20:04:24 -04:00
2015-01-25 20:45:00 -05:00
install : minio
2015-04-27 16:08:51 -04:00
@echo "Installing minio:"
@godep go install -a -ldflags "-X main.BuildDate `date '+%FT%T.%N%:z'`" github.com/minio-io/minio
2014-11-01 20:04:24 -04:00
2014-12-13 23:27:34 -05:00
save : restore
2014-12-01 17:45:50 -05:00
@godep save ./...
2014-11-01 20:04:24 -04:00
2014-11-03 23:59:07 -05:00
restore :
2014-12-01 17:45:50 -05:00
@godep restore
2014-11-01 04:02:47 -04:00
2014-11-03 23:59:07 -05:00
env :
2014-12-01 17:45:50 -05:00
@godep go env
2014-11-07 01:45:27 -05:00
2014-12-01 17:45:50 -05:00
clean :
2015-03-26 01:51:19 -04:00
@echo "Cleaning up all the generated files:"
2015-01-14 15:40:43 -05:00
@rm -fv cover.out
2015-03-26 02:10:03 -04:00
@rm -fv pkg/utils/split/TESTPREFIX.*
2015-04-29 00:24:59 -04:00
@rm -fv minio