From 5ac25bf971e2a843ef38dfc9142d43f310735840 Mon Sep 17 00:00:00 2001 From: Stephan Rehfeld Date: Mon, 3 Nov 2025 17:06:20 +0100 Subject: [PATCH] Added dependency to target example and marked clean as PHONY target. --- Makefile | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/Makefile b/Makefile index 1e89c36..bcd9af7 100644 --- a/Makefile +++ b/Makefile @@ -1,5 +1,7 @@ -example: +example: main.c cc main.c -o example +.PHONY: clean + clean: rm -f example