summaryrefslogtreecommitdiff
path: root/Makefile
diff options
context:
space:
mode:
authorantirez <antirez@gmail.com>2009-10-23 21:24:01 +0200
committerantirez <antirez@gmail.com>2009-10-23 21:24:01 +0200
commitfd8ccf4419ab94ab5a9250c0dc7a8d1761056b48 (patch)
tree4ec5f9492cb958389161cf552858a6c6ec597a3f /Makefile
parent6b47e12ef8d9e4fdf6fe9aa9b459baf5c107ab55 (diff)
downloadredis-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--Makefile5
1 files changed, 4 insertions, 1 deletions
diff --git a/Makefile b/Makefile
index fdffde82c..4fe428c41 100644
--- a/Makefile
+++ b/Makefile
@@ -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"