2009-03-22 05:30:00 -04:00
|
|
|
# Redis Makefile
|
|
|
|
# Copyright (C) 2009 Salvatore Sanfilippo <antirez at gmail dot com>
|
|
|
|
# This file is released under the BSD license, see the COPYING file
|
|
|
|
|
2010-05-17 18:36:48 -04:00
|
|
|
release_hdr := $(shell sh -c './mkreleasehdr.sh')
|
2009-10-26 11:25:07 -04:00
|
|
|
uname_S := $(shell sh -c 'uname -s 2>/dev/null || echo not')
|
2010-01-12 09:57:00 -05:00
|
|
|
OPTIMIZATION?=-O2
|
2011-11-15 15:40:49 -05:00
|
|
|
DEPENDENCY_TARGETS=hiredis linenoise lua
|
2011-10-29 23:20:00 -04:00
|
|
|
|
2009-10-26 11:25:07 -04:00
|
|
|
ifeq ($(uname_S),SunOS)
|
2011-06-20 05:52:15 -04:00
|
|
|
CFLAGS?=-std=c99 -pedantic $(OPTIMIZATION) -Wall -W -D__EXTENSIONS__ -D_XPG6
|
|
|
|
CCLINK?=-ldl -lnsl -lsocket -lm -lpthread
|
|
|
|
DEBUG?=-g -ggdb
|
2009-10-26 11:25:07 -04:00
|
|
|
else
|
2011-06-20 05:52:15 -04:00
|
|
|
CFLAGS?=-std=c99 -pedantic $(OPTIMIZATION) -Wall -W $(ARCH) $(PROF)
|
|
|
|
CCLINK?=-lm -pthread
|
|
|
|
DEBUG?=-g -rdynamic -ggdb
|
2009-10-26 11:25:07 -04:00
|
|
|
endif
|
2010-10-21 18:06:44 -04:00
|
|
|
|
2011-11-15 16:09:31 -05:00
|
|
|
# Default allocator
|
|
|
|
ifeq ($(uname_S),Linux)
|
|
|
|
MALLOC?=jemalloc
|
|
|
|
else
|
|
|
|
MALLOC?=libc
|
|
|
|
endif
|
|
|
|
|
|
|
|
# Backwards compatibility for selecting an allocator
|
2010-10-21 18:06:44 -04:00
|
|
|
ifeq ($(USE_TCMALLOC),yes)
|
2011-11-15 16:09:31 -05:00
|
|
|
MALLOC=tcmalloc
|
|
|
|
endif
|
|
|
|
|
|
|
|
ifeq ($(USE_TCMALLOC_MINIMAL),yes)
|
|
|
|
MALLOC=tcmalloc_minimal
|
|
|
|
endif
|
|
|
|
|
|
|
|
ifeq ($(USE_JEMALLOC),yes)
|
|
|
|
MALLOC=jemalloc
|
|
|
|
endif
|
|
|
|
|
|
|
|
ifeq ($(MALLOC),tcmalloc)
|
2011-04-19 17:54:43 -04:00
|
|
|
ALLOC_LINK=-ltcmalloc
|
|
|
|
ALLOC_FLAGS=-DUSE_TCMALLOC
|
2010-10-21 18:06:44 -04:00
|
|
|
endif
|
2011-04-19 17:54:43 -04:00
|
|
|
|
2011-11-15 16:09:31 -05:00
|
|
|
ifeq ($(MALLOC),tcmalloc_minimal)
|
2011-04-19 17:54:43 -04:00
|
|
|
ALLOC_LINK=-ltcmalloc_minimal
|
|
|
|
ALLOC_FLAGS=-DUSE_TCMALLOC
|
|
|
|
endif
|
|
|
|
|
2011-11-15 16:09:31 -05:00
|
|
|
ifeq ($(MALLOC),jemalloc)
|
2011-11-15 15:40:49 -05:00
|
|
|
ALLOC_LINK=../deps/jemalloc/lib/libjemalloc.a -ldl
|
2011-06-20 05:52:15 -04:00
|
|
|
ALLOC_FLAGS=-DUSE_JEMALLOC -I../deps/jemalloc/include
|
2011-11-15 15:40:49 -05:00
|
|
|
DEPENDENCY_TARGETS+= jemalloc
|
2011-04-19 17:54:43 -04:00
|
|
|
endif
|
|
|
|
|
|
|
|
CCLINK+= $(ALLOC_LINK)
|
|
|
|
CFLAGS+= $(ALLOC_FLAGS)
|
2011-06-20 05:52:15 -04:00
|
|
|
CCOPT= $(CFLAGS) $(ARCH) $(PROF)
|
2009-03-22 05:30:00 -04:00
|
|
|
|
2010-09-13 11:09:11 -04:00
|
|
|
PREFIX= /usr/local
|
2010-09-13 11:50:57 -04:00
|
|
|
INSTALL_BIN= $(PREFIX)/bin
|
2012-02-14 10:15:20 -05:00
|
|
|
INSTALL= cp -pf
|
2010-07-06 13:07:16 -04:00
|
|
|
|
2011-05-04 04:17:05 -04:00
|
|
|
CCCOLOR="\033[34m"
|
|
|
|
LINKCOLOR="\033[34;1m"
|
|
|
|
SRCCOLOR="\033[33m"
|
|
|
|
BINCOLOR="\033[37;1m"
|
|
|
|
MAKECOLOR="\033[32;1m"
|
|
|
|
ENDCOLOR="\033[0m"
|
|
|
|
|
2011-06-08 11:09:18 -04:00
|
|
|
ifndef V
|
2011-06-09 05:17:32 -04:00
|
|
|
QUIET_CC = @printf ' %b %b\n' $(CCCOLOR)CC$(ENDCOLOR) $(SRCCOLOR)$@$(ENDCOLOR);
|
|
|
|
QUIET_LINK = @printf ' %b %b\n' $(LINKCOLOR)LINK$(ENDCOLOR) $(BINCOLOR)$@$(ENDCOLOR);
|
2011-06-08 11:09:18 -04:00
|
|
|
endif
|
|
|
|
|
2012-04-02 06:31:44 -04:00
|
|
|
OBJ = adlist.o ae.o anet.o dict.o redis.o sds.o zmalloc.o lzf_c.o lzf_d.o pqsort.o zipmap.o sha1.o ziplist.o release.o networking.o util.o object.o db.o replication.o rdb.o t_string.o t_list.o t_set.o t_zset.o t_hash.o config.o aof.o pubsub.o multi.o debug.o sort.o intset.o syncio.o cluster.o crc16.o endianconv.o slowlog.o scripting.o bio.o rio.o rand.o memtest.o crc64.o
|
2010-01-19 13:02:02 -05:00
|
|
|
BENCHOBJ = ae.o anet.o redis-benchmark.o sds.o adlist.o zmalloc.o
|
2010-11-08 10:26:02 -05:00
|
|
|
CLIOBJ = anet.o sds.o adlist.o redis-cli.o zmalloc.o release.o
|
2010-03-13 09:55:42 -05:00
|
|
|
CHECKDUMPOBJ = redis-check-dump.o lzf_c.o lzf_d.o
|
2010-05-05 07:36:29 -04:00
|
|
|
CHECKAOFOBJ = redis-check-aof.o
|
2009-03-22 05:30:00 -04:00
|
|
|
|
|
|
|
PRGNAME = redis-server
|
|
|
|
BENCHPRGNAME = redis-benchmark
|
|
|
|
CLIPRGNAME = redis-cli
|
2010-03-13 09:55:42 -05:00
|
|
|
CHECKDUMPPRGNAME = redis-check-dump
|
2010-05-05 07:36:29 -04:00
|
|
|
CHECKAOFPRGNAME = redis-check-aof
|
2009-03-22 05:30:00 -04:00
|
|
|
|
2010-11-08 07:19:58 -05:00
|
|
|
all: redis-benchmark redis-cli redis-check-dump redis-check-aof redis-server
|
2010-12-15 06:40:23 -05:00
|
|
|
@echo ""
|
|
|
|
@echo "Hint: To run 'make test' is a good idea ;)"
|
|
|
|
@echo ""
|
2009-03-22 05:30:00 -04:00
|
|
|
|
|
|
|
# Deps (use make dep to generate this)
|
2009-06-06 02:24:23 -04:00
|
|
|
adlist.o: adlist.c adlist.h zmalloc.h
|
2010-01-19 13:02:02 -05:00
|
|
|
ae.o: ae.c ae.h zmalloc.h config.h ae_kqueue.c
|
|
|
|
ae_epoll.o: ae_epoll.c
|
|
|
|
ae_kqueue.o: ae_kqueue.c
|
2009-11-23 12:50:39 -05:00
|
|
|
ae_select.o: ae_select.c
|
2009-06-06 02:24:23 -04:00
|
|
|
anet.o: anet.c fmacros.h anet.h
|
2010-08-30 05:37:17 -04:00
|
|
|
aof.o: aof.c redis.h fmacros.h config.h ae.h sds.h dict.h adlist.h \
|
2012-03-10 06:40:03 -05:00
|
|
|
zmalloc.h anet.h ziplist.h intset.h version.h util.h rdb.h rio.h bio.h
|
2011-09-13 10:53:33 -04:00
|
|
|
bio.o: bio.c redis.h fmacros.h config.h ae.h sds.h dict.h adlist.h \
|
2012-03-10 06:40:03 -05:00
|
|
|
zmalloc.h anet.h ziplist.h intset.h version.h util.h rdb.h rio.h bio.h
|
2011-06-20 05:58:54 -04:00
|
|
|
cluster.o: cluster.c redis.h fmacros.h config.h ae.h sds.h dict.h \
|
2012-03-10 06:40:03 -05:00
|
|
|
adlist.h zmalloc.h anet.h ziplist.h intset.h version.h util.h rdb.h \
|
|
|
|
rio.h
|
2010-08-30 05:37:17 -04:00
|
|
|
config.o: config.c redis.h fmacros.h config.h ae.h sds.h dict.h adlist.h \
|
2012-03-10 06:40:03 -05:00
|
|
|
zmalloc.h anet.h ziplist.h intset.h version.h util.h rdb.h rio.h
|
2011-06-20 05:58:54 -04:00
|
|
|
crc16.o: crc16.c redis.h fmacros.h config.h ae.h sds.h dict.h adlist.h \
|
2012-03-10 06:40:03 -05:00
|
|
|
zmalloc.h anet.h ziplist.h intset.h version.h util.h rdb.h rio.h
|
2010-08-30 05:37:17 -04:00
|
|
|
db.o: db.c redis.h fmacros.h config.h ae.h sds.h dict.h adlist.h \
|
2012-03-10 06:40:03 -05:00
|
|
|
zmalloc.h anet.h ziplist.h intset.h version.h util.h rdb.h rio.h
|
2010-08-30 05:37:17 -04:00
|
|
|
debug.o: debug.c redis.h fmacros.h config.h ae.h sds.h dict.h adlist.h \
|
2012-03-10 06:40:03 -05:00
|
|
|
zmalloc.h anet.h ziplist.h intset.h version.h util.h rdb.h rio.h sha1.h
|
2011-06-30 07:27:32 -04:00
|
|
|
dict.o: dict.c fmacros.h dict.h zmalloc.h
|
2012-02-14 10:11:46 -05:00
|
|
|
endianconv.o: endianconv.c
|
|
|
|
intset.o: intset.c intset.h zmalloc.h endianconv.h
|
2009-06-06 02:24:23 -04:00
|
|
|
lzf_c.o: lzf_c.c lzfP.h
|
|
|
|
lzf_d.o: lzf_d.c lzfP.h
|
2010-08-30 05:37:17 -04:00
|
|
|
multi.o: multi.c redis.h fmacros.h config.h ae.h sds.h dict.h adlist.h \
|
2012-03-10 06:40:03 -05:00
|
|
|
zmalloc.h anet.h ziplist.h intset.h version.h util.h rdb.h rio.h
|
2010-08-30 05:37:17 -04:00
|
|
|
networking.o: networking.c redis.h fmacros.h config.h ae.h sds.h dict.h \
|
2012-03-10 06:40:03 -05:00
|
|
|
adlist.h zmalloc.h anet.h ziplist.h intset.h version.h util.h rdb.h \
|
|
|
|
rio.h
|
2010-08-30 05:37:17 -04:00
|
|
|
object.o: object.c redis.h fmacros.h config.h ae.h sds.h dict.h adlist.h \
|
2012-03-10 06:40:03 -05:00
|
|
|
zmalloc.h anet.h ziplist.h intset.h version.h util.h rdb.h rio.h
|
2009-06-06 02:24:23 -04:00
|
|
|
pqsort.o: pqsort.c
|
2010-08-30 05:37:17 -04:00
|
|
|
pubsub.o: pubsub.c redis.h fmacros.h config.h ae.h sds.h dict.h adlist.h \
|
2012-03-10 06:40:03 -05:00
|
|
|
zmalloc.h anet.h ziplist.h intset.h version.h util.h rdb.h rio.h
|
|
|
|
rand.o: rand.c
|
2010-08-30 05:37:17 -04:00
|
|
|
rdb.o: rdb.c redis.h fmacros.h config.h ae.h sds.h dict.h adlist.h \
|
2012-03-10 06:40:03 -05:00
|
|
|
zmalloc.h anet.h ziplist.h intset.h version.h util.h rdb.h rio.h lzf.h \
|
|
|
|
zipmap.h
|
2010-12-28 08:42:09 -05:00
|
|
|
redis-benchmark.o: redis-benchmark.c fmacros.h ae.h \
|
|
|
|
../deps/hiredis/hiredis.h sds.h adlist.h zmalloc.h
|
2010-05-13 08:30:36 -04:00
|
|
|
redis-check-aof.o: redis-check-aof.c fmacros.h config.h
|
2010-03-23 10:25:32 -04:00
|
|
|
redis-check-dump.o: redis-check-dump.c lzf.h
|
2010-12-28 08:42:09 -05:00
|
|
|
redis-cli.o: redis-cli.c fmacros.h version.h ../deps/hiredis/hiredis.h \
|
|
|
|
sds.h zmalloc.h ../deps/linenoise/linenoise.h help.h
|
2010-08-30 05:37:17 -04:00
|
|
|
redis.o: redis.c redis.h fmacros.h config.h ae.h sds.h dict.h adlist.h \
|
2012-03-10 06:40:03 -05:00
|
|
|
zmalloc.h anet.h ziplist.h intset.h version.h util.h rdb.h rio.h \
|
|
|
|
slowlog.h bio.h asciilogo.h
|
2010-06-13 17:45:14 -04:00
|
|
|
release.o: release.c release.h
|
2010-08-30 05:37:17 -04:00
|
|
|
replication.o: replication.c redis.h fmacros.h config.h ae.h sds.h dict.h \
|
2012-03-10 06:40:03 -05:00
|
|
|
adlist.h zmalloc.h anet.h ziplist.h intset.h version.h util.h rdb.h \
|
|
|
|
rio.h
|
|
|
|
rio.o: rio.c fmacros.h rio.h sds.h util.h
|
2011-09-13 10:53:33 -04:00
|
|
|
scripting.o: scripting.c redis.h fmacros.h config.h ae.h sds.h dict.h \
|
2012-03-10 06:40:03 -05:00
|
|
|
adlist.h zmalloc.h anet.h ziplist.h intset.h version.h util.h rdb.h \
|
|
|
|
rio.h sha1.h rand.h
|
2009-06-06 02:24:23 -04:00
|
|
|
sds.o: sds.c sds.h zmalloc.h
|
2011-06-20 05:58:54 -04:00
|
|
|
sha1.o: sha1.c sha1.h config.h
|
2011-06-30 07:27:32 -04:00
|
|
|
slowlog.o: slowlog.c redis.h fmacros.h config.h ae.h sds.h dict.h \
|
2012-03-10 06:40:03 -05:00
|
|
|
adlist.h zmalloc.h anet.h ziplist.h intset.h version.h util.h rdb.h \
|
|
|
|
rio.h slowlog.h
|
2010-08-30 05:37:17 -04:00
|
|
|
sort.o: sort.c redis.h fmacros.h config.h ae.h sds.h dict.h adlist.h \
|
2012-03-10 06:40:03 -05:00
|
|
|
zmalloc.h anet.h ziplist.h intset.h version.h util.h rdb.h rio.h \
|
|
|
|
pqsort.h
|
2010-12-28 08:42:09 -05:00
|
|
|
syncio.o: syncio.c redis.h fmacros.h config.h ae.h sds.h dict.h adlist.h \
|
2012-03-10 06:40:03 -05:00
|
|
|
zmalloc.h anet.h ziplist.h intset.h version.h util.h rdb.h rio.h
|
2010-08-30 05:37:17 -04:00
|
|
|
t_hash.o: t_hash.c redis.h fmacros.h config.h ae.h sds.h dict.h adlist.h \
|
2012-03-10 06:40:03 -05:00
|
|
|
zmalloc.h anet.h ziplist.h intset.h version.h util.h rdb.h rio.h
|
2010-08-30 05:37:17 -04:00
|
|
|
t_list.o: t_list.c redis.h fmacros.h config.h ae.h sds.h dict.h adlist.h \
|
2012-03-10 06:40:03 -05:00
|
|
|
zmalloc.h anet.h ziplist.h intset.h version.h util.h rdb.h rio.h
|
2010-08-30 05:37:17 -04:00
|
|
|
t_set.o: t_set.c redis.h fmacros.h config.h ae.h sds.h dict.h adlist.h \
|
2012-03-10 06:40:03 -05:00
|
|
|
zmalloc.h anet.h ziplist.h intset.h version.h util.h rdb.h rio.h
|
2010-08-30 05:37:17 -04:00
|
|
|
t_string.o: t_string.c redis.h fmacros.h config.h ae.h sds.h dict.h \
|
2012-03-10 06:40:03 -05:00
|
|
|
adlist.h zmalloc.h anet.h ziplist.h intset.h version.h util.h rdb.h \
|
|
|
|
rio.h
|
2010-08-30 05:37:17 -04:00
|
|
|
t_zset.o: t_zset.c redis.h fmacros.h config.h ae.h sds.h dict.h adlist.h \
|
2012-03-10 06:40:03 -05:00
|
|
|
zmalloc.h anet.h ziplist.h intset.h version.h util.h rdb.h rio.h
|
2011-06-20 05:58:54 -04:00
|
|
|
util.o: util.c fmacros.h util.h
|
2012-02-14 10:11:46 -05:00
|
|
|
ziplist.o: ziplist.c zmalloc.h util.h ziplist.h endianconv.h
|
|
|
|
zipmap.o: zipmap.c zmalloc.h endianconv.h
|
2011-06-20 05:58:54 -04:00
|
|
|
zmalloc.o: zmalloc.c config.h zmalloc.h
|
2009-03-22 05:30:00 -04:00
|
|
|
|
2011-11-15 15:40:49 -05:00
|
|
|
# Clean local objects when ARCH is different
|
|
|
|
ifneq ($(shell sh -c '[ -f .make-arch ] && cat .make-arch'), $(ARCH))
|
|
|
|
.make-arch: clean
|
|
|
|
else
|
|
|
|
.make-arch:
|
|
|
|
endif
|
2010-12-15 06:40:23 -05:00
|
|
|
|
2011-11-15 15:40:49 -05:00
|
|
|
.make-arch:
|
2012-02-08 16:24:59 -05:00
|
|
|
-(cd ../deps && $(MAKE) $(DEPENDENCY_TARGETS) ARCH="$(ARCH)")
|
2011-11-15 15:40:49 -05:00
|
|
|
-(echo $(ARCH) > .make-arch)
|
2011-06-20 05:52:15 -04:00
|
|
|
|
2011-11-15 16:09:31 -05:00
|
|
|
# Clean local objects when allocator changes
|
|
|
|
ifneq ($(shell sh -c '[ -f .make-malloc ] && cat .make-malloc'), $(MALLOC))
|
|
|
|
.make-malloc: clean
|
|
|
|
else
|
|
|
|
.make-malloc:
|
|
|
|
endif
|
|
|
|
|
|
|
|
.make-malloc:
|
|
|
|
-(echo $(MALLOC) > .make-malloc)
|
|
|
|
|
2011-11-16 11:34:42 -05:00
|
|
|
# Union of make-prerequisites
|
|
|
|
.make-prerequisites: .make-arch .make-malloc
|
|
|
|
@touch $@
|
2011-11-15 16:09:31 -05:00
|
|
|
|
2011-11-16 11:34:42 -05:00
|
|
|
redis-server: .make-prerequisites $(OBJ)
|
2011-11-15 12:39:38 -05:00
|
|
|
$(QUIET_LINK)$(CC) -o $(PRGNAME) $(CCOPT) $(DEBUG) $(OBJ) ../deps/lua/src/liblua.a $(CCLINK)
|
2009-03-22 05:30:00 -04:00
|
|
|
|
2011-11-16 11:34:42 -05:00
|
|
|
redis-benchmark: .make-prerequisites $(BENCHOBJ)
|
2011-11-15 12:36:13 -05:00
|
|
|
$(QUIET_LINK)$(CC) -o $(BENCHPRGNAME) $(CCOPT) $(DEBUG) $(BENCHOBJ) ../deps/hiredis/libhiredis.a $(CCLINK)
|
2010-11-04 08:37:05 -04:00
|
|
|
|
2011-11-16 11:34:42 -05:00
|
|
|
redis-benchmark.o: redis-benchmark.c .make-prerequisites
|
2011-06-08 11:09:18 -04:00
|
|
|
$(QUIET_CC)$(CC) -c $(CFLAGS) -I../deps/hiredis $(DEBUG) $(COMPILE_TIME) $<
|
2009-03-22 05:30:00 -04:00
|
|
|
|
2011-11-16 11:34:42 -05:00
|
|
|
redis-cli: .make-prerequisites $(CLIOBJ)
|
2011-11-15 12:36:13 -05:00
|
|
|
$(QUIET_LINK)$(CC) -o $(CLIPRGNAME) $(CCOPT) $(DEBUG) $(CLIOBJ) ../deps/hiredis/libhiredis.a ../deps/linenoise/linenoise.o $(CCLINK)
|
2010-11-03 11:09:38 -04:00
|
|
|
|
2011-11-16 11:34:42 -05:00
|
|
|
redis-cli.o: redis-cli.c .make-prerequisites
|
2011-06-08 11:09:18 -04:00
|
|
|
$(QUIET_CC)$(CC) -c $(CFLAGS) -I../deps/hiredis -I../deps/linenoise $(DEBUG) $(COMPILE_TIME) $<
|
2009-03-22 05:30:00 -04:00
|
|
|
|
2011-11-16 11:34:42 -05:00
|
|
|
redis-check-dump: .make-prerequisites $(CHECKDUMPOBJ)
|
2011-11-15 12:36:13 -05:00
|
|
|
$(QUIET_LINK)$(CC) -o $(CHECKDUMPPRGNAME) $(CCOPT) $(DEBUG) $(CHECKDUMPOBJ) $(CCLINK)
|
2010-03-13 09:55:42 -05:00
|
|
|
|
2011-11-16 11:34:42 -05:00
|
|
|
redis-check-aof: .make-prerequisites $(CHECKAOFOBJ)
|
2011-11-15 12:36:13 -05:00
|
|
|
$(QUIET_LINK)$(CC) -o $(CHECKAOFPRGNAME) $(CCOPT) $(DEBUG) $(CHECKAOFOBJ) $(CCLINK)
|
2010-05-05 07:36:29 -04:00
|
|
|
|
2011-06-20 05:52:15 -04:00
|
|
|
# Because the jemalloc.h header is generated as a part of the jemalloc build
|
2011-11-15 15:40:49 -05:00
|
|
|
# process, building it should complete before building any other object. Instead of
|
|
|
|
# depending on a single artifact, simply build all dependencies first.
|
2011-11-16 11:34:42 -05:00
|
|
|
%.o: %.c .make-prerequisites
|
2011-06-14 12:06:39 -04:00
|
|
|
$(QUIET_CC)$(CC) -c $(CFLAGS) $(DEBUG) $(COMPILE_TIME) -I../deps/lua/src $<
|
2009-03-22 05:30:00 -04:00
|
|
|
|
2012-04-04 13:17:32 -04:00
|
|
|
.PHONY: all clean distclean lcov
|
2011-11-15 15:40:49 -05:00
|
|
|
|
2009-03-22 05:30:00 -04:00
|
|
|
clean:
|
2012-04-04 13:17:32 -04:00
|
|
|
rm -rf $(PRGNAME) $(BENCHPRGNAME) $(CLIPRGNAME) $(CHECKDUMPPRGNAME) $(CHECKAOFPRGNAME) *.o *.gcda *.gcno *.gcov redis.info lcov-html
|
2011-11-15 15:40:49 -05:00
|
|
|
|
|
|
|
distclean: clean
|
|
|
|
-(cd ../deps && $(MAKE) distclean)
|
2011-11-15 16:09:31 -05:00
|
|
|
-(rm -f .make-arch .make-malloc)
|
2009-03-22 05:30:00 -04:00
|
|
|
|
|
|
|
dep:
|
2010-12-28 08:42:09 -05:00
|
|
|
$(CC) -MM *.c -I ../deps/hiredis -I ../deps/linenoise
|
2009-03-22 05:30:00 -04:00
|
|
|
|
2011-07-11 08:48:45 -04:00
|
|
|
test: redis-server redis-check-aof
|
2011-07-15 11:20:57 -04:00
|
|
|
@(cd ..; ./runtest)
|
2009-03-22 05:30:00 -04:00
|
|
|
|
2012-04-04 13:17:32 -04:00
|
|
|
lcov:
|
|
|
|
$(MAKE) clean gcov
|
|
|
|
@(set -e; cd ..; ./runtest --clients 1)
|
|
|
|
@geninfo -o redis.info .
|
|
|
|
@genhtml --legend -o lcov-html redis.info
|
|
|
|
|
2009-03-22 05:30:00 -04:00
|
|
|
bench:
|
|
|
|
./redis-benchmark
|
2009-03-30 06:13:43 -04:00
|
|
|
|
|
|
|
log:
|
2010-07-01 08:45:37 -04:00
|
|
|
git log '--pretty=format:%ad %s (%cn)' --date=short > ../Changelog
|
2009-10-23 15:24:01 -04:00
|
|
|
|
|
|
|
32bit:
|
2010-02-22 11:36:54 -05:00
|
|
|
@echo ""
|
|
|
|
@echo "WARNING: if it fails under Linux you probably need to install libc6-dev-i386"
|
|
|
|
@echo ""
|
2011-06-01 11:08:12 -04:00
|
|
|
$(MAKE) ARCH="-m32" JEMALLOC_CFLAGS='CFLAGS="-std=gnu99 -Wall -pipe -g3 -fvisibility=hidden -O3 -funroll-loops -m32"'
|
2009-11-04 03:53:43 -05:00
|
|
|
|
|
|
|
gprof:
|
2010-11-21 10:44:17 -05:00
|
|
|
$(MAKE) PROF="-pg"
|
2009-11-04 03:53:43 -05:00
|
|
|
|
2009-12-14 13:48:24 -05:00
|
|
|
gcov:
|
2012-04-07 06:11:23 -04:00
|
|
|
$(MAKE) PROF="-fprofile-arcs -ftest-coverage -DCOVERAGE_TEST"
|
2009-12-14 13:48:24 -05:00
|
|
|
|
2010-01-12 09:57:00 -05:00
|
|
|
noopt:
|
2010-11-21 10:44:17 -05:00
|
|
|
$(MAKE) OPTIMIZATION=""
|
2010-01-12 09:57:00 -05:00
|
|
|
|
2009-11-04 03:53:43 -05:00
|
|
|
32bitgprof:
|
2010-11-21 10:44:17 -05:00
|
|
|
$(MAKE) PROF="-pg" ARCH="-arch i386"
|
2010-07-06 13:07:16 -04:00
|
|
|
|
2011-07-13 13:15:22 -04:00
|
|
|
src/help.h:
|
|
|
|
@../utils/generate-command-help.rb > help.h
|
|
|
|
|
2010-07-06 13:07:16 -04:00
|
|
|
install: all
|
2011-10-03 10:04:44 -04:00
|
|
|
mkdir -p $(INSTALL_BIN)
|
|
|
|
$(INSTALL) $(PRGNAME) $(INSTALL_BIN)
|
|
|
|
$(INSTALL) $(BENCHPRGNAME) $(INSTALL_BIN)
|
|
|
|
$(INSTALL) $(CLIPRGNAME) $(INSTALL_BIN)
|
|
|
|
$(INSTALL) $(CHECKDUMPPRGNAME) $(INSTALL_BIN)
|
|
|
|
$(INSTALL) $(CHECKAOFPRGNAME) $(INSTALL_BIN)
|