From 4111b73c73e79a016836d1c212913baa92e0efd6 Mon Sep 17 00:00:00 2001 From: NukeBird Date: Sun, 23 Nov 2025 22:11:41 +0300 Subject: [PATCH] Prefer lowercase --- Makefile => makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) rename Makefile => makefile (93%) diff --git a/Makefile b/makefile similarity index 93% rename from Makefile rename to makefile index ddb9e30..17a0078 100644 --- a/Makefile +++ b/makefile @@ -7,7 +7,7 @@ TARGET = prog.exe all: $(TARGET) -$(TARGET): $(SOURCES) +$(TARGET): $(SOURCES) $(CC) $(CFLAGS) $(SOURCES) -o $(TARGET) $(LDFLAGS) $(LIBS) clean: rm -f $(TARGET)