From 73f892aff0b0fed5007a63c9ba3f12d4b869eec6 Mon Sep 17 00:00:00 2001 From: Tomas Rivera Date: Mon, 27 Apr 2026 19:26:03 +0200 Subject: [PATCH] Build: add -Werror to makefile --- makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/makefile b/makefile index 8897536..6c91b0a 100644 --- a/makefile +++ b/makefile @@ -2,7 +2,7 @@ CC := gcc VERSION := $(shell git describe --tags --always --dirty) -CFLAGS := -Wall -Wextra -O2 \ +CFLAGS := -Wall -Wextra -Werror -O2 \ -DVERSION=\"$(VERSION)\" \ $(shell pkg-config --cflags libcjson ncurses)