dnsupdater/Makefile

38 lines
1.0 KiB
Makefile
Raw Normal View History

2020-10-26 09:42:07 +00:00
PROJECT_NAME := "dnsupdater"
PKG := "gitlab.lehouerou.net/laurent/$(PROJECT_NAME)"
PKG_LIST := $(shell go list ${PKG}/... | grep -v /vendor/)
GO_FILES := $(shell find . -name '*.go' | grep -v /vendor/ | grep -v _test.go)
2020-10-26 09:48:25 +00:00
.PHONY: all dep build clean test coverage coverhtml lint
2020-10-26 09:42:07 +00:00
all: build
2020-10-26 09:48:25 +00:00
lint: ## Lint the files
@golint -set_exit_status ${PKG_LIST}
test: ## Run unittests
@go test -short ${PKG_LIST}
race: dep ## Run data race detector
@go test -race -short ${PKG_LIST}
msan: dep ## Run memory sanitizer
@go test -msan -short ${PKG_LIST}
coverage: ## Generate global code coverage report
./tools/coverage.sh;
coverhtml: ## Generate global code coverage report in HTML
./tools/coverage.sh html;
2020-10-26 09:42:07 +00:00
dep: ## Get the dependencies
2020-10-26 09:48:25 +00:00
@go get -v -d ./...
2020-10-26 09:42:07 +00:00
build: dep ## Build the binary file
2020-10-26 10:17:07 +00:00
@go build -i -v $(PKG)/cmd/dnsupdater
2020-10-26 09:48:25 +00:00
clean: ## Remove previous build
@rm -f $(PROJECT_NAME)
help: ## Display this help screen
@grep -E '^[a-zA-Z_-]+:.*?## .*$$' $(MAKEFILE_LIST) | awk 'BEGIN {FS = ":.*?## "}; {printf "\033[36m%-30s\033[0m %s\n", $$1, $$2}'