aboutsummaryrefslogtreecommitdiff
path: root/Makefile
diff options
context:
space:
mode:
authorThomas Voss <mail@thomasvoss.com> 2023-11-16 21:16:34 +0100
committerThomas Voss <mail@thomasvoss.com> 2023-11-16 21:16:34 +0100
commit296450a16c110c86c890ef98c2c0da403cf96876 (patch)
tree8da8544da2713c1361a1fa5716afee9cb0d5038f /Makefile
parentd0acd88463bfe912577a0c0054b948b685384f39 (diff)
Silence compiler warnings
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile9
1 files changed, 6 insertions, 3 deletions
diff --git a/Makefile b/Makefile
index b8198a4..de03616 100644
--- a/Makefile
+++ b/Makefile
@@ -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