From 068e4aa9f0b24d2e428f5676b641d70783256813 Mon Sep 17 00:00:00 2001 From: Aryadev Chavali Date: Thu, 5 Feb 2026 04:00:18 +0000 Subject: [PATCH] Makefile: added -Werror to general flags May as well remove all warnings if possible, though in most cases this is just to ensure I catch everything and deal with it. --- Makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Makefile b/Makefile index b58d409..06087c6 100644 --- a/Makefile +++ b/Makefile @@ -5,7 +5,7 @@ OUT=$(DIST)/alisp.out TEST=$(DIST)/test.out LDFLAGS= -GFLAGS=-Wall -Wextra -Wpedantic -std=c23 -I./include/ +GFLAGS=-Wall -Wextra -Wpedantic -Werror -std=c23 -I./include/ DFLAGS=-ggdb -fsanitize=address -fsanitize=undefined -DVERBOSE_LOGS=1 RFLAGS=-O3