aboutsummaryrefslogtreecommitdiff
path: root/Makefile
diff options
context:
space:
mode:
authorXavier Del Campo Romero <xavi.dcr@tutanota.com>2023-08-01 02:19:13 +0200
committerXavier Del Campo Romero <xavi.dcr@tutanota.com>2023-08-01 02:19:13 +0200
commit57c9dfcfd0261a1eb0074a3ab85001a342e4cd19 (patch)
treeb2a4236a8b0dc36d90d29e46d1530ae67d697c20 /Makefile
parent5c13c9b8385cb2742f342d4d2f64d4e2d21108ba (diff)
Makefile: add clean target
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile3
1 files changed, 3 insertions, 0 deletions
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)