summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJari Vetoniemi <mailroxas@gmail.com>2019-02-25 09:12:16 +0200
committerJari Vetoniemi <mailroxas@gmail.com>2019-02-25 09:12:16 +0200
commit21cc4082bd7d60793f124e0d073a20cdc3b75459 (patch)
tree64f2a8615c988b07275ee24925ab17dad93d20a5
parent64084b6be384e3e6338996ac7d27c688861efde8 (diff)
make: normal assignment for WARNINGS
-rw-r--r--GNUmakefile2
1 files changed, 1 insertions, 1 deletions
diff --git a/GNUmakefile b/GNUmakefile
index f653580..41034d2 100644
--- a/GNUmakefile
+++ b/GNUmakefile
@@ -3,7 +3,7 @@ bindir ?= /bin
MAKEFLAGS += --no-builtin-rules
-WARNINGS := -Wall -Wextra -Wpedantic -Wformat=2 -Wstrict-aliasing=3 -Wstrict-overflow=5 -Wstack-usage=12500 \
+WARNINGS = -Wall -Wextra -Wpedantic -Wformat=2 -Wstrict-aliasing=3 -Wstrict-overflow=5 -Wstack-usage=12500 \
-Wfloat-equal -Wcast-align -Wpointer-arith -Wchar-subscripts -Warray-bounds=2
override CFLAGS ?= -g -O2 $(WARNINGS)