X-Git-Url: https://git.saurik.com/redis.git/blobdiff_plain/2a200c784da1c7d33f72e3b92425f029214f70a1..94754ccc3cb33bc16a9a17b664adfc3f8949f3df:/Makefile diff --git a/Makefile b/Makefile index e45899e9..cb09c911 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 @@ -56,3 +56,6 @@ test: bench: ./redis-benchmark + +log: + git log '--pretty=format:%ad %s' --date=short > Changelog