Makefile: make warnings into errors
Don't let contributions cause warnings.
This commit is contained in:
parent
9a7b3d91b6
commit
5a650703d4
2
Makefile
2
Makefile
|
|
@ -30,7 +30,7 @@ CC = gcc
|
||||||
HOSTCC = gcc
|
HOSTCC = gcc
|
||||||
DEFINES += -D_GNU_SOURCE
|
DEFINES += -D_GNU_SOURCE
|
||||||
CCOPTS = -O2
|
CCOPTS = -O2
|
||||||
WFLAGS = -Wall -Wstrict-prototypes
|
WFLAGS = -Wall -Wstrict-prototypes -Werror
|
||||||
CFLAGS = $(WFLAGS) $(CCOPTS) -I../include $(DEFINES)
|
CFLAGS = $(WFLAGS) $(CCOPTS) -I../include $(DEFINES)
|
||||||
YACCFLAGS = -d -t -v
|
YACCFLAGS = -d -t -v
|
||||||
|
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue