Makefile: make warnings into errors

Don't let contributions cause warnings.
This commit is contained in:
Stephen Hemminger 2013-02-04 08:51:44 -08:00
parent 9a7b3d91b6
commit 5a650703d4
1 changed files with 1 additions and 1 deletions

View File

@ -30,7 +30,7 @@ CC = gcc
HOSTCC = gcc
DEFINES += -D_GNU_SOURCE
CCOPTS = -O2
WFLAGS = -Wall -Wstrict-prototypes
WFLAGS = -Wall -Wstrict-prototypes -Werror
CFLAGS = $(WFLAGS) $(CCOPTS) -I../include $(DEFINES)
YACCFLAGS = -d -t -v