From c20ad012708d54cf6c6835e4f0ed5f0bf328b261 Mon Sep 17 00:00:00 2001 From: Michael Fenn Date: Sat, 13 May 2017 13:30:15 -0400 Subject: [PATCH] Add -Werror to makefile --- Makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Makefile b/Makefile index 2394a477..87d2d751 100644 --- a/Makefile +++ b/Makefile @@ -3,7 +3,7 @@ VERSION = 1.1 PREFIX = /usr/local MANPREFIX = $(PREFIX)/share/man -CFLAGS += -O2 -Wall -Wextra -Wno-unused-parameter +CFLAGS += -O2 -Wall -Wextra -Werror -Wno-unused-parameter LDLIBS = -lreadline ifeq ($(shell pkg-config ncursesw && echo 1),1)