Add -Wpedantic to Makefiles

This commit is contained in:
Alberto Ortega 2016-06-11 18:42:42 +02:00
parent 8f84f98034
commit 34b0c56f8c
2 changed files with 2 additions and 2 deletions

View File

@ -10,7 +10,7 @@ LINKOBJ = $(OBJ)
LIBS = -lwsock32 -liphlpapi -lsetupapi -lmpr -lole32 -lwbemuuid -loleaut32 -lws2_32 -s
INCS =
BIN = Output/MingW/pafish.exe
CFLAGS = $(INCS) -Wall -Wextra -O0
CFLAGS = $(INCS) -Wall -Wextra -Wpedantic -O0
all: $(BIN)

View File

@ -10,7 +10,7 @@ LINKOBJ = $(OBJ)
LIBS = -lwsock32 -liphlpapi -lsetupapi -lmpr -lole32 -lwbemuuid -loleaut32 -lws2_32 -s
INCS =
BIN = Output/MingW/pafish.exe
CFLAGS = $(INCS) -Wall -Wextra -O0
CFLAGS = $(INCS) -Wall -Wextra -Wpedantic -O0
all: $(BIN)