From 43f061c60cd4a3261cee2fb6cdb0edd84a7822f3 Mon Sep 17 00:00:00 2001 From: alex Date: Thu, 26 Feb 2026 16:53:49 +0800 Subject: [PATCH] fix `make clean` for clean all test file --- Makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Makefile b/Makefile index 26b97ff..8017642 100644 --- a/Makefile +++ b/Makefile @@ -15,7 +15,7 @@ all: @$(CC) $(CFLAGS) re.c tests/test_compile.c -o tests/test_compile clean: - @rm -f tests/test1 tests/test2 tests/test_rand tests/test_compile + @rm -f tests/test1 tests/test2 tests/test_rand tests/test_rand_neg tests/test_compile @#@$(foreach test_bin,$(TEST_BINS), rm -f $(test_bin) ; ) @rm -f a.out @rm -f *.o