minio/Makefile

68 lines
1.9 KiB
Makefile
Raw Normal View History

all: getdeps install
2014-11-30 22:55:10 +01:00
2014-12-04 10:56:01 +01:00
checkdeps:
2015-03-26 07:10:03 +01:00
@echo "Checking deps:"
@(env bash $(PWD)/buildscripts/checkdeps.sh)
2014-12-04 10:56:01 +01:00
2015-02-18 23:35:49 +01:00
checkgopath:
2015-04-12 02:31:01 +02: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-io/minio ]; then echo "Project not found in ${mcpath}, please follow instructions provided at https://github.com/Minio-io/minio/blob/master/CONTRIBUTING.md#setup-your-minio-github-repository" && exit 1; fi done
2015-02-18 23:35:49 +01:00
getdeps: checkdeps checkgopath
2015-04-02 05:57:27 +02:00
@go get github.com/minio-io/godep && echo "Installed godep:"
2015-03-26 07:10:03 +01: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 06:51:19 +01:00
@echo "Running $@:"
@go vet ./...
fmt:
2015-03-26 06:51:19 +01: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 06:51:19 +01:00
@echo "Running $@:"
@test -z "$$(golint ./... | grep -v Godeps/_workspace/src/ | tee /dev/stderr)"
cyclo:
2015-03-26 06:51:19 +01:00
@echo "Running $@:"
@test -z "$$(gocyclo -over 16 . | grep -v Godeps/_workspace/src/ | tee /dev/stderr)"
2015-03-26 07:10:03 +01:00
pre-build:
@echo "Running pre-build:"
2015-03-26 06:51:19 +01:00
build-all: verifiers
2015-03-26 06:51:19 +01:00
@echo "Building Libraries:"
@godep go generate ./...
2015-04-02 23:34:05 +02:00
@godep go build -a ./... # have no stale packages
2015-01-21 09:50:23 +01:00
test-all: build-all
@echo "Running Test Suites:"
@godep go test -race ./...
2015-02-23 20:03:40 +01:00
test: test-all
2015-03-26 06:51:19 +01:00
minio: pre-build build-all test-all
install: minio
2015-04-27 22:08:51 +02:00
@echo "Installing minio:"
@godep go install -a -ldflags "-X main.BuildDate `date '+%FT%T.%N%:z'`" github.com/minio-io/minio
save: restore
2014-12-01 23:45:50 +01:00
@godep save ./...
restore:
2014-12-01 23:45:50 +01:00
@godep restore
2014-11-01 09:02:47 +01:00
env:
2014-12-01 23:45:50 +01:00
@godep go env
2014-12-01 23:45:50 +01:00
clean:
2015-03-26 06:51:19 +01:00
@echo "Cleaning up all the generated files:"
2015-01-14 21:40:43 +01:00
@rm -fv cover.out
2015-03-26 07:10:03 +01:00
@rm -fv pkg/utils/split/TESTPREFIX.*
2015-03-26 07:04:27 +01:00
@rm -fv build-constants.go