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