From 2c30c9e1957c9fd5cc3b3161778a0003884cd891 Mon Sep 17 00:00:00 2001 From: "Alexander \"Arav\" Andreev" Date: Sun, 3 Dec 2023 19:00:55 +0400 Subject: [PATCH] Do not compile a static executable. --- Makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Makefile b/Makefile index b16408e..4a8f359 100644 --- a/Makefile +++ b/Makefile @@ -1,6 +1,6 @@ CC=cc -CFLAGS=-static --std=c2x -O3 -Wall -Werror -Wextra -pedantic +CFLAGS=--std=c2x -O3 -Wall -Werror -Wextra -pedantic EXES = $(wildcard day*)