From 77150e9d26ca25de9fbf1dcae05e7afebb0dd8ba Mon Sep 17 00:00:00 2001 From: belliash Date: Sat, 15 Jun 2019 17:20:51 +0200 Subject: [PATCH] Enable some code diagnostics. --- Makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Makefile b/Makefile index 0d6fe47..62bbdf0 100644 --- a/Makefile +++ b/Makefile @@ -1,5 +1,5 @@ # Flags to pass to the compiler -CFLAGS = -fPIC -Iinclude -I. -W -Wunused -Wall +CFLAGS = -std=c99 -D_GNU_SOURCE -fPIC -Iinclude -I. -Wunused -Wall -Wextra -Wpedantic # Additional CFLAGS for debug build DCFLAGS = -O0 -g3