From d24e6233d621aaadfb7ecd5f5f5a99a4434dc469 Mon Sep 17 00:00:00 2001 From: Maschell Date: Thu, 5 Jan 2023 16:24:42 +0100 Subject: [PATCH] Add -Wextra flag to makefile --- Makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Makefile b/Makefile index 2cd2f5d..f521474 100644 --- a/Makefile +++ b/Makefile @@ -31,7 +31,7 @@ INCLUDES := source #------------------------------------------------------------------------------- # options for code generation #------------------------------------------------------------------------------- -CFLAGS := -g -Wall -O2 -ffunction-sections \ +CFLAGS := -g -Wall -Wextra -O2 -ffunction-sections \ $(MACHDEP) CFLAGS += $(INCLUDE) -D__WIIU__ -D__WUT__