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.
This commit is contained in:
2026-02-05 04:00:18 +00:00
parent 271e0bff9b
commit 068e4aa9f0

View File

@@ -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