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-02-14 20:28:55 -05:00
|
|
|
@echo "Checking deps.."
|
|
|
|
@(env bash $(PWD)/devscripts/checkdeps.sh)
|
2014-12-04 04:56:01 -05:00
|
|
|
|
2015-02-02 00:18:46 -05:00
|
|
|
createsymlink:
|
2015-02-05 13:57:26 -05:00
|
|
|
@mkdir -p $(GOPATH)/src/github.com/minio-io/;
|
2015-02-03 20:15:57 -05:00
|
|
|
@if test ! -e $(GOPATH)/src/github.com/minio-io/minio; then echo "Creating symlink to $(GOPATH)/src/github.com/minio-io/minio" && ln -s $(PWD) $(GOPATH)/src/github.com/minio-io/minio; fi
|
2015-02-02 00:18:46 -05:00
|
|
|
|
2014-12-04 04:56:01 -05:00
|
|
|
getdeps: checkdeps
|
2014-12-20 12:09:35 -05:00
|
|
|
@go get github.com/tools/godep && echo "Installed godep"
|
|
|
|
@go get golang.org/x/tools/cmd/cover && echo "Installed cover"
|
2014-11-01 20:04:24 -04:00
|
|
|
|
2015-02-02 00:18:46 -05:00
|
|
|
build-all: getdeps createsymlink
|
2015-01-30 13:58:47 -05:00
|
|
|
@echo "Building Libraries"
|
2015-02-02 00:18:46 -05:00
|
|
|
@godep go generate ./...
|
2015-01-30 13:58:47 -05:00
|
|
|
@godep go build ./...
|
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 ./...
|
|
|
|
|
|
|
|
minio: build-all test-all
|
2014-11-01 20:04:24 -04:00
|
|
|
|
2015-01-25 20:45:00 -05:00
|
|
|
install: minio
|
|
|
|
@godep go install github.com/minio-io/minio && echo "Installed 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
|
|
|
|
2015-02-08 20:40:39 -05:00
|
|
|
docs-deploy:
|
|
|
|
@mkdocs gh-deploy --clean
|
|
|
|
|
2014-12-01 17:45:50 -05:00
|
|
|
clean:
|
2015-01-14 15:40:43 -05:00
|
|
|
@echo "Cleaning up all the generated files"
|
|
|
|
@rm -fv pkg/utils/split/TESTPREFIX.*
|
|
|
|
@rm -fv cover.out
|
2015-01-27 16:13:25 -05:00
|
|
|
@rm -fv pkg/storage/erasure/*.syso
|