From c4b7dce9f7bc0a85150f7a5e1d8a2c135ce043a5 Mon Sep 17 00:00:00 2001 From: MeltyPlayer Date: Mon, 17 Oct 2022 20:13:26 -0500 Subject: [PATCH] Stopped deleting the Mario files and test level in clean, since it was taking forever to rebuild as a result. --- Makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Makefile b/Makefile index ca34fef..12aec67 100644 --- a/Makefile +++ b/Makefile @@ -72,6 +72,6 @@ run: test ./$(TEST_FILE) clean: - rm -rf $(BUILD_DIR) $(DIST_DIR) src/decomp/mario test/level.? $(TEST_FILE) + rm -rf $(BUILD_DIR) $(DIST_DIR) $(TEST_FILE) -include $(DEP_FILES)