From 59523d6de4feda0abf1f1163b04b29b0f4de291e Mon Sep 17 00:00:00 2001 From: Peter McGoron Date: Sat, 31 Jul 2021 20:42:30 -0400 Subject: [PATCH] add make clean --- Makefile | 2 ++ 1 file changed, 2 insertions(+) diff --git a/Makefile b/Makefile index 48f7f43..e98b796 100644 --- a/Makefile +++ b/Makefile @@ -14,3 +14,5 @@ test/input: $(TEST_INPUT) $(CC) -Wall $(TEST_INPUT) -o test/input .c.o: $(CC) -g -std=c89 -Wall -c $< -o $@ +clean: + $(RM) $(TESTS) $(OUT) *.o