build: Add clean target to makefile

Signed-off-by: Ian Moffett <ian@mirocom.org>
This commit is contained in:
2026-03-21 09:45:48 -04:00
parent e49c6327a6
commit 0b60f393db

View File

@@ -19,3 +19,7 @@ quip: $(OFILES)
%.o: %.c
$(CC) -c $(CFLAGS) $< -o $@
.PHONY: clean
clean:
rm -f $(OFILES)