From 3650cd835024ecb47f65bc64dcc5daba727abc78 Mon Sep 17 00:00:00 2001 From: Cory McWilliams Date: Mon, 4 Jan 2021 01:58:50 +0000 Subject: [PATCH] Only warn on errors in src/, not dependencies. git-svn-id: https://www.unprompted.com/svn/projects/tildefriends/trunk@3631 ed5197a5-7fde-0310-b194-c3ffbd925b24 --- Makefile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Makefile b/Makefile index f814253e..f8b62464 100644 --- a/Makefile +++ b/Makefile @@ -3,7 +3,6 @@ BUILD_DIR ?= out COMMON_CFLAGS = \ -Wall \ - -Werror \ -Wextra \ -Wno-unused-parameter \ -Wno-cast-function-type \ @@ -34,7 +33,8 @@ $(APP_OBJS): CFLAGS += \ -Ideps/quickjs \ -Ideps/sqlite \ -Ideps/libuv/include \ - -Ideps/xopt + -Ideps/xopt \ + -Werror BASE64C_SOURCES = deps/base64c/src/base64c.c BASE64C_OBJS = $(patsubst %.c,$(BUILD_DIR)/%.o,$(BASE64C_SOURCES))