From f48ed22602e4208bc1a49770c094864d74b83628 Mon Sep 17 00:00:00 2001 From: Amber Date: Tue, 5 Aug 2025 12:42:21 -0400 Subject: [PATCH] enable compiler optimizations and gdb debug info --- Makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Makefile b/Makefile index df3b7d6..67d90ed 100644 --- a/Makefile +++ b/Makefile @@ -1,5 +1,5 @@ CC=gcc -CFLAGS=-std=c99 -pedantic -Wall -Wextra +CFLAGS=-std=c99 -pedantic -Wall -Wextra -O2 -ggdb LIBS=-lncursesw EXECUTABLE=bbs