summaryrefslogtreecommitdiff
path: root/Makefile
diff options
context:
space:
mode:
authorantirez <antirez@gmail.com>2009-03-27 21:37:57 +0100
committerantirez <antirez@gmail.com>2009-03-27 21:37:57 +0100
commit53f8c2c71e5962eeaccb80d04d2e0ff575d520fd (patch)
tree54fa8431230a243f15839565cd70572bfff98849 /Makefile
parent17be1a4a173461772230716ad99d373a512e8f9e (diff)
downloadredis-53f8c2c71e5962eeaccb80d04d2e0ff575d520fd.tar.gz
now Redis is C99-ok
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile2
1 files changed, 1 insertions, 1 deletions
diff --git a/Makefile b/Makefile
index e45899e91..58afaa237 100644
--- a/Makefile
+++ b/Makefile
@@ -3,7 +3,7 @@
# This file is released under the BSD license, see the COPYING file
DEBUG?= -g
-CFLAGS?= -O2 -Wall -W -DSDS_ABORT_ON_OOM
+CFLAGS?= -std=c99 -pedantic -O2 -Wall -W -DSDS_ABORT_ON_OOM
CCOPT= $(CFLAGS)
OBJ = adlist.o ae.o anet.o dict.o redis.o sds.o zmalloc.o