gonextcloud/Makefile

33 lines
912 B
Makefile
Raw Normal View History

2018-07-31 13:09:39 +00:00
PROJECT_NAME := "gonextcloud"
2018-10-08 16:50:11 +00:00
PKG := "gitlab.adphi.fr/partitio/Nextcloud-Partitio/$(PROJECT_NAME)"
2018-07-31 13:09:39 +00:00
PKG_LIST := $(shell go list ${PKG})
GO_FILES := $(shell find . -name '*.go' | grep -v _test.go)
.PHONY: all dep build clean test coverage coverhtml lint
all: build
lint: ## Lint the files
@golint -set_exit_status ${PKG_LIST}
test: ## Run unittests
@go test -v .
2018-07-31 13:09:39 +00:00
race: dep ## Run data race detector
@go test -v -race ${PKG_LIST}
2018-07-31 13:09:39 +00:00
msan: dep ## Run memory sanitizer
2018-07-31 13:32:58 +00:00
@go test -msan -short ${PKG_LIST}
2018-07-31 13:09:39 +00:00
coverage: ## Generate global code coverage report
2018-10-08 16:50:11 +00:00
@mkdir -p cover
2018-10-17 07:20:28 +00:00
@touch cover/${PROJECT_NAME}cov
go tool cover -html=cover/${PROJECT_NAME}cov -o coverage.html
2018-07-31 13:09:39 +00:00
dep: ## Get the dependencies
2018-10-08 16:50:11 +00:00
@mkdir -p vendor
2018-07-31 13:09:39 +00:00
@govendor add +external
help: ## Display this help screen
@grep -h -E '^[a-zA-Z_-]+:.*?## .*$$' $(MAKEFILE_LIST) | awk 'BEGIN {FS = ":.*?## "}; {printf "\033[36m%-30s\033[0m %s\n", $$1, $$2}'