diff options
author | Thomas Voss <mail@thomasvoss.com> | 2023-11-16 21:16:34 +0100 |
---|---|---|
committer | Thomas Voss <mail@thomasvoss.com> | 2023-11-16 21:16:34 +0100 |
commit | 296450a16c110c86c890ef98c2c0da403cf96876 (patch) | |
tree | 8da8544da2713c1361a1fa5716afee9cb0d5038f /Makefile | |
parent | d0acd88463bfe912577a0c0054b948b685384f39 (diff) |
Silence compiler warnings
Diffstat (limited to 'Makefile')
-rw-r--r-- | Makefile | 9 |
1 files changed, 6 insertions, 3 deletions
@@ -1,7 +1,10 @@ CC = cc -CFLAGS = -Wall -Wextra -Wpedantic -Werror \ - -O3 -march=native -mtune=native \ - -fomit-frame-pointer -pipe +CFLAGS = \ + -Wall -Wextra -pedantic -Wshadow -Wpointer-arith -Wcast-align \ + -Wwrite-strings -Wmissing-prototypes -Wmissing-declarations \ + -Wredundant-decls -Wnested-externs -Winline -Wno-long-long \ + -Wconversion -Wstrict-prototypes \ + -O3 -march=native -mtune=native -pipe LDLIBS = -luriparser -lssl -lcrypto PREFIX = /usr/local |