]> git.saurik.com Git - redis.git/blame_incremental - src/Makefile
Merge remote branch 'origin/unstable' into unstable
[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
8ifeq ($(uname_S),SunOS)
9 CFLAGS?= -std=c99 -pedantic $(OPTIMIZATION) -Wall -W -D__EXTENSIONS__ -D_XPG6
10 CCLINK?= -ldl -lnsl -lsocket -lm -lpthread
11 DEBUG?= -g -ggdb
12else
13 CFLAGS?= -std=c99 -pedantic $(OPTIMIZATION) -Wall -W $(ARCH) $(PROF)
14 CCLINK?= -lm -pthread
15 DEBUG?= -g -rdynamic -ggdb
16endif
17
18ifeq ($(USE_TCMALLOC),yes)
19 ALLOC_LINK=-ltcmalloc
20 ALLOC_FLAGS=-DUSE_TCMALLOC
21endif
22
23ifeq ($(USE_TCMALLOC_MINIMAL),yes)
24 ALLOC_LINK=-ltcmalloc_minimal
25 ALLOC_FLAGS=-DUSE_TCMALLOC
26endif
27
28ifeq ($(USE_JEMALLOC),yes)
29 ALLOC_LINK=-ljemalloc
30 ALLOC_FLAGS=-DUSE_JEMALLOC
31endif
32
33CCLINK+= $(ALLOC_LINK)
34CFLAGS+= $(ALLOC_FLAGS)
35
36CCOPT= $(CFLAGS) $(CCLINK) $(ARCH) $(PROF)
37
38PREFIX= /usr/local
39INSTALL_BIN= $(PREFIX)/bin
40INSTALL= cp -p
41
42
43CCCOLOR="\033[34m"
44LINKCOLOR="\033[34;1m"
45SRCCOLOR="\033[33m"
46BINCOLOR="\033[37;1m"
47MAKECOLOR="\033[32;1m"
48ENDCOLOR="\033[0m"
49
50OBJ = 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 dscache.o pubsub.o multi.o debug.o sort.o intset.o syncio.o diskstore.o cluster.o crc16.o endian.o
51BENCHOBJ = ae.o anet.o redis-benchmark.o sds.o adlist.o zmalloc.o
52CLIOBJ = anet.o sds.o adlist.o redis-cli.o zmalloc.o release.o
53CHECKDUMPOBJ = redis-check-dump.o lzf_c.o lzf_d.o
54CHECKAOFOBJ = redis-check-aof.o
55
56PRGNAME = redis-server
57BENCHPRGNAME = redis-benchmark
58CLIPRGNAME = redis-cli
59CHECKDUMPPRGNAME = redis-check-dump
60CHECKAOFPRGNAME = redis-check-aof
61
62all: redis-benchmark redis-cli redis-check-dump redis-check-aof redis-server
63 @echo ""
64 @echo "Hint: To run 'make test' is a good idea ;)"
65 @echo ""
66
67# Deps (use make dep to generate this)
68adlist.o: adlist.c adlist.h zmalloc.h
69ae.o: ae.c ae.h zmalloc.h config.h ae_kqueue.c
70ae_epoll.o: ae_epoll.c
71ae_kqueue.o: ae_kqueue.c
72ae_select.o: ae_select.c
73anet.o: anet.c fmacros.h anet.h
74aof.o: aof.c redis.h fmacros.h config.h ae.h sds.h dict.h adlist.h \
75 zmalloc.h anet.h zipmap.h ziplist.h intset.h version.h
76config.o: config.c redis.h fmacros.h config.h ae.h sds.h dict.h adlist.h \
77 zmalloc.h anet.h zipmap.h ziplist.h intset.h version.h
78db.o: db.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
80debug.o: debug.c redis.h fmacros.h config.h ae.h sds.h dict.h adlist.h \
81 zmalloc.h anet.h zipmap.h ziplist.h intset.h version.h sha1.h
82dict.o: dict.c fmacros.h dict.h zmalloc.h
83diskstore.o: diskstore.c redis.h fmacros.h config.h ae.h sds.h dict.h \
84 adlist.h zmalloc.h anet.h zipmap.h ziplist.h intset.h version.h
85dscache.o: dscache.c redis.h fmacros.h config.h ae.h sds.h dict.h \
86 adlist.h zmalloc.h anet.h zipmap.h ziplist.h intset.h version.h
87intset.o: intset.c intset.h zmalloc.h
88lzf_c.o: lzf_c.c lzfP.h
89lzf_d.o: lzf_d.c lzfP.h
90multi.o: multi.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
92networking.o: networking.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
94object.o: object.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
96pqsort.o: pqsort.c
97pubsub.o: pubsub.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
99rdb.o: rdb.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 lzf.h
101redis-benchmark.o: redis-benchmark.c fmacros.h ae.h \
102 ../deps/hiredis/hiredis.h sds.h adlist.h zmalloc.h
103redis-check-aof.o: redis-check-aof.c fmacros.h config.h
104redis-check-dump.o: redis-check-dump.c lzf.h
105redis-cli.o: redis-cli.c fmacros.h version.h ../deps/hiredis/hiredis.h \
106 sds.h zmalloc.h ../deps/linenoise/linenoise.h help.h
107redis.o: redis.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 asciilogo.h
109release.o: release.c release.h
110replication.o: replication.c redis.h fmacros.h config.h ae.h sds.h dict.h \
111 adlist.h zmalloc.h anet.h zipmap.h ziplist.h intset.h version.h
112sds.o: sds.c sds.h zmalloc.h
113sha1.o: sha1.c sha1.h
114sort.o: sort.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 pqsort.h
116syncio.o: syncio.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
118t_hash.o: t_hash.c redis.h fmacros.h config.h ae.h sds.h dict.h adlist.h \
119 zmalloc.h anet.h zipmap.h ziplist.h intset.h version.h
120t_list.o: t_list.c redis.h fmacros.h config.h ae.h sds.h dict.h adlist.h \
121 zmalloc.h anet.h zipmap.h ziplist.h intset.h version.h
122t_set.o: t_set.c redis.h fmacros.h config.h ae.h sds.h dict.h adlist.h \
123 zmalloc.h anet.h zipmap.h ziplist.h intset.h version.h
124t_string.o: t_string.c redis.h fmacros.h config.h ae.h sds.h dict.h \
125 adlist.h zmalloc.h anet.h zipmap.h ziplist.h intset.h version.h
126t_zset.o: t_zset.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
128util.o: util.c util.h
129cluster.o: redis.h fmacros.h config.h ae.h sds.h dict.h adlist.h \
130 zmalloc.h anet.h zipmap.h ziplist.h intset.h version.h
131ziplist.o: ziplist.c zmalloc.h ziplist.h
132zipmap.o: zipmap.c zmalloc.h
133zmalloc.o: zmalloc.c config.h
134
135dependencies:
136 @echo $(MAKECOLOR)MAKE$(ENDCOLOR) $(BINCOLOR)hiredis$(ENDCOLOR)
137 @cd ../deps/hiredis && $(MAKE) static ARCH="$(ARCH)"
138 @echo $(MAKECOLOR)MAKE$(ENDCOLOR) $(BINCOLOR)linenoise$(ENDCOLOR)
139 @cd ../deps/linenoise && $(MAKE) ARCH="$(ARCH)"
140
141redis-server: $(OBJ)
142 @$(CC) -o $(PRGNAME) $(CCOPT) $(DEBUG) $(OBJ)
143 @echo $(LINKCOLOR)LINK$(ENDCOLOR) $(BINCOLOR)$(@)$(ENDCOLOR)
144
145redis-benchmark: dependencies $(BENCHOBJ)
146 @cd ../deps/hiredis && $(MAKE) static
147 @$(CC) -o $(BENCHPRGNAME) $(CCOPT) $(DEBUG) $(BENCHOBJ) ../deps/hiredis/libhiredis.a
148 @echo $(LINKCOLOR)LINK$(ENDCOLOR) $(BINCOLOR)$(@)$(ENDCOLOR)
149
150redis-benchmark.o:
151 @$(CC) -c $(CFLAGS) -I../deps/hiredis $(DEBUG) $(COMPILE_TIME) $<
152 @echo $(CCCOLOR)CC$(ENDCOLOR) $(SRCCOLOR)$(<)$(ENDCOLOR)
153
154redis-cli: dependencies $(CLIOBJ)
155 @$(CC) -o $(CLIPRGNAME) $(CCOPT) $(DEBUG) $(CLIOBJ) ../deps/hiredis/libhiredis.a ../deps/linenoise/linenoise.o
156 @echo $(LINKCOLOR)LINK$(ENDCOLOR) $(BINCOLOR)$(@)$(ENDCOLOR)
157
158redis-cli.o:
159 @$(CC) -c $(CFLAGS) -I../deps/hiredis -I../deps/linenoise $(DEBUG) $(COMPILE_TIME) $<
160 @echo $(CCCOLOR)CC$(ENDCOLOR) $(SRCCOLOR)$(<)$(ENDCOLOR)
161
162redis-check-dump: $(CHECKDUMPOBJ)
163 @$(CC) -o $(CHECKDUMPPRGNAME) $(CCOPT) $(DEBUG) $(CHECKDUMPOBJ)
164 @echo $(LINKCOLOR)LINK$(ENDCOLOR) $(BINCOLOR)$(@)$(ENDCOLOR)
165
166redis-check-aof: $(CHECKAOFOBJ)
167 @$(CC) -o $(CHECKAOFPRGNAME) $(CCOPT) $(DEBUG) $(CHECKAOFOBJ)
168 @echo $(LINKCOLOR)LINK$(ENDCOLOR) $(BINCOLOR)$(@)$(ENDCOLOR)
169
170.c.o:
171 @$(CC) -c $(CFLAGS) $(DEBUG) $(COMPILE_TIME) $<
172 @echo $(CCCOLOR)CC$(ENDCOLOR) $(SRCCOLOR)$(<)$(ENDCOLOR)
173
174clean:
175 rm -rf $(PRGNAME) $(BENCHPRGNAME) $(CLIPRGNAME) $(CHECKDUMPPRGNAME) $(CHECKAOFPRGNAME) *.o *.gcda *.gcno *.gcov
176
177dep:
178 $(CC) -MM *.c -I ../deps/hiredis -I ../deps/linenoise
179
180test: redis-server
181 (cd ..; tclsh8.5 tests/test_helper.tcl --tags "${TAGS}" --file "${FILE}")
182
183bench:
184 ./redis-benchmark
185
186log:
187 git log '--pretty=format:%ad %s (%cn)' --date=short > ../Changelog
188
18932bit:
190 @echo ""
191 @echo "WARNING: if it fails under Linux you probably need to install libc6-dev-i386"
192 @echo ""
193 $(MAKE) ARCH="-m32"
194
195gprof:
196 $(MAKE) PROF="-pg"
197
198gcov:
199 $(MAKE) PROF="-fprofile-arcs -ftest-coverage"
200
201noopt:
202 $(MAKE) OPTIMIZATION=""
203
20432bitgprof:
205 $(MAKE) PROF="-pg" ARCH="-arch i386"
206
207install: all
208 mkdir -p $(INSTALL_BIN)
209 $(INSTALL) $(PRGNAME) $(INSTALL_BIN)
210 $(INSTALL) $(BENCHPRGNAME) $(INSTALL_BIN)
211 $(INSTALL) $(CLIPRGNAME) $(INSTALL_BIN)
212 $(INSTALL) $(CHECKDUMPPRGNAME) $(INSTALL_BIN)
213 $(INSTALL) $(CHECKAOFPRGNAME) $(INSTALL_BIN)