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