style: restructure makefile #4

Merged
mvhutz merged 6 commits from style/makefile-check into main 2026-03-19 00:14:55 +00:00
Showing only changes of commit e53ff4f50b - Show all commits

View File

@@ -1,4 +1,4 @@
.PHONY: all help install clean test-unit test-mutation test-fuzz test docs lint-go lint-makefile
.PHONY: all help install clean test-unit test-mutation test-fuzz test docs lint-go lint-makefile lint
help: ## Show this help
@grep -E '^[a-zA-Z_-]+:.*##' $(MAKEFILE_LIST) | awk -F ':.*## ' '{printf " %-15s %s\n", $$1, $$2}'
@@ -39,4 +39,4 @@ docs: ## Serve godoc locally
clean: ## Clean build and test caches
go clean -cache -testcache
all: lint-go lint-makefile test ## Run all checks and tests
all: lint test ## Run all checks and tests