add make clean

This commit is contained in:
Peter McGoron 2021-07-31 20:42:30 -04:00
parent 02c70c0a11
commit 59523d6de4
1 changed files with 2 additions and 0 deletions

View File

@ -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