summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJari Vetoniemi <mailroxas@gmail.com>2019-02-25 09:24:49 +0200
committerJari Vetoniemi <mailroxas@gmail.com>2019-02-25 09:24:49 +0200
commita7fa510eacd2699f9beb2b40524ca271e7a36cff (patch)
tree66a9e5aabc46edb03a3ad7fc07b8b9b7e7341efc
parent64a58aced869764db527364360e222cb051c3d96 (diff)
make: use normal WARNING assignment
-rw-r--r--Makefile2
1 files changed, 1 insertions, 1 deletions
diff --git a/Makefile b/Makefile
index 8ac9199..530fa9b 100644
--- a/Makefile
+++ b/Makefile
@@ -5,7 +5,7 @@ pkgconfigdir ?= /lib/pkgconfig
MAKEFLAGS += --no-builtin-rules
-WARNINGS := -Wall -Wextra -Wpedantic -Wformat=2 -Wstrict-aliasing=3 -Wstrict-overflow=5 -Wstack-usage=64000 \
+WARNINGS = -Wall -Wextra -Wpedantic -Wformat=2 -Wstrict-aliasing=3 -Wstrict-overflow=5 -Wstack-usage=64000 \
-Wfloat-equal -Wcast-align -Wpointer-arith -Wchar-subscripts -Warray-bounds=2
override CFLAGS ?= -g -O2 $(WARNINGS)