From 557a4affa672ae54518c6eafc19615a1bb930824 Mon Sep 17 00:00:00 2001 From: Zvonimir Rudinski Date: Thu, 18 Sep 2025 01:55:12 +0200 Subject: [PATCH] add -O3 to cflags --- Makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Makefile b/Makefile index 1b7a5dd..a4fec8e 100644 --- a/Makefile +++ b/Makefile @@ -1,7 +1,7 @@ .DEFAULT_GOAL := all CC=gcc -CFLAGS=-Wall -Wextra -Werror -pedantic -std=c99 -g +CFLAGS=-Wall -Wextra -Werror -pedantic -std=c99 -O3 todo.o: $(CC) $(CFLAGS) -c engine/todo.c -o todo.o