From 57c9dfcfd0261a1eb0074a3ab85001a342e4cd19 Mon Sep 17 00:00:00 2001 From: Xavier Del Campo Romero Date: Tue, 1 Aug 2023 02:19:13 +0200 Subject: [PATCH] Makefile: add clean target --- Makefile | 3 +++ 1 file changed, 3 insertions(+) diff --git a/Makefile b/Makefile index fb0019d..dd3b3e9 100644 --- a/Makefile +++ b/Makefile @@ -21,5 +21,8 @@ DEPS = \ all: $(PROJECT) +clean: + rm -f $(DEPS) + $(PROJECT): $(DEPS) $(AR) $(ARFLAGS) $@ $(DEPS)