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:
parent
99d16fa506
commit
4de824d665
3
makefile
3
makefile
|
@ -26,7 +26,8 @@ rose:
|
||||||
strip ./rose
|
strip ./rose
|
||||||
|
|
||||||
debug:
|
debug:
|
||||||
$(CC) -fPIC -o rose *.c $(CFLAGS) $(LIBS) -Wall -Wextra
|
$(CC) -fPIC -o rose *.c $(CFLAGS) $(LIBS) -Wall -Wextra \
|
||||||
|
-Wno-unused-variable
|
||||||
|
|
||||||
config.h:
|
config.h:
|
||||||
[ -f "$@" ] || cp config.def.h $@
|
[ -f "$@" ] || cp config.def.h $@
|
||||||
|
|
Loading…
Reference in New Issue
Block a user