From 04d87a35665938d0616f9762cf53539057f06202 Mon Sep 17 00:00:00 2001 From: Alexey Fedoseev Date: Mon, 22 Apr 2024 21:47:17 +0300 Subject: [PATCH] break compilation on warnings as well --- Makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Makefile b/Makefile index eab794b..d714f8f 100644 --- a/Makefile +++ b/Makefile @@ -18,7 +18,7 @@ TEST_OBJECTS := $(patsubst %.cpp, %.o, $(TEST_SOURCES)) TEST_TARGETS := $(patsubst %.cpp, %.test, $(TEST_SOURCES)) ifeq ($(DEBUG), 1) - CFLAGS := -Wall -Wshadow -Wconversion -fPIC -g3 -D__DEBUG__ + CFLAGS := -Werror -Wall -Wshadow -Wconversion -fPIC -g3 -D__DEBUG__ LFLAGS := else CFLAGS := -fPIC