]>
Commit | Line | Data |
---|---|---|
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 | ||
9 | ifeq ($(uname_S),Linux) | |
10 | ifneq ($(FORCE_LIBC_MALLOC),yes) | |
11 | USE_JEMALLOC=yes | |
12 | endif | |
13 | endif | |
14 | ||
15 | ifeq ($(uname_S),SunOS) | |
16 | CFLAGS?=-std=c99 -pedantic $(OPTIMIZATION) -Wall -W -D__EXTENSIONS__ -D_XPG6 | |
17 | CCLINK?=-ldl -lnsl -lsocket -lm -lpthread | |
18 | DEBUG?=-g -ggdb | |
19 | else | |
20 | CFLAGS?=-std=c99 -pedantic $(OPTIMIZATION) -Wall -W $(ARCH) $(PROF) | |
21 | CCLINK?=-lm -pthread | |
22 | DEBUG?=-g -rdynamic -ggdb | |
23 | endif | |
24 | ||
25 | ifeq ($(USE_TCMALLOC),yes) | |
26 | ALLOD_DEPS= | |
27 | ALLOC_LINK=-ltcmalloc | |
28 | ALLOC_FLAGS=-DUSE_TCMALLOC | |
29 | endif | |
30 | ||
31 | ifeq ($(USE_TCMALLOC_MINIMAL),yes) | |
32 | ALLOD_DEPS= | |
33 | ALLOC_LINK=-ltcmalloc_minimal | |
34 | ALLOC_FLAGS=-DUSE_TCMALLOC | |
35 | endif | |
36 | ||
37 | ifeq ($(USE_JEMALLOC),yes) | |
38 | ALLOC_DEP=../deps/jemalloc/lib/libjemalloc.a | |
39 | ALLOC_LINK=$(ALLOC_DEP) -ldl | |
40 | ALLOC_FLAGS=-DUSE_JEMALLOC -I../deps/jemalloc/include | |
41 | endif | |
42 | ||
43 | CCLINK+= $(ALLOC_LINK) | |
44 | CFLAGS+= $(ALLOC_FLAGS) | |
45 | ||
46 | CCOPT= $(CFLAGS) $(ARCH) $(PROF) | |
47 | ||
48 | PREFIX= /usr/local | |
49 | INSTALL_BIN= $(PREFIX)/bin | |
50 | INSTALL= cp -p | |
51 | ||
52 | CCCOLOR="\033[34m" | |
53 | LINKCOLOR="\033[34;1m" | |
54 | SRCCOLOR="\033[33m" | |
55 | BINCOLOR="\033[37;1m" | |
56 | MAKECOLOR="\033[32;1m" | |
57 | ENDCOLOR="\033[0m" | |
58 | ||
59 | ifndef V | |
60 | QUIET_CC = @printf ' %b %b\n' $(CCCOLOR)CC$(ENDCOLOR) $(SRCCOLOR)$@$(ENDCOLOR); | |
61 | QUIET_LINK = @printf ' %b %b\n' $(LINKCOLOR)LINK$(ENDCOLOR) $(BINCOLOR)$@$(ENDCOLOR); | |
62 | endif | |
63 | ||
64 | 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 endian.o slowlog.o scripting.o bio.o | |
65 | BENCHOBJ = ae.o anet.o redis-benchmark.o sds.o adlist.o zmalloc.o | |
66 | CLIOBJ = anet.o sds.o adlist.o redis-cli.o zmalloc.o release.o | |
67 | CHECKDUMPOBJ = redis-check-dump.o lzf_c.o lzf_d.o | |
68 | CHECKAOFOBJ = redis-check-aof.o | |
69 | ||
70 | PRGNAME = redis-server | |
71 | BENCHPRGNAME = redis-benchmark | |
72 | CLIPRGNAME = redis-cli | |
73 | CHECKDUMPPRGNAME = redis-check-dump | |
74 | CHECKAOFPRGNAME = redis-check-aof | |
75 | ||
76 | all: redis-benchmark redis-cli redis-check-dump redis-check-aof redis-server | |
77 | @echo "" | |
78 | @echo "Hint: To run 'make test' is a good idea ;)" | |
79 | @echo "" | |
80 | ||
81 | # Deps (use make dep to generate this) | |
82 | adlist.o: adlist.c adlist.h zmalloc.h | |
83 | ae.o: ae.c ae.h zmalloc.h config.h ae_kqueue.c | |
84 | ae_epoll.o: ae_epoll.c | |
85 | ae_kqueue.o: ae_kqueue.c | |
86 | ae_select.o: ae_select.c | |
87 | anet.o: anet.c fmacros.h anet.h | |
88 | aof.o: aof.c redis.h fmacros.h config.h ae.h sds.h dict.h adlist.h \ | |
89 | zmalloc.h anet.h zipmap.h ziplist.h intset.h version.h util.h | |
90 | bio.o: bio.c redis.h fmacros.h config.h ae.h sds.h dict.h adlist.h \ | |
91 | zmalloc.h anet.h zipmap.h ziplist.h intset.h version.h util.h bio.h | |
92 | cluster.o: cluster.c redis.h fmacros.h config.h ae.h sds.h dict.h \ | |
93 | adlist.h zmalloc.h anet.h zipmap.h ziplist.h intset.h version.h util.h | |
94 | config.o: config.c redis.h fmacros.h config.h ae.h sds.h dict.h adlist.h \ | |
95 | zmalloc.h anet.h zipmap.h ziplist.h intset.h version.h util.h | |
96 | crc16.o: crc16.c redis.h fmacros.h config.h ae.h sds.h dict.h adlist.h \ | |
97 | zmalloc.h anet.h zipmap.h ziplist.h intset.h version.h util.h | |
98 | db.o: db.c redis.h fmacros.h config.h ae.h sds.h dict.h adlist.h \ | |
99 | zmalloc.h anet.h zipmap.h ziplist.h intset.h version.h util.h | |
100 | debug.o: debug.c redis.h fmacros.h config.h ae.h sds.h dict.h adlist.h \ | |
101 | zmalloc.h anet.h zipmap.h ziplist.h intset.h version.h util.h sha1.h | |
102 | dict.o: dict.c fmacros.h dict.h zmalloc.h | |
103 | endian.o: endian.c | |
104 | intset.o: intset.c intset.h zmalloc.h endian.h | |
105 | lzf_c.o: lzf_c.c lzfP.h | |
106 | lzf_d.o: lzf_d.c lzfP.h | |
107 | multi.o: multi.c redis.h fmacros.h config.h ae.h sds.h dict.h adlist.h \ | |
108 | zmalloc.h anet.h zipmap.h ziplist.h intset.h version.h util.h | |
109 | networking.o: networking.c redis.h fmacros.h config.h ae.h sds.h dict.h \ | |
110 | adlist.h zmalloc.h anet.h zipmap.h ziplist.h intset.h version.h util.h | |
111 | object.o: object.c redis.h fmacros.h config.h ae.h sds.h dict.h adlist.h \ | |
112 | zmalloc.h anet.h zipmap.h ziplist.h intset.h version.h util.h | |
113 | pqsort.o: pqsort.c | |
114 | pubsub.o: pubsub.c redis.h fmacros.h config.h ae.h sds.h dict.h adlist.h \ | |
115 | zmalloc.h anet.h zipmap.h ziplist.h intset.h version.h util.h | |
116 | rdb.o: rdb.c redis.h fmacros.h config.h ae.h sds.h dict.h adlist.h \ | |
117 | zmalloc.h anet.h zipmap.h ziplist.h intset.h version.h util.h lzf.h | |
118 | redis-benchmark.o: redis-benchmark.c fmacros.h ae.h \ | |
119 | ../deps/hiredis/hiredis.h sds.h adlist.h zmalloc.h | |
120 | redis-check-aof.o: redis-check-aof.c fmacros.h config.h | |
121 | redis-check-dump.o: redis-check-dump.c lzf.h | |
122 | redis-cli.o: redis-cli.c fmacros.h version.h ../deps/hiredis/hiredis.h \ | |
123 | sds.h zmalloc.h ../deps/linenoise/linenoise.h help.h | |
124 | redis.o: redis.c redis.h fmacros.h config.h ae.h sds.h dict.h adlist.h \ | |
125 | zmalloc.h anet.h zipmap.h ziplist.h intset.h version.h util.h slowlog.h \ | |
126 | bio.h asciilogo.h | |
127 | release.o: release.c release.h | |
128 | replication.o: replication.c redis.h fmacros.h config.h ae.h sds.h dict.h \ | |
129 | adlist.h zmalloc.h anet.h zipmap.h ziplist.h intset.h version.h util.h | |
130 | scripting.o: scripting.c redis.h fmacros.h config.h ae.h sds.h dict.h \ | |
131 | adlist.h zmalloc.h anet.h zipmap.h ziplist.h intset.h version.h util.h \ | |
132 | sha1.h | |
133 | sds.o: sds.c sds.h zmalloc.h | |
134 | sha1.o: sha1.c sha1.h config.h | |
135 | slowlog.o: slowlog.c redis.h fmacros.h config.h ae.h sds.h dict.h \ | |
136 | adlist.h zmalloc.h anet.h zipmap.h ziplist.h intset.h version.h util.h \ | |
137 | slowlog.h | |
138 | sort.o: sort.c redis.h fmacros.h config.h ae.h sds.h dict.h adlist.h \ | |
139 | zmalloc.h anet.h zipmap.h ziplist.h intset.h version.h util.h pqsort.h | |
140 | syncio.o: syncio.c redis.h fmacros.h config.h ae.h sds.h dict.h adlist.h \ | |
141 | zmalloc.h anet.h zipmap.h ziplist.h intset.h version.h util.h | |
142 | t_hash.o: t_hash.c redis.h fmacros.h config.h ae.h sds.h dict.h adlist.h \ | |
143 | zmalloc.h anet.h zipmap.h ziplist.h intset.h version.h util.h | |
144 | t_list.o: t_list.c redis.h fmacros.h config.h ae.h sds.h dict.h adlist.h \ | |
145 | zmalloc.h anet.h zipmap.h ziplist.h intset.h version.h util.h | |
146 | t_set.o: t_set.c redis.h fmacros.h config.h ae.h sds.h dict.h adlist.h \ | |
147 | zmalloc.h anet.h zipmap.h ziplist.h intset.h version.h util.h | |
148 | t_string.o: t_string.c redis.h fmacros.h config.h ae.h sds.h dict.h \ | |
149 | adlist.h zmalloc.h anet.h zipmap.h ziplist.h intset.h version.h util.h | |
150 | t_zset.o: t_zset.c redis.h fmacros.h config.h ae.h sds.h dict.h adlist.h \ | |
151 | zmalloc.h anet.h zipmap.h ziplist.h intset.h version.h util.h | |
152 | util.o: util.c fmacros.h util.h | |
153 | ziplist.o: ziplist.c zmalloc.h util.h ziplist.h endian.h | |
154 | zipmap.o: zipmap.c zmalloc.h endian.h | |
155 | zmalloc.o: zmalloc.c config.h zmalloc.h | |
156 | ||
157 | .PHONY: dependencies | |
158 | ||
159 | dependencies: | |
160 | @printf '%b %b\n' $(MAKECOLOR)MAKE$(ENDCOLOR) $(BINCOLOR)hiredis$(ENDCOLOR) | |
161 | @cd ../deps/hiredis && $(MAKE) static ARCH="$(ARCH)" | |
162 | @printf '%b %b\n' $(MAKECOLOR)MAKE$(ENDCOLOR) $(BINCOLOR)linenoise$(ENDCOLOR) | |
163 | @cd ../deps/linenoise && $(MAKE) ARCH="$(ARCH)" | |
164 | @echo $(MAKECOLOR)MAKE$(ENDCOLOR) $(BINCOLOR)Lua ansi$(ENDCOLOR) | |
165 | @cd ../deps/lua && $(MAKE) ARCH="$(ARCH)" ansi | |
166 | ||
167 | ../deps/jemalloc/lib/libjemalloc.a: | |
168 | cd ../deps/jemalloc && ./configure $(JEMALLOC_CFLAGS) --with-jemalloc-prefix=je_ --enable-cc-silence && $(MAKE) lib/libjemalloc.a | |
169 | ||
170 | redis-server: dependencies $(OBJ) | |
171 | $(QUIET_LINK)$(CC) -o $(PRGNAME) $(CCOPT) $(DEBUG) $(OBJ) $(CCLINK) $(ALLOC_LINK) ../deps/lua/src/liblua.a | |
172 | ||
173 | redis-benchmark: dependencies $(BENCHOBJ) | |
174 | @cd ../deps/hiredis && $(MAKE) static | |
175 | $(QUIET_LINK)$(CC) -o $(BENCHPRGNAME) $(CCOPT) $(DEBUG) $(BENCHOBJ) ../deps/hiredis/libhiredis.a $(CCLINK) $(ALLOC_LINK) | |
176 | ||
177 | redis-benchmark.o: | |
178 | $(QUIET_CC)$(CC) -c $(CFLAGS) -I../deps/hiredis $(DEBUG) $(COMPILE_TIME) $< | |
179 | ||
180 | redis-cli: dependencies $(CLIOBJ) | |
181 | $(QUIET_LINK)$(CC) -o $(CLIPRGNAME) $(CCOPT) $(DEBUG) $(CLIOBJ) ../deps/hiredis/libhiredis.a ../deps/linenoise/linenoise.o $(CCLINK) $(ALLOC_LINK) | |
182 | ||
183 | redis-cli.o: | |
184 | $(QUIET_CC)$(CC) -c $(CFLAGS) -I../deps/hiredis -I../deps/linenoise $(DEBUG) $(COMPILE_TIME) $< | |
185 | ||
186 | redis-check-dump: $(CHECKDUMPOBJ) | |
187 | $(QUIET_LINK)$(CC) -o $(CHECKDUMPPRGNAME) $(CCOPT) $(DEBUG) $(CHECKDUMPOBJ) $(CCLINK) $(ALLOC_LINK) | |
188 | ||
189 | redis-check-aof: $(CHECKAOFOBJ) | |
190 | $(QUIET_LINK)$(CC) -o $(CHECKAOFPRGNAME) $(CCOPT) $(DEBUG) $(CHECKAOFOBJ) $(CCLINK) $(ALLOC_LINK) | |
191 | ||
192 | # Because the jemalloc.h header is generated as a part of the jemalloc build | |
193 | # process, building it should complete before building any other object. | |
194 | %.o: %.c $(ALLOC_DEP) | |
195 | $(QUIET_CC)$(CC) -c $(CFLAGS) $(DEBUG) $(COMPILE_TIME) -I../deps/lua/src $< | |
196 | ||
197 | clean: | |
198 | rm -rf $(PRGNAME) $(BENCHPRGNAME) $(CLIPRGNAME) $(CHECKDUMPPRGNAME) $(CHECKAOFPRGNAME) *.o *.gcda *.gcno *.gcov | |
199 | cd ../deps/hiredis && $(MAKE) $@ | |
200 | cd ../deps/linenoise && $(MAKE) $@ | |
201 | cd ../deps/lua && $(MAKE) $@ | |
202 | -(cd ../deps/jemalloc && $(MAKE) distclean) | |
203 | ||
204 | dep: | |
205 | $(CC) -MM *.c -I ../deps/hiredis -I ../deps/linenoise | |
206 | ||
207 | test: redis-server redis-check-aof | |
208 | @(cd ..; ./runtest) | |
209 | ||
210 | bench: | |
211 | ./redis-benchmark | |
212 | ||
213 | log: | |
214 | git log '--pretty=format:%ad %s (%cn)' --date=short > ../Changelog | |
215 | ||
216 | 32bit: | |
217 | @echo "" | |
218 | @echo "WARNING: if it fails under Linux you probably need to install libc6-dev-i386" | |
219 | @echo "" | |
220 | $(MAKE) ARCH="-m32" JEMALLOC_CFLAGS='CFLAGS="-std=gnu99 -Wall -pipe -g3 -fvisibility=hidden -O3 -funroll-loops -m32"' | |
221 | ||
222 | gprof: | |
223 | $(MAKE) PROF="-pg" | |
224 | ||
225 | gcov: | |
226 | $(MAKE) PROF="-fprofile-arcs -ftest-coverage" | |
227 | ||
228 | noopt: | |
229 | $(MAKE) OPTIMIZATION="" | |
230 | ||
231 | 32bitgprof: | |
232 | $(MAKE) PROF="-pg" ARCH="-arch i386" | |
233 | ||
234 | src/help.h: | |
235 | @../utils/generate-command-help.rb > help.h | |
236 | ||
237 | install: all | |
238 | mkdir -p $(INSTALL_BIN) | |
239 | $(INSTALL) $(PRGNAME) $(INSTALL_BIN) | |
240 | $(INSTALL) $(BENCHPRGNAME) $(INSTALL_BIN) | |
241 | $(INSTALL) $(CLIPRGNAME) $(INSTALL_BIN) | |
242 | $(INSTALL) $(CHECKDUMPPRGNAME) $(INSTALL_BIN) | |
243 | $(INSTALL) $(CHECKAOFPRGNAME) $(INSTALL_BIN) |