add -Wformat-security -Wno-format-zero-length

This commit is contained in:
Brendan O'Dea 2005-01-06 02:35:03 +00:00
parent 89eb5a00ec
commit 19a90ac4d9

View file

@ -14,16 +14,12 @@ DEFINES += -DSTATEDIR='"$(statedir)"'
OPTIM = OPTIM =
OPTIM += -g OPTIM += -g
OPTIM += -O3 OPTIM += -O3
OPTIM += -funroll-loops
OPTIM += -fomit-frame-pointer
OPTIM += -finline-functions
#OPTIM += -fstrength-reduce
CC = gcc CC = gcc
LD = gcc LD = gcc
INCLUDES = -I. INCLUDES = -I.
CPPFLAGS = $(INCLUDES) $(DEFINES) CPPFLAGS = $(INCLUDES) $(DEFINES)
CFLAGS = -Wall $(OPTIM) CFLAGS = -Wall -Wformat-security -Wno-format-zero-length $(OPTIM)
LDFLAGS = LDFLAGS =
LDLIBS = LDLIBS =
INSTALL = install -c -D -o root -g root INSTALL = install -c -D -o root -g root