2014-11-03 20:59:07 -08:00
|
|
|
#GOPATH := $(CURDIR)/tmp/gopath
|
2014-11-30 13:55:10 -08:00
|
|
|
MAKE_OPTIONS := -s
|
2014-11-01 15:20:59 -07:00
|
|
|
|
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:
|
|
|
|
@./checkdeps.sh
|
|
|
|
|
2015-02-01 21:18:46 -08:00
|
|
|
createsymlink:
|
2015-02-05 10:57:26 -08:00
|
|
|
@mkdir -p $(GOPATH)/src/github.com/minio-io/;
|
2015-02-03 17:15:57 -08: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-01 21:18:46 -08:00
|
|
|
|
2014-12-04 01:56:01 -08:00
|
|
|
getdeps: checkdeps
|
2014-12-20 09:09:35 -08:00
|
|
|
@go get github.com/tools/godep && echo "Installed godep"
|
|
|
|
@go get golang.org/x/tools/cmd/cover && echo "Installed cover"
|
2014-11-01 17:04:24 -07:00
|
|
|
|
2015-02-01 21:18:46 -08:00
|
|
|
build-all: getdeps createsymlink
|
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 ./...
|
|
|
|
|
|
|
|
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
|