From b045b5a8f38ec4065ef05f0d56d463c2566d093b Mon Sep 17 00:00:00 2001 From: kksat <22549266+kksat@users.noreply.github.com> Date: Wed, 10 Jul 2024 17:36:13 +0200 Subject: [PATCH] make help default goal Signed-off-by: kksat <22549266+kksat@users.noreply.github.com> --- Makefile | 1 + 1 file changed, 1 insertion(+) diff --git a/Makefile b/Makefile index 4cf64cd..5583b1f 100644 --- a/Makefile +++ b/Makefile @@ -19,5 +19,6 @@ playbooks: ## Show all available playbooks @ls -1 ansible_collections/solid/example/playbooks | sed '/\.yml/!d' | sed 's/.yml//g' .PHONY: help +.DEFAULT_GOAL := help help: ## Show this help @awk 'BEGIN {FS = ":.*?## "} /^[a-zA-Z_-]+:.*?## / {printf "\033[36m%-30s\033[0m %s\n", $$1, $$2}' $(MAKEFILE_LIST)