From: Willy Tarreau Date: Mon, 22 Oct 2018 04:22:46 +0000 (+0200) Subject: BUILD: Makefile: add the new ERR variable to force -Werror X-Git-Tag: v1.9-dev5~58 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=23cd43e2d6fa2b6892a786a1a720c5f24e657f10;p=thirdparty%2Fhaproxy.git BUILD: Makefile: add the new ERR variable to force -Werror Instead of having to fiddle with the CFLAGS, let's have ERR=1 to enable -Werror. --- diff --git a/Makefile b/Makefile index b3b6895713..2d1798402e 100644 --- a/Makefile +++ b/Makefile @@ -58,6 +58,7 @@ # DEP may be cleared to ignore changes to include files during development # SMALL_OPTS may be used to specify some options to shrink memory usage. # DEBUG may be used to set some internal debugging options. +# ERR may be set to non-empty to pass -Werror to the compiler # ADDINC may be used to complete the include path in the form -Ipath. # ADDLIB may be used to complete the library list in the form -Lpath -llib. # DEFINE may be used to specify any additional define, which will be reported @@ -150,6 +151,9 @@ LD = $(CC) # Those flags only feed CFLAGS so it is not mandatory to use this form. DEBUG_CFLAGS = -g +#### Add -Werror when set to non-empty +ERR = + #### Compiler-specific flags that may be used to disable some negative over- # optimization or to silence some warnings. -fno-strict-aliasing is needed with # gcc >= 4.4. @@ -838,6 +842,11 @@ EBTREE_DIR := ebtree #### Global compile options VERBOSE_CFLAGS = $(CFLAGS) $(TARGET_CFLAGS) $(SMALL_OPTS) $(DEFINE) COPTS = -Iinclude -I$(EBTREE_DIR) -Wall -Wextra + +ifneq ($(ERR),) +COPTS += -Werror +endif + COPTS += $(CFLAGS) $(TARGET_CFLAGS) $(SMALL_OPTS) $(DEFINE) $(SILENT_DEFINE) COPTS += $(DEBUG) $(OPTIONS_CFLAGS) $(ADDINC)