From 296450a16c110c86c890ef98c2c0da403cf96876 Mon Sep 17 00:00:00 2001
From: Thomas Voss <mail@thomasvoss.com>
Date: Thu, 16 Nov 2023 21:16:34 +0100
Subject: Silence compiler warnings

---
 Makefile | 9 ++++++---
 1 file changed, 6 insertions(+), 3 deletions(-)

(limited to 'Makefile')

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
-- 
cgit v1.2.3