diff options
author | Jari Vetoniemi <mailroxas@gmail.com> | 2019-02-25 09:12:16 +0200 |
---|---|---|
committer | Jari Vetoniemi <mailroxas@gmail.com> | 2019-02-25 09:12:16 +0200 |
commit | 21cc4082bd7d60793f124e0d073a20cdc3b75459 (patch) | |
tree | 64f2a8615c988b07275ee24925ab17dad93d20a5 /GNUmakefile | |
parent | 64084b6be384e3e6338996ac7d27c688861efde8 (diff) |
make: normal assignment for WARNINGS
Diffstat (limited to 'GNUmakefile')
-rw-r--r-- | GNUmakefile | 2 |
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) |