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-02-14 17:28:55 -08: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 :
@echo " Checking project in ${ MINIOPATH } "
@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
2014-12-20 09:09:35 -08:00
@go get github.com/tools/godep && echo "Installed godep"
2014-11-01 17:04:24 -07:00
2015-02-18 14:35:49 -08:00
build-all : getdeps
2015-01-30 10:58:47 -08:00
@echo "Building Libraries"
2015-02-01 21:18:46 -08:00
@godep go generate ./...
2015-01-30 10:58:47 -08:00
@godep go build ./...
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-01-30 10:58:47 -08:00
minio : build -all test -all
2014-11-01 17:04:24 -07:00
2015-01-25 17:45:00 -08:00
install : minio
@godep go install 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-01-14 12:40:43 -08:00
@echo "Cleaning up all the generated files"
@rm -fv pkg/utils/split/TESTPREFIX.*
@rm -fv cover.out
2015-01-27 13:13:25 -08:00
@rm -fv pkg/storage/erasure/*.syso