diff options
author | antirez <antirez@gmail.com> | 2009-10-23 21:24:01 +0200 |
---|---|---|
committer | antirez <antirez@gmail.com> | 2009-10-23 21:24:01 +0200 |
commit | fd8ccf4419ab94ab5a9250c0dc7a8d1761056b48 (patch) | |
tree | 4ec5f9492cb958389161cf552858a6c6ec597a3f /Makefile | |
parent | 6b47e12ef8d9e4fdf6fe9aa9b459baf5c107ab55 (diff) | |
download | redis-fd8ccf4419ab94ab5a9250c0dc7a8d1761056b48.tar.gz |
more work on ZSETs and a new make target called 32bit to build i386 binaries on mac os x leopard
Diffstat (limited to 'Makefile')
-rw-r--r-- | Makefile | 5 |
1 files changed, 4 insertions, 1 deletions
@@ -4,7 +4,7 @@ DEBUG?= -g -rdynamic -ggdb CFLAGS?= -std=c99 -O2 -pedantic -Wall -W -CCOPT= $(CFLAGS) +CCOPT= $(CFLAGS) $(ARCH) OBJ = adlist.o ae.o anet.o dict.o redis.o sds.o zmalloc.o lzf_c.o lzf_d.o pqsort.o BENCHOBJ = ae.o anet.o benchmark.o sds.o adlist.o zmalloc.o @@ -61,3 +61,6 @@ bench: log: git log '--pretty=format:%ad %s' --date=short > Changelog + +32bit: + make ARCH="-arch i386" |