minio/Makefile

64 lines
1.8 KiB
Makefile
Raw Normal View History

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:"
@(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/minio ]; then echo "Project not found in ${mcpath}, please follow instructions provided at https://github.com/minio/minio/blob/master/CONTRIBUTING.md#setup-your-minio-github-repository" && exit 1; fi done
2015-02-18 17:35:49 -05:00
getdeps: checkdeps checkgopath
2015-05-11 19:23:10 -04:00
@go get github.com/minio/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:"
verifiers: getdeps vet fmt lint cyclo
vet:
2015-03-26 01:51:19 -04:00
@echo "Running $@:"
@go vet ./...
fmt:
2015-03-26 01:51:19 -04:00
@echo "Running $@:"
@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 $@:"
@test -z "$$(golint ./... | grep -v Godeps/_workspace/src/ | tee /dev/stderr)"
cyclo:
2015-03-26 01:51:19 -04:00
@echo "Running $@:"
@test -z "$$(gocyclo -over 19 . | grep -v Godeps/_workspace/src/ | tee /dev/stderr)"
gomake-all: getdeps verifiers
@echo "Installing minio:"
@go run make.go install
2015-01-21 03:50:23 -05:00
release: getdeps verifiers
@echo "Installing minio:"
@go run make.go release
@go run make.go install
godepupdate:
@for i in $(grep ImportPath Godeps/Godeps.json | grep -v minio/minio | cut -f2 -d: | sed -e 's/,//' -e 's/^[ \t]*//' -e 's/[ \t]*$//' -e 's/\"//g'); do godep update $i; done
2015-02-23 14:03:40 -05:00
install: gomake-all
save:
2014-12-01 17:45:50 -05:00
@godep save ./...
restore:
2014-12-01 17:45:50 -05:00
@godep restore
2014-11-01 04:02:47 -04:00
env:
2014-12-01 17:45:50 -05:00
@godep go env
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
@find Godeps -name "*.a" -type f -exec rm -vf {} \+