makefile: Remove warnings

Removed warnings about the unused variables, when in reality the
tables from config.h were used in the sources.
This commit is contained in:
bellrise 2022-05-16 11:06:16 +02:00
parent 99d16fa506
commit 4de824d665

View File

@ -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 $@