X-Git-Url: https://git.saurik.com/redis.git/blobdiff_plain/092dac2a64f912fe67be2e924c58979b200aa64b..3305306f0933bdfbd958cb12bd559636d50e4dc7:/Makefile diff --git a/Makefile b/Makefile index e45899e9..31917fd7 100644 --- a/Makefile +++ b/Makefile @@ -3,10 +3,10 @@ # 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 +OBJ = adlist.o ae.o anet.o dict.o redis.o sds.o zmalloc.o fastlz.o BENCHOBJ = ae.o anet.o benchmark.o sds.o adlist.o zmalloc.o CLIOBJ = anet.o sds.o adlist.o redis-cli.o zmalloc.o @@ -56,3 +56,6 @@ test: bench: ./redis-benchmark + +log: + git log '--pretty=format:%ad %s' --date=short > Changelog