From 6a75c1d9d428c58c20ae3e2fc2d6541c1e1381ec Mon Sep 17 00:00:00 2001 From: Aryadev Chavali Date: Thu, 5 Feb 2026 03:58:33 +0000 Subject: [PATCH] Makefile: added VERBOSE_LOGS=1 declaration to DFLAGS for debug build --- Makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Makefile b/Makefile index b8d5c6c..37f9c60 100644 --- a/Makefile +++ b/Makefile @@ -6,7 +6,7 @@ TEST=$(DIST)/test.out LDFLAGS= GFLAGS=-Wall -Wextra -Wpedantic -std=c23 -I./include/ -DFLAGS=-ggdb -fsanitize=address -fsanitize=undefined +DFLAGS=-ggdb -fsanitize=address -fsanitize=undefined -DVERBOSE_LOGS=1 RFLAGS=-O3 MODE=release