🎨 Removed redundant PHONY in Makefile

This commit is contained in:
Maxim Lebedev 2024-05-07 00:44:55 +05:00
parent 9bccf748be
commit 9f488e16ff
Signed by: toby3d
GPG Key ID: 1F14E25B7C119FC5

View File

@ -22,6 +22,5 @@ clean: ## Delete all files in the current directory that are normally created by
check: ## Perform self-tests
$(GO) test -v -cover -failfast -short -shuffle=on $(GOFLAGS) $(srcdir)/...
.PHONY: help
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}'