Update makefile

This commit is contained in:
Anachronaut
2024-10-20 16:02:52 -04:00
committed by GitHub
parent e35fb73252
commit b9a71461d2
+2 -1
View File
@@ -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