]> git.saurik.com Git - redis.git/blobdiff - Makefile
now Redis is C99-ok
[redis.git] / Makefile
index e45899e9108020d8d71534b0135ce00b847d5a95..58afaa23756a1dc8d71cb1c7ab89576af7a9f9ea 100644 (file)
--- 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