]> git.saurik.com Git - redis.git/blame_incremental - src/Makefile
Lua call of Redis command work in progress: sorry I have to go to the cinema to watch...
[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
42CCCOLOR="\033[34m"
43LINKCOLOR="\033[34;1m"
44SRCCOLOR="\033[33m"
45BINCOLOR="\033[37;1m"
46MAKECOLOR="\033[32;1m"
47ENDCOLOR="\033[0m"
48
49OBJ = 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 scripting.o
50BENCHOBJ = ae.o anet.o redis-benchmark.o sds.o adlist.o zmalloc.o
51CLIOBJ = anet.o sds.o adlist.o redis-cli.o zmalloc.o release.o
52CHECKDUMPOBJ = redis-check-dump.o lzf_c.o lzf_d.o
53CHECKAOFOBJ = redis-check-aof.o
54
55PRGNAME = redis-server
56BENCHPRGNAME = redis-benchmark
57CLIPRGNAME = redis-cli
58CHECKDUMPPRGNAME = redis-check-dump
59CHECKAOFPRGNAME = redis-check-aof
60
61all: redis-benchmark redis-cli redis-check-dump redis-check-aof redis-server
62 @echo ""
63 @echo "Hint: To run 'make test' is a good idea ;)"
64 @echo ""
65
66# Deps (use make dep to generate this)
67adlist.o: adlist.c adlist.h zmalloc.h
68ae.o: ae.c ae.h zmalloc.h config.h ae_kqueue.c
69ae_epoll.o: ae_epoll.c
70ae_kqueue.o: ae_kqueue.c
71ae_select.o: ae_select.c
72anet.o: anet.c fmacros.h anet.h
73aof.o: aof.c redis.h fmacros.h config.h ae.h sds.h dict.h adlist.h \
74 zmalloc.h anet.h zipmap.h ziplist.h intset.h version.h
75config.o: config.c redis.h fmacros.h config.h ae.h sds.h dict.h adlist.h \
76 zmalloc.h anet.h zipmap.h ziplist.h intset.h version.h
77db.o: db.c redis.h fmacros.h config.h ae.h sds.h dict.h adlist.h \
78 zmalloc.h anet.h zipmap.h ziplist.h intset.h version.h
79debug.o: debug.c redis.h fmacros.h config.h ae.h sds.h dict.h adlist.h \
80 zmalloc.h anet.h zipmap.h ziplist.h intset.h version.h sha1.h
81dict.o: dict.c fmacros.h dict.h zmalloc.h
82diskstore.o: diskstore.c redis.h fmacros.h config.h ae.h sds.h dict.h \
83 adlist.h zmalloc.h anet.h zipmap.h ziplist.h intset.h version.h
84dscache.o: dscache.c redis.h fmacros.h config.h ae.h sds.h dict.h \
85 adlist.h zmalloc.h anet.h zipmap.h ziplist.h intset.h version.h
86intset.o: intset.c intset.h zmalloc.h
87lzf_c.o: lzf_c.c lzfP.h
88lzf_d.o: lzf_d.c lzfP.h
89multi.o: multi.c redis.h fmacros.h config.h ae.h sds.h dict.h adlist.h \
90 zmalloc.h anet.h zipmap.h ziplist.h intset.h version.h
91networking.o: networking.c redis.h fmacros.h config.h ae.h sds.h dict.h \
92 adlist.h zmalloc.h anet.h zipmap.h ziplist.h intset.h version.h
93object.o: object.c redis.h fmacros.h config.h ae.h sds.h dict.h adlist.h \
94 zmalloc.h anet.h zipmap.h ziplist.h intset.h version.h
95pqsort.o: pqsort.c
96pubsub.o: pubsub.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
98rdb.o: rdb.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 lzf.h
100redis-benchmark.o: redis-benchmark.c fmacros.h ae.h \
101 ../deps/hiredis/hiredis.h sds.h adlist.h zmalloc.h
102redis-check-aof.o: redis-check-aof.c fmacros.h config.h
103redis-check-dump.o: redis-check-dump.c lzf.h
104redis-cli.o: redis-cli.c fmacros.h version.h ../deps/hiredis/hiredis.h \
105 sds.h zmalloc.h ../deps/linenoise/linenoise.h help.h
106redis.o: redis.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 asciilogo.h
108release.o: release.c release.h
109replication.o: replication.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
111sds.o: sds.c sds.h zmalloc.h
112sha1.o: sha1.c sha1.h
113sort.o: sort.c redis.h fmacros.h config.h ae.h sds.h dict.h adlist.h \
114 zmalloc.h anet.h zipmap.h ziplist.h intset.h version.h pqsort.h
115syncio.o: syncio.c redis.h fmacros.h config.h ae.h sds.h dict.h adlist.h \
116 zmalloc.h anet.h zipmap.h ziplist.h intset.h version.h
117t_hash.o: t_hash.c redis.h fmacros.h config.h ae.h sds.h dict.h adlist.h \
118 zmalloc.h anet.h zipmap.h ziplist.h intset.h version.h
119t_list.o: t_list.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
121t_set.o: t_set.c redis.h fmacros.h config.h ae.h sds.h dict.h adlist.h \
122 zmalloc.h anet.h zipmap.h ziplist.h intset.h version.h
123t_string.o: t_string.c redis.h fmacros.h config.h ae.h sds.h dict.h \
124 adlist.h zmalloc.h anet.h zipmap.h ziplist.h intset.h version.h
125t_zset.o: t_zset.c redis.h fmacros.h config.h ae.h sds.h dict.h adlist.h \
126 zmalloc.h anet.h zipmap.h ziplist.h intset.h version.h
127util.o: util.c util.h
128cluster.o: 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
130ziplist.o: ziplist.c zmalloc.h ziplist.h
131zipmap.o: zipmap.c zmalloc.h
132zmalloc.o: zmalloc.c config.h
133
134dependencies:
135 @echo $(MAKECOLOR)MAKE$(ENDCOLOR) $(BINCOLOR)hiredis$(ENDCOLOR)
136 @cd ../deps/hiredis && $(MAKE) static ARCH="$(ARCH)"
137 @echo $(MAKECOLOR)MAKE$(ENDCOLOR) $(BINCOLOR)linenoise$(ENDCOLOR)
138 @cd ../deps/linenoise && $(MAKE) ARCH="$(ARCH)"
139 @echo $(MAKECOLOR)MAKE$(ENDCOLOR) $(BINCOLOR)Lua ansi$(ENDCOLOR)
140 @cd ../deps/lua && $(MAKE) ARCH="$(ARCH)" ansi
141
142redis-server: $(OBJ)
143 @$(CC) -o $(PRGNAME) $(CCOPT) $(DEBUG) $(OBJ) ../deps/lua/src/liblua.a
144 @echo $(LINKCOLOR)LINK$(ENDCOLOR) $(BINCOLOR)$(@)$(ENDCOLOR)
145
146redis-benchmark: dependencies $(BENCHOBJ)
147 @cd ../deps/hiredis && $(MAKE) static
148 @$(CC) -o $(BENCHPRGNAME) $(CCOPT) $(DEBUG) $(BENCHOBJ) ../deps/hiredis/libhiredis.a
149 @echo $(LINKCOLOR)LINK$(ENDCOLOR) $(BINCOLOR)$(@)$(ENDCOLOR)
150
151redis-benchmark.o:
152 @$(CC) -c $(CFLAGS) -I../deps/hiredis $(DEBUG) $(COMPILE_TIME) $<
153 @echo $(CCCOLOR)CC$(ENDCOLOR) $(SRCCOLOR)$(<)$(ENDCOLOR)
154
155redis-cli: dependencies $(CLIOBJ)
156 @$(CC) -o $(CLIPRGNAME) $(CCOPT) $(DEBUG) $(CLIOBJ) ../deps/hiredis/libhiredis.a ../deps/linenoise/linenoise.o
157 @echo $(LINKCOLOR)LINK$(ENDCOLOR) $(BINCOLOR)$(@)$(ENDCOLOR)
158
159redis-cli.o:
160 @$(CC) -c $(CFLAGS) -I../deps/hiredis -I../deps/linenoise $(DEBUG) $(COMPILE_TIME) $<
161 @echo $(CCCOLOR)CC$(ENDCOLOR) $(SRCCOLOR)$(<)$(ENDCOLOR)
162
163redis-check-dump: $(CHECKDUMPOBJ)
164 @$(CC) -o $(CHECKDUMPPRGNAME) $(CCOPT) $(DEBUG) $(CHECKDUMPOBJ)
165 @echo $(LINKCOLOR)LINK$(ENDCOLOR) $(BINCOLOR)$(@)$(ENDCOLOR)
166
167redis-check-aof: $(CHECKAOFOBJ)
168 @$(CC) -o $(CHECKAOFPRGNAME) $(CCOPT) $(DEBUG) $(CHECKAOFOBJ)
169 @echo $(LINKCOLOR)LINK$(ENDCOLOR) $(BINCOLOR)$(@)$(ENDCOLOR)
170
171.c.o:
172 @$(CC) -c $(CFLAGS) $(DEBUG) $(COMPILE_TIME) -I../deps/lua/src $<
173 @echo $(CCCOLOR)CC$(ENDCOLOR) $(SRCCOLOR)$(<)$(ENDCOLOR)
174
175clean:
176 rm -rf $(PRGNAME) $(BENCHPRGNAME) $(CLIPRGNAME) $(CHECKDUMPPRGNAME) $(CHECKAOFPRGNAME) *.o *.gcda *.gcno *.gcov
177
178dep:
179 $(CC) -MM *.c -I ../deps/hiredis -I ../deps/linenoise
180
181test: redis-server
182 (cd ..; tclsh8.5 tests/test_helper.tcl --tags "${TAGS}" --file "${FILE}")
183
184bench:
185 ./redis-benchmark
186
187log:
188 git log '--pretty=format:%ad %s (%cn)' --date=short > ../Changelog
189
19032bit:
191 @echo ""
192 @echo "WARNING: if it fails under Linux you probably need to install libc6-dev-i386"
193 @echo ""
194 $(MAKE) ARCH="-m32"
195
196gprof:
197 $(MAKE) PROF="-pg"
198
199gcov:
200 $(MAKE) PROF="-fprofile-arcs -ftest-coverage"
201
202noopt:
203 $(MAKE) OPTIMIZATION=""
204
20532bitgprof:
206 $(MAKE) PROF="-pg" ARCH="-arch i386"
207
208install: all
209 mkdir -p $(INSTALL_BIN)
210 $(INSTALL) $(PRGNAME) $(INSTALL_BIN)
211 $(INSTALL) $(BENCHPRGNAME) $(INSTALL_BIN)
212 $(INSTALL) $(CLIPRGNAME) $(INSTALL_BIN)
213 $(INSTALL) $(CHECKDUMPPRGNAME) $(INSTALL_BIN)
214 $(INSTALL) $(CHECKAOFPRGNAME) $(INSTALL_BIN)