2015-02-18 22:35:49 +00:00
MINIOPATH = $( GOPATH) /src/github.com/minio-io/minio
2015-01-14 19:29:04 +00:00
all : getdeps install
2014-11-30 21:55:10 +00:00
2014-12-04 09:56:01 +00:00
checkdeps :
2015-02-15 01:28:55 +00:00
@echo "Checking deps.."
2015-02-22 05:38:04 +00:00
@( env bash $( PWD) /buildscripts/checkdeps.sh)
2014-12-04 09:56:01 +00:00
2015-02-18 22:35:49 +00: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-02 05:18:46 +00:00
2015-02-18 22:35:49 +00:00
getdeps : checkdeps checkgopath
2014-12-20 17:09:35 +00:00
@go get github.com/tools/godep && echo "Installed godep"
2014-11-02 00:04:24 +00:00
2015-02-18 22:35:49 +00:00
build-all : getdeps
2015-01-30 18:58:47 +00:00
@echo "Building Libraries"
2015-02-02 05:18:46 +00:00
@godep go generate ./...
2015-01-30 18:58:47 +00:00
@godep go build ./...
2015-01-21 08:50:23 +00:00
2015-01-30 18:58:47 +00:00
test-all : build -all
@echo "Running Test Suites:"
@godep go test -race ./...
minio : build -all test -all
2014-11-02 00:04:24 +00:00
2015-01-26 01:45:00 +00:00
install : minio
@godep go install github.com/minio-io/minio && echo "Installed minio"
2014-11-02 00:04:24 +00:00
2014-12-14 04:27:34 +00:00
save : restore
2014-12-01 22:45:50 +00:00
@godep save ./...
2014-11-02 00:04:24 +00:00
2014-11-04 04:59:07 +00:00
restore :
2014-12-01 22:45:50 +00:00
@godep restore
2014-11-01 08:02:47 +00:00
2014-11-04 04:59:07 +00:00
env :
2014-12-01 22:45:50 +00:00
@godep go env
2014-11-07 06:45:27 +00:00
2015-02-09 01:40:39 +00:00
docs-deploy :
@mkdocs gh-deploy --clean
2014-12-01 22:45:50 +00:00
clean :
2015-01-14 20:40:43 +00:00
@echo "Cleaning up all the generated files"
@rm -fv pkg/utils/split/TESTPREFIX.*
@rm -fv cover.out
2015-01-27 21:13:25 +00:00
@rm -fv pkg/storage/erasure/*.syso