]> git.saurik.com Git - redis.git/blob - src/Makefile
Lua scripting: Honor SELECT command in both ways
[redis.git] / src / Makefile
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
5 release_hdr := $(shell sh -c './mkreleasehdr.sh')
6 uname_S := $(shell sh -c 'uname -s 2>/dev/null || echo not')
7 OPTIMIZATION?=-O2
8 ifeq ($(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
12 else
13 CFLAGS?= -std=c99 -pedantic $(OPTIMIZATION) -Wall -W $(ARCH) $(PROF)
14 CCLINK?= -lm -pthread
15 DEBUG?= -g -rdynamic -ggdb
16 endif
17
18 ifeq ($(USE_TCMALLOC),yes)
19 ALLOC_LINK=-ltcmalloc
20 ALLOC_FLAGS=-DUSE_TCMALLOC
21 endif
22
23 ifeq ($(USE_TCMALLOC_MINIMAL),yes)
24 ALLOC_LINK=-ltcmalloc_minimal
25 ALLOC_FLAGS=-DUSE_TCMALLOC
26 endif
27
28 ifeq ($(USE_JEMALLOC),yes)
29 ALLOC_LINK=-ljemalloc
30 ALLOC_FLAGS=-DUSE_JEMALLOC
31 endif
32
33 CCLINK+= $(ALLOC_LINK)
34 CFLAGS+= $(ALLOC_FLAGS)
35
36 CCOPT= $(CFLAGS) $(CCLINK) $(ARCH) $(PROF)
37
38 PREFIX= /usr/local
39 INSTALL_BIN= $(PREFIX)/bin
40 INSTALL= cp -p
41
42 CCCOLOR="\033[34m"
43 LINKCOLOR="\033[34;1m"
44 SRCCOLOR="\033[33m"
45 BINCOLOR="\033[37;1m"
46 MAKECOLOR="\033[32;1m"
47 ENDCOLOR="\033[0m"
48
49 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 dscache.o pubsub.o multi.o debug.o sort.o intset.o syncio.o diskstore.o cluster.o crc16.o endian.o scripting.o
50 BENCHOBJ = ae.o anet.o redis-benchmark.o sds.o adlist.o zmalloc.o
51 CLIOBJ = anet.o sds.o adlist.o redis-cli.o zmalloc.o release.o
52 CHECKDUMPOBJ = redis-check-dump.o lzf_c.o lzf_d.o
53 CHECKAOFOBJ = redis-check-aof.o
54
55 PRGNAME = redis-server
56 BENCHPRGNAME = redis-benchmark
57 CLIPRGNAME = redis-cli
58 CHECKDUMPPRGNAME = redis-check-dump
59 CHECKAOFPRGNAME = redis-check-aof
60
61 all: 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)
67 adlist.o: adlist.c adlist.h zmalloc.h
68 ae.o: ae.c ae.h zmalloc.h config.h ae_kqueue.c
69 ae_epoll.o: ae_epoll.c
70 ae_kqueue.o: ae_kqueue.c
71 ae_select.o: ae_select.c
72 anet.o: anet.c fmacros.h anet.h
73 aof.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
75 config.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
77 db.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
79 debug.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
81 dict.o: dict.c fmacros.h dict.h zmalloc.h
82 diskstore.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
84 dscache.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
86 intset.o: intset.c intset.h zmalloc.h
87 lzf_c.o: lzf_c.c lzfP.h
88 lzf_d.o: lzf_d.c lzfP.h
89 multi.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
91 networking.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
93 object.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
95 pqsort.o: pqsort.c
96 pubsub.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
98 rdb.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
100 redis-benchmark.o: redis-benchmark.c fmacros.h ae.h \
101 ../deps/hiredis/hiredis.h sds.h adlist.h zmalloc.h
102 redis-check-aof.o: redis-check-aof.c fmacros.h config.h
103 redis-check-dump.o: redis-check-dump.c lzf.h
104 redis-cli.o: redis-cli.c fmacros.h version.h ../deps/hiredis/hiredis.h \
105 sds.h zmalloc.h ../deps/linenoise/linenoise.h help.h
106 redis.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
108 release.o: release.c release.h
109 replication.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
111 sds.o: sds.c sds.h zmalloc.h
112 sha1.o: sha1.c sha1.h
113 sort.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
115 syncio.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
117 t_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
119 t_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
121 t_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
123 t_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
125 t_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
127 util.o: util.c util.h
128 cluster.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
130 ziplist.o: ziplist.c zmalloc.h ziplist.h
131 zipmap.o: zipmap.c zmalloc.h
132 zmalloc.o: zmalloc.c config.h
133
134 dependencies:
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
142 redis-server: $(OBJ)
143 @$(CC) -o $(PRGNAME) $(CCOPT) $(DEBUG) $(OBJ) ../deps/lua/src/liblua.a
144 @echo $(LINKCOLOR)LINK$(ENDCOLOR) $(BINCOLOR)$(@)$(ENDCOLOR)
145
146 redis-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
151 redis-benchmark.o:
152 @$(CC) -c $(CFLAGS) -I../deps/hiredis $(DEBUG) $(COMPILE_TIME) $<
153 @echo $(CCCOLOR)CC$(ENDCOLOR) $(SRCCOLOR)$(<)$(ENDCOLOR)
154
155 redis-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
159 redis-cli.o:
160 @$(CC) -c $(CFLAGS) -I../deps/hiredis -I../deps/linenoise $(DEBUG) $(COMPILE_TIME) $<
161 @echo $(CCCOLOR)CC$(ENDCOLOR) $(SRCCOLOR)$(<)$(ENDCOLOR)
162
163 redis-check-dump: $(CHECKDUMPOBJ)
164 @$(CC) -o $(CHECKDUMPPRGNAME) $(CCOPT) $(DEBUG) $(CHECKDUMPOBJ)
165 @echo $(LINKCOLOR)LINK$(ENDCOLOR) $(BINCOLOR)$(@)$(ENDCOLOR)
166
167 redis-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
175 clean:
176 rm -rf $(PRGNAME) $(BENCHPRGNAME) $(CLIPRGNAME) $(CHECKDUMPPRGNAME) $(CHECKAOFPRGNAME) *.o *.gcda *.gcno *.gcov
177
178 dep:
179 $(CC) -MM *.c -I ../deps/hiredis -I ../deps/linenoise
180
181 test: redis-server
182 (cd ..; tclsh8.5 tests/test_helper.tcl --tags "${TAGS}" --file "${FILE}")
183
184 bench:
185 ./redis-benchmark
186
187 log:
188 git log '--pretty=format:%ad %s (%cn)' --date=short > ../Changelog
189
190 32bit:
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
196 gprof:
197 $(MAKE) PROF="-pg"
198
199 gcov:
200 $(MAKE) PROF="-fprofile-arcs -ftest-coverage"
201
202 noopt:
203 $(MAKE) OPTIMIZATION=""
204
205 32bitgprof:
206 $(MAKE) PROF="-pg" ARCH="-arch i386"
207
208 install: 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)