]> git.saurik.com Git - redis.git/blame - src/Makefile
support for compiling with tcmalloc
[redis.git] / src / Makefile
CommitLineData
ed9b544e 1# Redis Makefile
2# Copyright (C) 2009 Salvatore Sanfilippo <antirez at gmail dot com>
3# This file is released under the BSD license, see the COPYING file
4
73287b2b 5release_hdr := $(shell sh -c './mkreleasehdr.sh')
325d1eb4 6uname_S := $(shell sh -c 'uname -s 2>/dev/null || echo not')
25fd2cb2 7OPTIMIZATION?=-O2
325d1eb4 8ifeq ($(uname_S),SunOS)
25fd2cb2 9 CFLAGS?= -std=c99 -pedantic $(OPTIMIZATION) -Wall -W -D__EXTENSIONS__ -D_XPG6
a69a0c9c 10 CCLINK?= -ldl -lnsl -lsocket -lm -lpthread
325d1eb4 11else
25fd2cb2 12 CFLAGS?= -std=c99 -pedantic $(OPTIMIZATION) -Wall -W $(ARCH) $(PROF)
a69a0c9c 13 CCLINK?= -lm -pthread
325d1eb4 14endif
0a802bd7 15
16ifeq ($(USE_TCMALLOC),yes)
17 CCLINK+= -ltcmalloc
18endif
d0ccebcf 19CCOPT= $(CFLAGS) $(CCLINK) $(ARCH) $(PROF)
01fe7151 20DEBUG?= -g -rdynamic -ggdb
ed9b544e 21
e1386503 22PREFIX= /usr/local
0997b411 23INSTALL_BIN= $(PREFIX)/bin
acc01854 24INSTALL= cp -p
25
96ffb2fe 26OBJ = 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
970e10bb 27BENCHOBJ = ae.o anet.o redis-benchmark.o sds.o adlist.o zmalloc.o
cf87ebf2 28CLIOBJ = anet.o sds.o adlist.o redis-cli.o zmalloc.o linenoise.o
08af4d5c 29CHECKDUMPOBJ = redis-check-dump.o lzf_c.o lzf_d.o
b4bd0524 30CHECKAOFOBJ = redis-check-aof.o
ed9b544e 31
32PRGNAME = redis-server
33BENCHPRGNAME = redis-benchmark
34CLIPRGNAME = redis-cli
08af4d5c 35CHECKDUMPPRGNAME = redis-check-dump
b4bd0524 36CHECKAOFPRGNAME = redis-check-aof
ed9b544e 37
b4bd0524 38all: redis-server redis-benchmark redis-cli redis-check-dump redis-check-aof
ed9b544e 39
8fedd04d 40
ed9b544e 41# Deps (use make dep to generate this)
9e9c0ce1 42adlist.o: adlist.c adlist.h zmalloc.h
970e10bb 43ae.o: ae.c ae.h zmalloc.h config.h ae_kqueue.c
44ae_epoll.o: ae_epoll.c
45ae_kqueue.o: ae_kqueue.c
266373b2 46ae_select.o: ae_select.c
9e9c0ce1 47anet.o: anet.c fmacros.h anet.h
8fedd04d 48aof.o: aof.c redis.h fmacros.h config.h ae.h sds.h dict.h adlist.h \
49 zmalloc.h anet.h zipmap.h ziplist.h intset.h version.h
50config.o: config.c redis.h fmacros.h config.h ae.h sds.h dict.h adlist.h \
51 zmalloc.h anet.h zipmap.h ziplist.h intset.h version.h
52db.o: db.c redis.h fmacros.h config.h ae.h sds.h dict.h adlist.h \
53 zmalloc.h anet.h zipmap.h ziplist.h intset.h version.h
54debug.o: debug.c redis.h fmacros.h config.h ae.h sds.h dict.h adlist.h \
55 zmalloc.h anet.h zipmap.h ziplist.h intset.h version.h sha1.h
9e9c0ce1 56dict.o: dict.c fmacros.h dict.h zmalloc.h
8fedd04d 57intset.o: intset.c intset.h zmalloc.h
7a121e60 58linenoise.o: linenoise.c fmacros.h
9e9c0ce1 59lzf_c.o: lzf_c.c lzfP.h
60lzf_d.o: lzf_d.c lzfP.h
8fedd04d 61multi.o: multi.c redis.h fmacros.h config.h ae.h sds.h dict.h adlist.h \
62 zmalloc.h anet.h zipmap.h ziplist.h intset.h version.h
63networking.o: networking.c redis.h fmacros.h config.h ae.h sds.h dict.h \
64 adlist.h zmalloc.h anet.h zipmap.h ziplist.h intset.h version.h
65object.o: object.c redis.h fmacros.h config.h ae.h sds.h dict.h adlist.h \
66 zmalloc.h anet.h zipmap.h ziplist.h intset.h version.h
9e9c0ce1 67pqsort.o: pqsort.c
8fedd04d 68pubsub.o: pubsub.c redis.h fmacros.h config.h ae.h sds.h dict.h adlist.h \
69 zmalloc.h anet.h zipmap.h ziplist.h intset.h version.h
70rdb.o: rdb.c redis.h fmacros.h config.h ae.h sds.h dict.h adlist.h \
71 zmalloc.h anet.h zipmap.h ziplist.h intset.h version.h lzf.h
970e10bb 72redis-benchmark.o: redis-benchmark.c fmacros.h ae.h anet.h sds.h adlist.h \
73 zmalloc.h
7a121e60 74redis-check-aof.o: redis-check-aof.c fmacros.h config.h
cf87ebf2 75redis-check-dump.o: redis-check-dump.c lzf.h
8fedd04d 76redis-cli.o: redis-cli.c fmacros.h version.h anet.h sds.h adlist.h \
77 zmalloc.h linenoise.h
78redis.o: redis.c redis.h fmacros.h config.h ae.h sds.h dict.h adlist.h \
79 zmalloc.h anet.h zipmap.h ziplist.h intset.h version.h
7c4fc71c 80release.o: release.c release.h
8fedd04d 81replication.o: replication.c redis.h fmacros.h config.h ae.h sds.h dict.h \
82 adlist.h zmalloc.h anet.h zipmap.h ziplist.h intset.h version.h
9e9c0ce1 83sds.o: sds.c sds.h zmalloc.h
7c4fc71c 84sha1.o: sha1.c sha1.h
8fedd04d 85sort.o: sort.c redis.h fmacros.h config.h ae.h sds.h dict.h adlist.h \
86 zmalloc.h anet.h zipmap.h ziplist.h intset.h version.h pqsort.h
87t_hash.o: t_hash.c redis.h fmacros.h config.h ae.h sds.h dict.h adlist.h \
88 zmalloc.h anet.h zipmap.h ziplist.h intset.h version.h
89t_list.o: t_list.c redis.h fmacros.h config.h ae.h sds.h dict.h adlist.h \
90 zmalloc.h anet.h zipmap.h ziplist.h intset.h version.h
91t_set.o: t_set.c redis.h fmacros.h config.h ae.h sds.h dict.h adlist.h \
92 zmalloc.h anet.h zipmap.h ziplist.h intset.h version.h
93t_string.o: t_string.c redis.h fmacros.h config.h ae.h sds.h dict.h \
94 adlist.h zmalloc.h anet.h zipmap.h ziplist.h intset.h version.h
95t_zset.o: t_zset.c redis.h fmacros.h config.h ae.h sds.h dict.h adlist.h \
96 zmalloc.h anet.h zipmap.h ziplist.h intset.h version.h
97util.o: util.c redis.h fmacros.h config.h ae.h sds.h dict.h adlist.h \
98 zmalloc.h anet.h zipmap.h ziplist.h intset.h version.h
99vm.o: vm.c redis.h fmacros.h config.h ae.h sds.h dict.h adlist.h \
100 zmalloc.h anet.h zipmap.h ziplist.h intset.h version.h
7c4fc71c 101ziplist.o: ziplist.c zmalloc.h ziplist.h
5234952b 102zipmap.o: zipmap.c zmalloc.h
9e9c0ce1 103zmalloc.o: zmalloc.c config.h
ed9b544e 104
73287b2b 105redis-server: $(OBJ)
a69a0c9c 106 $(CC) -o $(PRGNAME) $(CCOPT) $(DEBUG) $(OBJ)
ed9b544e 107 @echo ""
ea2c08e9 108 @echo "Hint: To run 'make test' is a good idea ;)"
ed9b544e 109 @echo ""
110
111redis-benchmark: $(BENCHOBJ)
112 $(CC) -o $(BENCHPRGNAME) $(CCOPT) $(DEBUG) $(BENCHOBJ)
113
114redis-cli: $(CLIOBJ)
115 $(CC) -o $(CLIPRGNAME) $(CCOPT) $(DEBUG) $(CLIOBJ)
116
08af4d5c
PN
117redis-check-dump: $(CHECKDUMPOBJ)
118 $(CC) -o $(CHECKDUMPPRGNAME) $(CCOPT) $(DEBUG) $(CHECKDUMPOBJ)
119
b4bd0524
PN
120redis-check-aof: $(CHECKAOFOBJ)
121 $(CC) -o $(CHECKAOFPRGNAME) $(CCOPT) $(DEBUG) $(CHECKAOFOBJ)
122
ed9b544e 123.c.o:
325d1eb4 124 $(CC) -c $(CFLAGS) $(DEBUG) $(COMPILE_TIME) $<
ed9b544e 125
126clean:
b4bd0524 127 rm -rf $(PRGNAME) $(BENCHPRGNAME) $(CLIPRGNAME) $(CHECKDUMPPRGNAME) $(CHECKAOFPRGNAME) *.o *.gcda *.gcno *.gcov
ed9b544e 128
129dep:
130 $(CC) -MM *.c
131
ab72b483 132test:
e2641e09 133 (cd ..; tclsh8.5 tests/test_helper.tcl --tags "${TAGS}")
ed9b544e 134
135bench:
136 ./redis-benchmark
378fd421 137
138log:
24110a4d 139 git log '--pretty=format:%ad %s (%cn)' --date=short > ../Changelog
fd8ccf44 140
14132bit:
9ebed7cf 142 @echo ""
143 @echo "WARNING: if it fails under Linux you probably need to install libc6-dev-i386"
144 @echo ""
145 make ARCH="-m32"
d0ccebcf 146
147gprof:
148 make PROF="-pg"
149
fc77604c 150gcov:
151 make PROF="-fprofile-arcs -ftest-coverage"
152
25fd2cb2 153noopt:
154 make OPTIMIZATION=""
155
d0ccebcf 15632bitgprof:
157 make PROF="-pg" ARCH="-arch i386"
acc01854 158
159install: all
e984050f 160 mkdir -p $(INSTALL_BIN)
acc01854 161 $(INSTALL) $(PRGNAME) $(INSTALL_BIN)
162 $(INSTALL) $(BENCHPRGNAME) $(INSTALL_BIN)
163 $(INSTALL) $(CLIPRGNAME) $(INSTALL_BIN)
164 $(INSTALL) $(CHECKDUMPPRGNAME) $(INSTALL_BIN)
165 $(INSTALL) $(CHECKAOFPRGNAME) $(INSTALL_BIN)