minio/Makefile

72 lines
2.1 KiB
Makefile
Raw Normal View History

all: 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 miniofspath in $(echo ${GOPATH} | sed 's/:/\n/g'); do if [ ! -d ${mcpath}/src/github.com/minio/minio ]; then echo "Project not found in ${miniofspath}, 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 23:35:49 +01:00
getdeps: checkdeps checkgopath
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:"
@go get -u github.com/remyoudompheng/go-misc/deadcode && echo "Installed deadcode:"
verifiers: getdeps vet fmt lint cyclo
vet:
2015-03-26 06:51:19 +01:00
@echo "Running $@:"
@GO15VENDOREXPERIMENT=1 go tool vet -all *.go
@GO15VENDOREXPERIMENT=1 go tool vet -all ./pkg
@GO15VENDOREXPERIMENT=1 go tool vet -shadow=true *.go
@GO15VENDOREXPERIMENT=1 go tool vet -shadow=true ./pkg
fmt:
2015-03-26 06:51:19 +01:00
@echo "Running $@:"
@GO15VENDOREXPERIMENT=1 gofmt -s -l *.go
@GO15VENDOREXPERIMENT=1 gofmt -s -l pkg
lint:
2015-03-26 06:51:19 +01:00
@echo "Running $@:"
@GO15VENDOREXPERIMENT=1 golint *.go
@GO15VENDOREXPERIMENT=1 golint github.com/minio/minio/pkg...
cyclo:
2015-03-26 06:51:19 +01:00
@echo "Running $@:"
@GO15VENDOREXPERIMENT=1 gocyclo -over 60 *.go
@GO15VENDOREXPERIMENT=1 gocyclo -over 60 pkg
build: getdeps verifiers
@echo "Installing minio:" #@GO15VENDOREXPERIMENT=1 deadcode
test: build
@echo "Running all testing:"
@GO15VENDOREXPERIMENT=1 go test $(GOFLAGS) .
@GO15VENDOREXPERIMENT=1 go test $(GOFLAGS) github.com/minio/minio/pkg...
2015-01-21 09:50:23 +01:00
gomake-all: build
@GO15VENDOREXPERIMENT=1 go install github.com/minio/minio
2015-09-19 08:27:04 +02:00
release: version
@echo "Installing minio (new version):"
@GO15VENDOREXPERIMENT=1 go install github.com/minio/minio
2015-09-19 08:27:04 +02:00
version:
@echo "Generating new version.go"
@GO15VENDOREXPERIMENT=1 go run buildscripts/genversion.go
pkg-remove:
@GO15VENDOREXPERIMENT=1 govendor remove $(PKG)
pkg-add:
@GO15VENDOREXPERIMENT=1 govendor add $(PKG)
install: gomake-all
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-04-29 06:24:59 +02:00
@rm -fv minio