diff options
author | Rory Bradford <roryrjb@gmail.com> | 2020-08-02 12:32:14 +0100 |
---|---|---|
committer | Rory Bradford <roryrjb@gmail.com> | 2020-08-02 12:32:14 +0100 |
commit | 69631ff66e5afa6993037b60e2db4348a2f7b718 (patch) | |
tree | cdf124689685d9eebf96bc73d7ad1156d82fb0be /Makefile | |
parent | 4120bca8530b87747b44efec0552b946b60d657e (diff) | |
download | rf-69631ff66e5afa6993037b60e2db4348a2f7b718.tar.gz |
Various minor improvements
Signed-off-by: Rory Bradford <roryrjb@gmail.com>
Diffstat (limited to 'Makefile')
-rw-r--r-- | Makefile | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/Makefile b/Makefile index f499b2d..14a80e9 100644 --- a/Makefile +++ b/Makefile @@ -5,8 +5,8 @@ VERSION = 0.0.5 OBJS = rf.o ignore.o PREFIX = /usr/local CC = cc -CFLAGS = -std=c99 -O2 \ - -Wpedantic -Wall \ +CFLAGS = -std=c99 -pedantic -O2 \ + -Wall -Wextra -Wsign-compare \ -fstack-protector-strong -fpie \ -D_FORTIFY_SOURCE=2 \ -DVERSION='"$(VERSION)"' \ |