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
|
2009-10-26 11:25:07 -04:00
|
|
|
ifeq ($(uname_S),SunOS)
|
2010-01-12 09:57:00 -05:00
|
|
|
CFLAGS?= -std=c99 -pedantic $(OPTIMIZATION) -Wall -W -D__EXTENSIONS__ -D_XPG6
|
2010-01-11 05:15:54 -05:00
|
|
|
CCLINK?= -ldl -lnsl -lsocket -lm -lpthread
|
2009-10-26 11:25:07 -04:00
|
|
|
else
|
2010-01-12 09:57:00 -05:00
|
|
|
CFLAGS?= -std=c99 -pedantic $(OPTIMIZATION) -Wall -W $(ARCH) $(PROF)
|
2010-01-11 05:15:54 -05:00
|
|
|
CCLINK?= -lm -pthread
|
2009-10-26 11:25:07 -04:00
|
|
|
endif
|
2010-10-21 18:06:44 -04:00
|
|
|
|
|
|
|
ifeq ($(USE_TCMALLOC),yes)
|
|
|
|
CCLINK+= -ltcmalloc
|
2010-10-21 18:16:32 -04:00
|
|
|
CFLAGS+= -DUSE_TCMALLOC
|
2010-10-21 18:06:44 -04:00
|
|
|
endif
|
2009-11-04 03:53:43 -05:00
|
|
|
CCOPT= $(CFLAGS) $(CCLINK) $(ARCH) $(PROF)
|
2009-06-04 14:41:00 -04:00
|
|
|
DEBUG?= -g -rdynamic -ggdb
|
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
|
2010-07-06 13:07:16 -04:00
|
|
|
INSTALL= cp -p
|
|
|
|
|
2010-10-24 10:22:52 -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 vm.o pubsub.o multi.o debug.o sort.o intset.o syncio.o
|
2010-01-19 13:02:02 -05:00
|
|
|
BENCHOBJ = ae.o anet.o redis-benchmark.o sds.o adlist.o zmalloc.o
|
2010-03-23 10:25:32 -04:00
|
|
|
CLIOBJ = anet.o sds.o adlist.o redis-cli.o zmalloc.o linenoise.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-05-05 07:36:29 -04:00
|
|
|
all: redis-server redis-benchmark redis-cli redis-check-dump redis-check-aof
|
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 \
|
|
|
|
zmalloc.h anet.h zipmap.h ziplist.h intset.h version.h
|
2010-10-24 10:22:52 -04:00
|
|
|
chprgname.o: chprgname.c
|
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 \
|
|
|
|
zmalloc.h anet.h zipmap.h ziplist.h intset.h version.h
|
|
|
|
db.o: db.c redis.h fmacros.h config.h ae.h sds.h dict.h adlist.h \
|
|
|
|
zmalloc.h anet.h zipmap.h ziplist.h intset.h version.h
|
|
|
|
debug.o: debug.c redis.h fmacros.h config.h ae.h sds.h dict.h adlist.h \
|
|
|
|
zmalloc.h anet.h zipmap.h ziplist.h intset.h version.h sha1.h
|
2009-06-06 02:24:23 -04:00
|
|
|
dict.o: dict.c fmacros.h dict.h zmalloc.h
|
2010-08-30 05:37:17 -04:00
|
|
|
intset.o: intset.c intset.h zmalloc.h
|
2010-05-13 08:30:36 -04:00
|
|
|
linenoise.o: linenoise.c fmacros.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 \
|
|
|
|
zmalloc.h anet.h zipmap.h ziplist.h intset.h version.h
|
|
|
|
networking.o: networking.c redis.h fmacros.h config.h ae.h sds.h dict.h \
|
|
|
|
adlist.h zmalloc.h anet.h zipmap.h ziplist.h intset.h version.h
|
|
|
|
object.o: object.c redis.h fmacros.h config.h ae.h sds.h dict.h adlist.h \
|
|
|
|
zmalloc.h anet.h zipmap.h ziplist.h intset.h version.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 \
|
|
|
|
zmalloc.h anet.h zipmap.h ziplist.h intset.h version.h
|
|
|
|
rdb.o: rdb.c redis.h fmacros.h config.h ae.h sds.h dict.h adlist.h \
|
|
|
|
zmalloc.h anet.h zipmap.h ziplist.h intset.h version.h lzf.h
|
2010-01-19 13:02:02 -05:00
|
|
|
redis-benchmark.o: redis-benchmark.c fmacros.h ae.h anet.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-08-30 05:37:17 -04:00
|
|
|
redis-cli.o: redis-cli.c fmacros.h version.h anet.h sds.h adlist.h \
|
|
|
|
zmalloc.h linenoise.h
|
|
|
|
redis.o: redis.c redis.h fmacros.h config.h ae.h sds.h dict.h adlist.h \
|
|
|
|
zmalloc.h anet.h zipmap.h ziplist.h intset.h version.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 \
|
|
|
|
adlist.h zmalloc.h anet.h zipmap.h ziplist.h intset.h version.h
|
2009-06-06 02:24:23 -04:00
|
|
|
sds.o: sds.c sds.h zmalloc.h
|
2010-06-13 17:45:14 -04:00
|
|
|
sha1.o: sha1.c sha1.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 \
|
|
|
|
zmalloc.h anet.h zipmap.h ziplist.h intset.h version.h pqsort.h
|
2010-10-24 10:22:52 -04:00
|
|
|
syncio.o: syncio.c
|
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 \
|
|
|
|
zmalloc.h anet.h zipmap.h ziplist.h intset.h version.h
|
|
|
|
t_list.o: t_list.c redis.h fmacros.h config.h ae.h sds.h dict.h adlist.h \
|
|
|
|
zmalloc.h anet.h zipmap.h ziplist.h intset.h version.h
|
|
|
|
t_set.o: t_set.c redis.h fmacros.h config.h ae.h sds.h dict.h adlist.h \
|
|
|
|
zmalloc.h anet.h zipmap.h ziplist.h intset.h version.h
|
|
|
|
t_string.o: t_string.c redis.h fmacros.h config.h ae.h sds.h dict.h \
|
|
|
|
adlist.h zmalloc.h anet.h zipmap.h ziplist.h intset.h version.h
|
|
|
|
t_zset.o: t_zset.c redis.h fmacros.h config.h ae.h sds.h dict.h adlist.h \
|
|
|
|
zmalloc.h anet.h zipmap.h ziplist.h intset.h version.h
|
|
|
|
util.o: util.c redis.h fmacros.h config.h ae.h sds.h dict.h adlist.h \
|
|
|
|
zmalloc.h anet.h zipmap.h ziplist.h intset.h version.h
|
|
|
|
vm.o: vm.c redis.h fmacros.h config.h ae.h sds.h dict.h adlist.h \
|
|
|
|
zmalloc.h anet.h zipmap.h ziplist.h intset.h version.h
|
2010-06-13 17:45:14 -04:00
|
|
|
ziplist.o: ziplist.c zmalloc.h ziplist.h
|
2010-03-05 08:04:17 -05:00
|
|
|
zipmap.o: zipmap.c zmalloc.h
|
2009-06-06 02:24:23 -04:00
|
|
|
zmalloc.o: zmalloc.c config.h
|
2009-03-22 05:30:00 -04:00
|
|
|
|
2010-05-17 18:36:48 -04:00
|
|
|
redis-server: $(OBJ)
|
2010-01-11 05:15:54 -05:00
|
|
|
$(CC) -o $(PRGNAME) $(CCOPT) $(DEBUG) $(OBJ)
|
2009-03-22 05:30:00 -04:00
|
|
|
@echo ""
|
2010-05-27 18:20:12 -04:00
|
|
|
@echo "Hint: To run 'make test' is a good idea ;)"
|
2009-03-22 05:30:00 -04:00
|
|
|
@echo ""
|
|
|
|
|
|
|
|
redis-benchmark: $(BENCHOBJ)
|
|
|
|
$(CC) -o $(BENCHPRGNAME) $(CCOPT) $(DEBUG) $(BENCHOBJ)
|
|
|
|
|
|
|
|
redis-cli: $(CLIOBJ)
|
2010-11-03 11:09:38 -04:00
|
|
|
cd ../deps/hiredis && make static
|
|
|
|
$(CC) -o $(CLIPRGNAME) $(CCOPT) $(DEBUG) $(CLIOBJ) ../deps/hiredis/libhiredis.a
|
|
|
|
|
|
|
|
redis-cli.o:
|
|
|
|
$(CC) -c $(CFLAGS) -I../deps/hiredis $(DEBUG) $(COMPILE_TIME) $<
|
2009-03-22 05:30:00 -04:00
|
|
|
|
2010-03-13 09:55:42 -05:00
|
|
|
redis-check-dump: $(CHECKDUMPOBJ)
|
|
|
|
$(CC) -o $(CHECKDUMPPRGNAME) $(CCOPT) $(DEBUG) $(CHECKDUMPOBJ)
|
|
|
|
|
2010-05-05 07:36:29 -04:00
|
|
|
redis-check-aof: $(CHECKAOFOBJ)
|
|
|
|
$(CC) -o $(CHECKAOFPRGNAME) $(CCOPT) $(DEBUG) $(CHECKAOFOBJ)
|
|
|
|
|
2009-03-22 05:30:00 -04:00
|
|
|
.c.o:
|
2009-10-26 11:25:07 -04:00
|
|
|
$(CC) -c $(CFLAGS) $(DEBUG) $(COMPILE_TIME) $<
|
2009-03-22 05:30:00 -04:00
|
|
|
|
|
|
|
clean:
|
2010-05-05 07:36:29 -04:00
|
|
|
rm -rf $(PRGNAME) $(BENCHPRGNAME) $(CLIPRGNAME) $(CHECKDUMPPRGNAME) $(CHECKAOFPRGNAME) *.o *.gcda *.gcno *.gcov
|
2009-03-22 05:30:00 -04:00
|
|
|
|
|
|
|
dep:
|
|
|
|
$(CC) -MM *.c
|
|
|
|
|
2010-05-14 12:48:33 -04:00
|
|
|
test:
|
2010-10-13 03:26:44 -04:00
|
|
|
(cd ..; tclsh8.5 tests/test_helper.tcl --tags "${TAGS}" --file "${FILE}")
|
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 ""
|
|
|
|
make ARCH="-m32"
|
2009-11-04 03:53:43 -05:00
|
|
|
|
|
|
|
gprof:
|
|
|
|
make PROF="-pg"
|
|
|
|
|
2009-12-14 13:48:24 -05:00
|
|
|
gcov:
|
|
|
|
make PROF="-fprofile-arcs -ftest-coverage"
|
|
|
|
|
2010-01-12 09:57:00 -05:00
|
|
|
noopt:
|
|
|
|
make OPTIMIZATION=""
|
|
|
|
|
2009-11-04 03:53:43 -05:00
|
|
|
32bitgprof:
|
|
|
|
make PROF="-pg" ARCH="-arch i386"
|
2010-07-06 13:07:16 -04:00
|
|
|
|
|
|
|
install: all
|
2010-09-13 11:11:55 -04:00
|
|
|
mkdir -p $(INSTALL_BIN)
|
2010-07-06 13:07:16 -04:00
|
|
|
$(INSTALL) $(PRGNAME) $(INSTALL_BIN)
|
|
|
|
$(INSTALL) $(BENCHPRGNAME) $(INSTALL_BIN)
|
|
|
|
$(INSTALL) $(CLIPRGNAME) $(INSTALL_BIN)
|
|
|
|
$(INSTALL) $(CHECKDUMPPRGNAME) $(INSTALL_BIN)
|
|
|
|
$(INSTALL) $(CHECKAOFPRGNAME) $(INSTALL_BIN)
|