2016-02-18 20:16:41 -05:00
|
|
|
PWD := $(shell pwd)
|
|
|
|
GOPATH := $(shell go env GOPATH)
|
2017-06-26 21:07:06 -04:00
|
|
|
LDFLAGS := $(shell go run buildscripts/gen-ldflags.go)
|
2017-06-02 17:05:51 -04:00
|
|
|
|
2017-04-25 02:01:38 -04:00
|
|
|
BUILD_LDFLAGS := '$(LDFLAGS)'
|
2016-02-13 04:03:01 -05:00
|
|
|
|
2017-07-15 14:57:39 -04:00
|
|
|
all: build
|
2014-11-30 16:55:10 -05:00
|
|
|
|
2016-02-18 20:16:41 -05:00
|
|
|
checks:
|
2017-06-02 17:05:51 -04:00
|
|
|
@echo "Check deps"
|
2015-02-22 00:38:04 -05:00
|
|
|
@(env bash $(PWD)/buildscripts/checkdeps.sh)
|
2017-06-02 17:05:51 -04:00
|
|
|
@echo "Checking project is in GOPATH"
|
2016-02-18 20:16:41 -05:00
|
|
|
@(env bash $(PWD)/buildscripts/checkgopath.sh)
|
2015-02-02 00:18:46 -05:00
|
|
|
|
2016-02-18 20:16:41 -05:00
|
|
|
getdeps: checks
|
2017-06-02 17:05:51 -04:00
|
|
|
@echo "Installing golint" && go get -u github.com/golang/lint/golint
|
|
|
|
@echo "Installing gocyclo" && go get -u github.com/fzipp/gocyclo
|
|
|
|
@echo "Installing deadcode" && go get -u github.com/remyoudompheng/go-misc/deadcode
|
|
|
|
@echo "Installing misspell" && go get -u github.com/client9/misspell/cmd/misspell
|
|
|
|
@echo "Installing ineffassign" && go get -u github.com/gordonklaus/ineffassign
|
2015-03-09 19:15:06 -04:00
|
|
|
|
2017-10-05 15:25:45 -04:00
|
|
|
verifiers: getdeps vet fmt lint cyclo deadcode spelling
|
2015-03-09 19:15:06 -04:00
|
|
|
|
|
|
|
vet:
|
2017-06-02 17:05:51 -04:00
|
|
|
@echo "Running $@"
|
2017-04-01 04:06:06 -04:00
|
|
|
@go tool vet -atomic -bool -copylocks -nilfunc -printf -shadow -rangeloops -unreachable -unsafeptr -unusedresult cmd
|
|
|
|
@go tool vet -atomic -bool -copylocks -nilfunc -printf -shadow -rangeloops -unreachable -unsafeptr -unusedresult pkg
|
2015-08-22 21:34:00 -04:00
|
|
|
|
2015-03-09 19:15:06 -04:00
|
|
|
fmt:
|
2017-06-02 17:05:51 -04:00
|
|
|
@echo "Running $@"
|
|
|
|
@gofmt -d cmd
|
|
|
|
@gofmt -d pkg
|
2015-08-12 22:24:31 -04:00
|
|
|
|
2015-03-09 19:15:06 -04:00
|
|
|
lint:
|
2017-06-02 17:05:51 -04:00
|
|
|
@echo "Running $@"
|
2017-01-06 21:40:49 -05:00
|
|
|
@${GOPATH}/bin/golint -set_exit_status github.com/minio/minio/cmd...
|
|
|
|
@${GOPATH}/bin/golint -set_exit_status github.com/minio/minio/pkg...
|
2015-03-09 19:15:06 -04:00
|
|
|
|
2016-03-28 00:52:38 -04:00
|
|
|
ineffassign:
|
2017-06-02 17:05:51 -04:00
|
|
|
@echo "Running $@"
|
2017-01-06 21:40:49 -05:00
|
|
|
@${GOPATH}/bin/ineffassign .
|
2016-03-28 00:52:38 -04:00
|
|
|
|
2015-03-25 18:49:42 -04:00
|
|
|
cyclo:
|
2017-06-02 17:05:51 -04:00
|
|
|
@echo "Running $@"
|
2017-01-06 21:40:49 -05:00
|
|
|
@${GOPATH}/bin/gocyclo -over 100 cmd
|
|
|
|
@${GOPATH}/bin/gocyclo -over 100 pkg
|
2015-03-25 18:49:42 -04:00
|
|
|
|
2015-10-26 05:36:01 -04:00
|
|
|
deadcode:
|
2017-10-05 15:25:45 -04:00
|
|
|
@echo "Running $@"
|
2017-10-10 01:23:59 -04:00
|
|
|
@${GOPATH}/bin/deadcode -test $(shell go list ./...) || true
|
2016-02-10 00:51:03 -05:00
|
|
|
|
|
|
|
spelling:
|
2017-01-06 21:40:49 -05:00
|
|
|
@${GOPATH}/bin/misspell -error `find cmd/`
|
|
|
|
@${GOPATH}/bin/misspell -error `find pkg/`
|
|
|
|
@${GOPATH}/bin/misspell -error `find docs/`
|
2015-09-18 01:10:09 -04:00
|
|
|
|
2017-07-15 14:57:39 -04:00
|
|
|
# Builds minio, runs the verifiers then runs the tests.
|
|
|
|
check: test
|
|
|
|
test: verifiers build
|
2017-09-12 19:56:33 -04:00
|
|
|
@echo "Running unit tests"
|
2017-12-05 20:58:09 -05:00
|
|
|
@go test $(GOFLAGS) ./...
|
2017-09-12 19:56:33 -04:00
|
|
|
@echo "Verifying build"
|
|
|
|
@(env bash $(PWD)/buildscripts/verify-build.sh)
|
2015-01-21 03:50:23 -05:00
|
|
|
|
2016-08-04 19:48:50 -04:00
|
|
|
coverage: build
|
2017-06-02 17:05:51 -04:00
|
|
|
@echo "Running all coverage for minio"
|
2017-12-05 20:58:09 -05:00
|
|
|
@(env bash $(PWD)/buildscripts/go-coverage.sh)
|
2016-08-04 19:48:50 -04:00
|
|
|
|
2017-07-15 14:57:39 -04:00
|
|
|
# Builds minio locally.
|
|
|
|
build:
|
2017-11-21 19:22:01 -05:00
|
|
|
@echo "Building minio binary: $(PWD)/minio"
|
2017-07-15 14:57:39 -04:00
|
|
|
@CGO_ENABLED=0 go build --ldflags $(BUILD_LDFLAGS) -o $(PWD)/minio
|
2014-11-01 20:04:24 -04:00
|
|
|
|
2015-08-23 01:23:36 -04:00
|
|
|
pkg-add:
|
2017-06-02 17:05:51 -04:00
|
|
|
@echo "Adding new package $(PKG)"
|
|
|
|
@${GOPATH}/bin/govendor add $(PKG)
|
2015-08-23 01:23:36 -04:00
|
|
|
|
2015-10-23 22:29:44 -04:00
|
|
|
pkg-update:
|
2017-06-02 17:05:51 -04:00
|
|
|
@echo "Updating new package $(PKG)"
|
|
|
|
@${GOPATH}/bin/govendor update $(PKG)
|
2015-10-23 22:29:44 -04:00
|
|
|
|
|
|
|
pkg-remove:
|
2017-06-02 17:05:51 -04:00
|
|
|
@echo "Remove new package $(PKG)"
|
|
|
|
@${GOPATH}/bin/govendor remove $(PKG)
|
2015-10-23 22:29:44 -04:00
|
|
|
|
2016-02-23 17:57:14 -05:00
|
|
|
pkg-list:
|
2017-01-06 21:40:49 -05:00
|
|
|
@$(GOPATH)/bin/govendor list
|
2016-02-23 17:57:14 -05:00
|
|
|
|
2017-07-15 14:57:39 -04:00
|
|
|
# Builds minio and installs it to $GOPATH/bin.
|
|
|
|
install: build
|
2017-11-21 19:22:01 -05:00
|
|
|
@echo "Installing minio binary: $(GOPATH)/bin/minio"
|
2017-07-15 14:57:39 -04:00
|
|
|
@cp $(PWD)/minio $(GOPATH)/bin/minio
|
2017-11-21 19:22:01 -05:00
|
|
|
@echo "\nInstallation successful. To learn more, try \"minio --help\"."
|
2014-11-01 20:04:24 -04:00
|
|
|
|
2014-12-01 17:45:50 -05:00
|
|
|
clean:
|
2017-06-02 17:05:51 -04:00
|
|
|
@echo "Cleaning up all the generated files"
|
2016-02-10 19:40:09 -05:00
|
|
|
@find . -name '*.test' | xargs rm -fv
|
|
|
|
@rm -rf build
|
2016-02-23 17:57:14 -05:00
|
|
|
@rm -rf release
|