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:
|
2018-02-13 23:59:19 -05:00
|
|
|
@echo "Checking dependencies"
|
2015-02-22 00:38:04 -05:00
|
|
|
@(env bash $(PWD)/buildscripts/checkdeps.sh)
|
2018-02-13 23:59:19 -05:00
|
|
|
@echo "Checking for project in GOPATH"
|
2016-02-18 20:16:41 -05:00
|
|
|
@(env bash $(PWD)/buildscripts/checkgopath.sh)
|
2015-02-02 00:18:46 -05:00
|
|
|
|
2018-02-13 23:59:19 -05:00
|
|
|
getdeps:
|
2019-03-19 16:50:59 -04:00
|
|
|
@mkdir -p $(GOPATH)/bin
|
|
|
|
@echo "Installing golint" && which golint || go get -u golang.org/x/lint/golint
|
|
|
|
@echo "Installing staticcheck" && which staticcheck || wget --quiet -O $(GOPATH)/bin/staticcheck https://github.com/dominikh/go-tools/releases/download/2019.1/staticcheck_linux_amd64 && chmod +x $(GOPATH)/bin/staticcheck
|
|
|
|
@echo "Installing misspell" && which misspell || wget --quiet https://github.com/client9/misspell/releases/download/v0.3.4/misspell_0.3.4_linux_64bit.tar.gz && tar xvf misspell_0.3.4_linux_64bit.tar.gz && mv misspell $(GOPATH)/bin/misspell && chmod +x $(GOPATH)/bin/misspell && rm -r misspell_0.3.4_linux_64bit.tar.gz
|
2015-03-09 19:15:06 -04:00
|
|
|
|
2019-01-21 22:57:23 -05:00
|
|
|
crosscompile:
|
|
|
|
@(env bash $(PWD)/buildscripts/cross-compile.sh)
|
|
|
|
|
2019-02-13 07:59:36 -05:00
|
|
|
verifiers: getdeps vet fmt lint staticcheck spelling
|
2015-03-09 19:15:06 -04:00
|
|
|
|
|
|
|
vet:
|
2017-06-02 17:05:51 -04:00
|
|
|
@echo "Running $@"
|
2019-02-13 07:59:36 -05:00
|
|
|
@go vet github.com/minio/minio/...
|
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 $@"
|
2019-02-13 07:59:36 -05:00
|
|
|
@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 $@"
|
2019-02-13 07:59:36 -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
|
|
|
|
2019-02-13 07:59:36 -05:00
|
|
|
staticcheck:
|
2017-06-02 17:05:51 -04:00
|
|
|
@echo "Running $@"
|
2019-02-13 07:59:36 -05:00
|
|
|
@${GOPATH}/bin/staticcheck github.com/minio/minio/cmd/...
|
|
|
|
@${GOPATH}/bin/staticcheck github.com/minio/minio/pkg/...
|
2016-02-10 00:51:03 -05:00
|
|
|
|
|
|
|
spelling:
|
2018-06-28 19:02:02 -04:00
|
|
|
@${GOPATH}/bin/misspell -locale US -error `find cmd/`
|
|
|
|
@${GOPATH}/bin/misspell -locale US -error `find pkg/`
|
|
|
|
@${GOPATH}/bin/misspell -locale US -error `find docs/`
|
|
|
|
@${GOPATH}/bin/misspell -locale US -error `find buildscripts/`
|
|
|
|
@${GOPATH}/bin/misspell -locale US -error `find dockerscripts/`
|
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"
|
2019-01-08 19:53:04 -05:00
|
|
|
@CGO_ENABLED=0 go test -tags kqueue ./...
|
2018-08-28 04:27:01 -04:00
|
|
|
|
|
|
|
verify: build
|
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.
|
2018-02-13 23:59:19 -05:00
|
|
|
build: checks
|
|
|
|
@echo "Building minio binary to './minio'"
|
2018-12-28 17:04:39 -05:00
|
|
|
@GOFLAGS="" CGO_ENABLED=0 go build -tags kqueue --ldflags $(BUILD_LDFLAGS) -o $(PWD)/minio
|
2019-02-20 21:41:16 -05:00
|
|
|
@GOFLAGS="" CGO_ENABLED=0 go build -tags kqueue --ldflags="-s -w" -o $(PWD)/dockerscripts/healthcheck $(PWD)/dockerscripts/healthcheck.go
|
2014-11-01 20:04:24 -04:00
|
|
|
|
2018-09-25 13:33:25 -04:00
|
|
|
docker: build
|
|
|
|
@docker build -t $(TAG) . -f Dockerfile.dev
|
|
|
|
|
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
|
2018-02-13 23:59:19 -05:00
|
|
|
@echo "Installing minio binary to '$(GOPATH)/bin/minio'"
|
2018-06-18 14:45:28 -04:00
|
|
|
@mkdir -p $(GOPATH)/bin && cp $(PWD)/minio $(GOPATH)/bin/minio
|
2018-02-13 23:59:19 -05:00
|
|
|
@echo "Installation 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
|
2019-02-13 07:59:36 -05:00
|
|
|
@find . -name '*~' | xargs rm -fv
|
2018-02-13 23:59:19 -05:00
|
|
|
@rm -rvf minio
|
|
|
|
@rm -rvf build
|
|
|
|
@rm -rvf release
|