From 7c70a9ed044b5ee637620e1d5bb9d6c1757c9f97 Mon Sep 17 00:00:00 2001 From: N0VA Date: Thu, 12 Feb 2026 14:34:00 +0100 Subject: [PATCH] Automatically clean before compiling --- iris_c/Makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/iris_c/Makefile b/iris_c/Makefile index b8b0ef1..97d48d3 100644 --- a/iris_c/Makefile +++ b/iris_c/Makefile @@ -4,7 +4,7 @@ TARGET = main .PHONY: all clean -all: $(TARGET) +all: clean $(TARGET) $(TARGET): main.c random.c random.h $(CC) $(CFLAGS) -o $@ main.c random.c