From 4de824d665d33c1019d01a439e2d600ad9afa551 Mon Sep 17 00:00:00 2001 From: bellrise Date: Mon, 16 May 2022 11:06:16 +0200 Subject: [PATCH] makefile: Remove warnings Removed warnings about the unused variables, when in reality the tables from config.h were used in the sources. --- makefile | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/makefile b/makefile index 4f832d0..f2ec2c1 100644 --- a/makefile +++ b/makefile @@ -26,7 +26,8 @@ rose: strip ./rose debug: - $(CC) -fPIC -o rose *.c $(CFLAGS) $(LIBS) -Wall -Wextra + $(CC) -fPIC -o rose *.c $(CFLAGS) $(LIBS) -Wall -Wextra \ + -Wno-unused-variable config.h: [ -f "$@" ] || cp config.def.h $@