]> git.saurik.com Git - redis.git/blob - src/Makefile
support for compiling with tcmalloc
[redis.git] / src / Makefile
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
5 release_hdr := $(shell sh -c './mkreleasehdr.sh')
6 uname_S := $(shell sh -c 'uname -s 2>/dev/null || echo not')
7 OPTIMIZATION?=-O2
8 ifeq ($(uname_S),SunOS)
9 CFLAGS?= -std=c99 -pedantic $(OPTIMIZATION) -Wall -W -D__EXTENSIONS__ -D_XPG6
10 CCLINK?= -ldl -lnsl -lsocket -lm -lpthread
11 else
12 CFLAGS?= -std=c99 -pedantic $(OPTIMIZATION) -Wall -W $(ARCH) $(PROF)
13 CCLINK?= -lm -pthread
14 endif
15
16 ifeq ($(USE_TCMALLOC),yes)
17 CCLINK+= -ltcmalloc
18 endif
19 CCOPT= $(CFLAGS) $(CCLINK) $(ARCH) $(PROF)
20 DEBUG?= -g -rdynamic -ggdb
21
22 PREFIX= /usr/local
23 INSTALL_BIN= $(PREFIX)/bin
24 INSTALL= cp -p
25
26 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
27 BENCHOBJ = ae.o anet.o redis-benchmark.o sds.o adlist.o zmalloc.o
28 CLIOBJ = anet.o sds.o adlist.o redis-cli.o zmalloc.o linenoise.o
29 CHECKDUMPOBJ = redis-check-dump.o lzf_c.o lzf_d.o
30 CHECKAOFOBJ = redis-check-aof.o
31
32 PRGNAME = redis-server
33 BENCHPRGNAME = redis-benchmark
34 CLIPRGNAME = redis-cli
35 CHECKDUMPPRGNAME = redis-check-dump
36 CHECKAOFPRGNAME = redis-check-aof
37
38 all: redis-server redis-benchmark redis-cli redis-check-dump redis-check-aof
39
40
41 # Deps (use make dep to generate this)
42 adlist.o: adlist.c adlist.h zmalloc.h
43 ae.o: ae.c ae.h zmalloc.h config.h ae_kqueue.c
44 ae_epoll.o: ae_epoll.c
45 ae_kqueue.o: ae_kqueue.c
46 ae_select.o: ae_select.c
47 anet.o: anet.c fmacros.h anet.h
48 aof.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
50 config.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
52 db.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
54 debug.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
56 dict.o: dict.c fmacros.h dict.h zmalloc.h
57 intset.o: intset.c intset.h zmalloc.h
58 linenoise.o: linenoise.c fmacros.h
59 lzf_c.o: lzf_c.c lzfP.h
60 lzf_d.o: lzf_d.c lzfP.h
61 multi.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
63 networking.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
65 object.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
67 pqsort.o: pqsort.c
68 pubsub.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
70 rdb.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
72 redis-benchmark.o: redis-benchmark.c fmacros.h ae.h anet.h sds.h adlist.h \
73 zmalloc.h
74 redis-check-aof.o: redis-check-aof.c fmacros.h config.h
75 redis-check-dump.o: redis-check-dump.c lzf.h
76 redis-cli.o: redis-cli.c fmacros.h version.h anet.h sds.h adlist.h \
77 zmalloc.h linenoise.h
78 redis.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
80 release.o: release.c release.h
81 replication.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
83 sds.o: sds.c sds.h zmalloc.h
84 sha1.o: sha1.c sha1.h
85 sort.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
87 t_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
89 t_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
91 t_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
93 t_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
95 t_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
97 util.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
99 vm.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
101 ziplist.o: ziplist.c zmalloc.h ziplist.h
102 zipmap.o: zipmap.c zmalloc.h
103 zmalloc.o: zmalloc.c config.h
104
105 redis-server: $(OBJ)
106 $(CC) -o $(PRGNAME) $(CCOPT) $(DEBUG) $(OBJ)
107 @echo ""
108 @echo "Hint: To run 'make test' is a good idea ;)"
109 @echo ""
110
111 redis-benchmark: $(BENCHOBJ)
112 $(CC) -o $(BENCHPRGNAME) $(CCOPT) $(DEBUG) $(BENCHOBJ)
113
114 redis-cli: $(CLIOBJ)
115 $(CC) -o $(CLIPRGNAME) $(CCOPT) $(DEBUG) $(CLIOBJ)
116
117 redis-check-dump: $(CHECKDUMPOBJ)
118 $(CC) -o $(CHECKDUMPPRGNAME) $(CCOPT) $(DEBUG) $(CHECKDUMPOBJ)
119
120 redis-check-aof: $(CHECKAOFOBJ)
121 $(CC) -o $(CHECKAOFPRGNAME) $(CCOPT) $(DEBUG) $(CHECKAOFOBJ)
122
123 .c.o:
124 $(CC) -c $(CFLAGS) $(DEBUG) $(COMPILE_TIME) $<
125
126 clean:
127 rm -rf $(PRGNAME) $(BENCHPRGNAME) $(CLIPRGNAME) $(CHECKDUMPPRGNAME) $(CHECKAOFPRGNAME) *.o *.gcda *.gcno *.gcov
128
129 dep:
130 $(CC) -MM *.c
131
132 test:
133 (cd ..; tclsh8.5 tests/test_helper.tcl --tags "${TAGS}")
134
135 bench:
136 ./redis-benchmark
137
138 log:
139 git log '--pretty=format:%ad %s (%cn)' --date=short > ../Changelog
140
141 32bit:
142 @echo ""
143 @echo "WARNING: if it fails under Linux you probably need to install libc6-dev-i386"
144 @echo ""
145 make ARCH="-m32"
146
147 gprof:
148 make PROF="-pg"
149
150 gcov:
151 make PROF="-fprofile-arcs -ftest-coverage"
152
153 noopt:
154 make OPTIMIZATION=""
155
156 32bitgprof:
157 make PROF="-pg" ARCH="-arch i386"
158
159 install: all
160 mkdir -p $(INSTALL_BIN)
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)