From 7471d8eaa4bc070a6667ddd354c1f628ca018e94 Mon Sep 17 00:00:00 2001 From: ENGO150 Date: Sun, 19 Jun 2022 17:19:36 +0200 Subject: [PATCH] added many more warning flags to CFLAGS --- Makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Makefile b/Makefile index 5bb8cf6..ff82425 100644 --- a/Makefile +++ b/Makefile @@ -1,6 +1,6 @@ # Compiler Settings CC=cc -CFLAGS=-Wall -std=c11 +CFLAGS=-Wall -Wextra -Werror -Wcomment -Wformat -Wformat-security -Wmain -Wnonnull -Wunused -std=c11 # Source Code SRC=src/lib/*.c