]> git.saurik.com Git - redis.git/blame_incremental - src/Makefile
Background I/O library enhanced so that the main thread can query for the number...
[redis.git] / src / Makefile
... / ...
CommitLineData
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
5release_hdr := $(shell sh -c './mkreleasehdr.sh')
6uname_S := $(shell sh -c 'uname -s 2>/dev/null || echo not')
7OPTIMIZATION?=-O2
8
9ifeq ($(uname_S),Linux)
10 ifneq ($(FORCE_LIBC_MALLOC),yes)
11 USE_JEMALLOC=yes
12 endif
13endif
14
15ifeq ($(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
19else
20 CFLAGS?=-std=c99 -pedantic $(OPTIMIZATION) -Wall -W $(ARCH) $(PROF)
21 CCLINK?=-lm -pthread
22 DEBUG?=-g -rdynamic -ggdb
23endif
24
25ifeq ($(USE_TCMALLOC),yes)
26 ALLOD_DEPS=
27 ALLOC_LINK=-ltcmalloc
28 ALLOC_FLAGS=-DUSE_TCMALLOC
29endif
30
31ifeq ($(USE_TCMALLOC_MINIMAL),yes)
32 ALLOD_DEPS=
33 ALLOC_LINK=-ltcmalloc_minimal
34 ALLOC_FLAGS=-DUSE_TCMALLOC
35endif
36
37ifeq ($(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
41endif
42
43CCLINK+= $(ALLOC_LINK)
44CFLAGS+= $(ALLOC_FLAGS)
45
46CCOPT= $(CFLAGS) $(ARCH) $(PROF)
47
48PREFIX= /usr/local
49INSTALL_BIN= $(PREFIX)/bin
50INSTALL= cp -p
51
52CCCOLOR="\033[34m"
53LINKCOLOR="\033[34;1m"
54SRCCOLOR="\033[33m"
55BINCOLOR="\033[37;1m"
56MAKECOLOR="\033[32;1m"
57ENDCOLOR="\033[0m"
58
59ifndef V
60QUIET_CC = @printf ' %b %b\n' $(CCCOLOR)CC$(ENDCOLOR) $(SRCCOLOR)$@$(ENDCOLOR);
61QUIET_LINK = @printf ' %b %b\n' $(LINKCOLOR)LINK$(ENDCOLOR) $(BINCOLOR)$@$(ENDCOLOR);
62endif
63
64OBJ = 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
65BENCHOBJ = ae.o anet.o redis-benchmark.o sds.o adlist.o zmalloc.o
66CLIOBJ = anet.o sds.o adlist.o redis-cli.o zmalloc.o release.o
67CHECKDUMPOBJ = redis-check-dump.o lzf_c.o lzf_d.o
68CHECKAOFOBJ = redis-check-aof.o
69
70PRGNAME = redis-server
71BENCHPRGNAME = redis-benchmark
72CLIPRGNAME = redis-cli
73CHECKDUMPPRGNAME = redis-check-dump
74CHECKAOFPRGNAME = redis-check-aof
75
76all: 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)
82adlist.o: adlist.c adlist.h zmalloc.h
83ae.o: ae.c ae.h zmalloc.h config.h ae_kqueue.c
84ae_epoll.o: ae_epoll.c
85ae_kqueue.o: ae_kqueue.c
86ae_select.o: ae_select.c
87anet.o: anet.c fmacros.h anet.h
88aof.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
90bio.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
92cluster.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
94config.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
96crc16.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
98db.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
100debug.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
102dict.o: dict.c fmacros.h dict.h zmalloc.h
103endian.o: endian.c
104intset.o: intset.c intset.h zmalloc.h endian.h
105lzf_c.o: lzf_c.c lzfP.h
106lzf_d.o: lzf_d.c lzfP.h
107multi.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
109networking.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
111object.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
113pqsort.o: pqsort.c
114pubsub.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
116rdb.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
118redis-benchmark.o: redis-benchmark.c fmacros.h ae.h \
119 ../deps/hiredis/hiredis.h sds.h adlist.h zmalloc.h
120redis-check-aof.o: redis-check-aof.c fmacros.h config.h
121redis-check-dump.o: redis-check-dump.c lzf.h
122redis-cli.o: redis-cli.c fmacros.h version.h ../deps/hiredis/hiredis.h \
123 sds.h zmalloc.h ../deps/linenoise/linenoise.h help.h
124redis.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
127release.o: release.c release.h
128replication.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
130scripting.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
133sds.o: sds.c sds.h zmalloc.h
134sha1.o: sha1.c sha1.h config.h
135slowlog.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
138sort.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
140syncio.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
142t_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
144t_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
146t_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
148t_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
150t_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
152util.o: util.c fmacros.h util.h
153ziplist.o: ziplist.c zmalloc.h util.h ziplist.h endian.h
154zipmap.o: zipmap.c zmalloc.h endian.h
155zmalloc.o: zmalloc.c config.h zmalloc.h
156
157.PHONY: dependencies
158
159dependencies:
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
170redis-server: dependencies $(OBJ)
171 $(QUIET_LINK)$(CC) -o $(PRGNAME) $(CCOPT) $(DEBUG) $(OBJ) $(CCLINK) $(ALLOC_LINK) ../deps/lua/src/liblua.a
172
173redis-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
177redis-benchmark.o:
178 $(QUIET_CC)$(CC) -c $(CFLAGS) -I../deps/hiredis $(DEBUG) $(COMPILE_TIME) $<
179
180redis-cli: dependencies $(CLIOBJ)
181 $(QUIET_LINK)$(CC) -o $(CLIPRGNAME) $(CCOPT) $(DEBUG) $(CLIOBJ) ../deps/hiredis/libhiredis.a ../deps/linenoise/linenoise.o $(CCLINK) $(ALLOC_LINK)
182
183redis-cli.o:
184 $(QUIET_CC)$(CC) -c $(CFLAGS) -I../deps/hiredis -I../deps/linenoise $(DEBUG) $(COMPILE_TIME) $<
185
186redis-check-dump: $(CHECKDUMPOBJ)
187 $(QUIET_LINK)$(CC) -o $(CHECKDUMPPRGNAME) $(CCOPT) $(DEBUG) $(CHECKDUMPOBJ) $(CCLINK) $(ALLOC_LINK)
188
189redis-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
197clean:
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
204dep:
205 $(CC) -MM *.c -I ../deps/hiredis -I ../deps/linenoise
206
207test: redis-server redis-check-aof
208 @(cd ..; ./runtest)
209
210bench:
211 ./redis-benchmark
212
213log:
214 git log '--pretty=format:%ad %s (%cn)' --date=short > ../Changelog
215
21632bit:
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
222gprof:
223 $(MAKE) PROF="-pg"
224
225gcov:
226 $(MAKE) PROF="-fprofile-arcs -ftest-coverage"
227
228noopt:
229 $(MAKE) OPTIMIZATION=""
230
23132bitgprof:
232 $(MAKE) PROF="-pg" ARCH="-arch i386"
233
234src/help.h:
235 @../utils/generate-command-help.rb > help.h
236
237install: 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)