Makefile: add clean target

This commit is contained in:
Xavier Del Campo Romero 2023-08-01 02:19:13 +02:00
parent 5c13c9b838
commit 57c9dfcfd0
Signed by: xavi
GPG Key ID: 84FF3612A9BF43F2
1 changed files with 3 additions and 0 deletions

View File

@ -21,5 +21,8 @@ DEPS = \
all: $(PROJECT)
clean:
rm -f $(DEPS)
$(PROJECT): $(DEPS)
$(AR) $(ARFLAGS) $@ $(DEPS)