From b7c83b5b248145ee8df0955a9e2abc239cbabdb5 Mon Sep 17 00:00:00 2001 From: Allanis <allanis@saracraft.net> Date: Sat, 6 Jul 2013 15:42:38 +0100 Subject: [PATCH] [Add] -Wunused to CFLAGS. --- bin/Makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/bin/Makefile b/bin/Makefile index b98c3db..31b4465 100644 --- a/bin/Makefile +++ b/bin/Makefile @@ -29,7 +29,7 @@ ifeq ($(OS),LINUX) CFLAGS += -D_POSIX_SOURCE endif ifdef DEBUG -CFLAGS += -W -Wall -Wextra -Wshadow -Wpointer-arith -Wmissing-prototypes -Winline -Wcast-align \ +CFLAGS += -W -Wall -Wextra -Wunused -Wshadow -Wpointer-arith -Wmissing-prototypes -Winline -Wcast-align \ -Wmissing-declarations -fstack-protector -fstack-protector-all -g3 \ -DDEBUG -DLUA_USE_APICHECK -std=c99 else