From d1c0cc22f75692ba3395f5ba35f98e36330e7f0c Mon Sep 17 00:00:00 2001 From: Vincent Batts Date: Tue, 2 Apr 2024 10:44:38 -0400 Subject: [PATCH] Makefile: clean up Signed-off-by: Vincent Batts --- Makefile | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/Makefile b/Makefile index 45b0ec2..2698019 100644 --- a/Makefile +++ b/Makefile @@ -1,4 +1,11 @@ +CLEANFILES := + main: main.c gcc $(shell pkg-config --cflags gtk4) -o $@ $< $(shell pkg-config --libs gtk4) +CLEANFILES += main + +clean: + rm -rf $(CLEANFILES) +