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