minio/Makefile

75 lines
2.1 KiB
Makefile
Raw Normal View History

LDFLAGS = $(shell go run buildscripts/gen-ldflags.go)
all: 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}"
2015-10-17 18:03:46 -04:00
@for miniopath in $(echo ${GOPATH} | sed 's/:/\n/g'); do if [ ! -d ${miniopath}/src/github.com/minio/minio ]; then echo "Project not found in ${miniopath}, please follow instructions provided at https://github.com/minio/minio/blob/master/CONTRIBUTING.md#setup-your-minio-github-repository" && exit 1; fi done
@echo "Setting LDFLAGS: ${LDFLAGS}"
2015-02-18 17:35:49 -05:00
getdeps: checkdeps checkgopath
2015-10-26 05:36:01 -04:00
@go get -u github.com/golang/lint/golint && echo "Installed golint:"
@go get -u golang.org/x/tools/cmd/vet && echo "Installed vet:"
@go get -u 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 01:51:19 -04: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 01:51:19 -04:00
@echo "Running $@:"
@GO15VENDOREXPERIMENT=1 gofmt -s -l *.go
@GO15VENDOREXPERIMENT=1 gofmt -s -l pkg
lint:
2015-03-26 01:51:19 -04:00
@echo "Running $@:"
@GO15VENDOREXPERIMENT=1 golint *.go
@GO15VENDOREXPERIMENT=1 golint github.com/minio/minio/pkg...
cyclo:
2015-03-26 01:51:19 -04:00
@echo "Running $@:"
2015-10-22 01:25:13 -04:00
@GO15VENDOREXPERIMENT=1 gocyclo -over 65 *.go
@GO15VENDOREXPERIMENT=1 gocyclo -over 65 pkg
build: getdeps verifiers
2015-10-26 05:36:01 -04:00
@echo "Installing minio:"
deadcode:
@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 03:50:23 -05:00
gomake-all: build
@GO15VENDOREXPERIMENT=1 go build -ldflags $(LDFLAGS) -o $(GOPATH)/bin/minio
pkg-add:
@GO15VENDOREXPERIMENT=1 govendor add $(PKG)
pkg-update:
@GO15VENDOREXPERIMENT=1 govendor update $(PKG)
pkg-remove:
@GO15VENDOREXPERIMENT=1 govendor remove $(PKG)
install: gomake-all
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-04-29 00:24:59 -04:00
@rm -fv minio
2015-10-17 18:03:46 -04:00
@rm -fv minio.test
@rm -fv pkg/fs/fs.test