From b9a71461d2fb7170136e6527bb98ff16896a686f Mon Sep 17 00:00:00 2001 From: Anachronaut <75824887+RealBusinessAccount@users.noreply.github.com> Date: Sun, 20 Oct 2024 16:02:52 -0400 Subject: [PATCH] Update makefile --- makefile | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/makefile b/makefile index 42d8d34..2891174 100644 --- a/makefile +++ b/makefile @@ -31,7 +31,8 @@ $(OBJ_DIR)/%.o: $(SRC_DIR)/%.c # Clean up object and binary files clean: - rm -rf $(OBJ_DIR) $(BIN_DIR) + rm -rf $(OBJ_DIR) + rm $(TARGET) # Phony targets .PHONY: all clean