diff options
author | Jari Vetoniemi <mailroxas@gmail.com> | 2019-02-25 09:08:33 +0200 |
---|---|---|
committer | Jari Vetoniemi <mailroxas@gmail.com> | 2019-02-25 09:08:33 +0200 |
commit | 744be1570ef7e2f3d60b2148d4ef502f013b3c62 (patch) | |
tree | 9f0dec1cbe44d667a8faa6dabacb1d0b16190a8e /Makefile | |
parent | 57c12ff0b13bc2cbdba35ffbfa616731fd296712 (diff) |
make: use normal assignment for warnings
Diffstat (limited to 'Makefile')
-rw-r--r-- | Makefile | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -4,7 +4,7 @@ bindir ?= /bin MAKEFLAGS += --no-builtin-rules # GCC 7: -Wstringop-overflow=, -Walloc-size-larger-than=, -Wduplicated-{branches,cond} -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 |