From 5bd45973b4e6b1e2a925a06639ecfe592e632773 Mon Sep 17 00:00:00 2001
From: Malin Freeborn <malinfreeborn@posteo.net>
Date: Mon, 17 Feb 2025 19:04:09 +0100
Subject: [PATCH] clean makefile help syntax

---
 system/Makefiles/help.md | 2 ++
 1 file changed, 2 insertions(+)

diff --git a/system/Makefiles/help.md b/system/Makefiles/help.md
index c3e4c62..2c2829a 100644
--- a/system/Makefiles/help.md
+++ b/system/Makefiles/help.md
@@ -7,11 +7,13 @@ Make your first target 'help' to give an overview of the main targets.
 Running `make help` will search for text which starts with `## ` and show what that target does.
 
 ```make
+.PHONY: help
 help: ## Print the help message
 	@awk 'BEGIN {FS = ":.*?## "} /^[0-9a-zA-Z._-]+:.*?## / {printf "\033[36m%s\033[0m : %s\n", $$1, $$2}' $(MAKEFILE_LIST) | \
 		sort | \
 		column -s ':' -t
 
+.PHONY: clean
 clean: ## Remove generated files
 	$(RM) $(defaults)
 ```