]> git.saurik.com Git - redis.git/blame_incremental - src/Makefile
Compare integers in ziplist regardless of encoding
[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#
5# The Makefile composes the final FINAL_CFLAGS and FINAL_LDFLAGS using
6# what is needed for Redis plus the standard CFLAGS and LDFLAGS passed.
7# However when building the dependencies (Jemalloc, Lua, Hiredis, ...)
8# CFLAGS and LDFLAGS are propagated to the dependencies, so to pass
9# flags only to be used when compiling / linking Redis itself REDIS_CFLAGS
10# and REDIS_LDFLAGS are used instead (this is the case of 'make gcov').
11#
12# Dependencies are stored in the Makefile.dep file. To rebuild this file
13# Just use 'make dep', but this is only needed by developers.
14
15release_hdr := $(shell sh -c './mkreleasehdr.sh')
16uname_S := $(shell sh -c 'uname -s 2>/dev/null || echo not')
17OPTIMIZATION?=-O2
18DEPENDENCY_TARGETS=hiredis linenoise lua
19
20# Default settings
21STD= -std=c99 -pedantic
22WARN= -Wall
23OPT= $(OPTIMIZATION)
24
25# Default allocator
26ifeq ($(uname_S),Linux)
27 MALLOC=jemalloc
28else
29 MALLOC=libc
30endif
31
32# Backwards compatibility for selecting an allocator
33ifeq ($(USE_TCMALLOC),yes)
34 MALLOC=tcmalloc
35endif
36
37ifeq ($(USE_TCMALLOC_MINIMAL),yes)
38 MALLOC=tcmalloc_minimal
39endif
40
41ifeq ($(USE_JEMALLOC),yes)
42 MALLOC=jemalloc
43endif
44
45# Override default settings if possible
46-include .make-settings
47
48ifeq ($(uname_S),SunOS)
49 FINAL_CFLAGS= $(STD) $(WARN) $(OPT) $(DEBUG) $(CFLAGS) $(REDIS_CFLAGS) -D__EXTENSIONS__ -D_XPG6
50 FINAL_LDFLAGS= $(LDFLAGS) $(REDIS_LDFLAGS) -g -ggdb
51 FINAL_LIBS= -ldl -lnsl -lsocket -lm -lpthread
52 DEBUG= -g -ggdb
53else
54 FINAL_CFLAGS= $(STD) $(WARN) $(OPT) $(DEBUG) $(CFLAGS) $(REDIS_CFLAGS)
55 FINAL_LDFLAGS= $(LDFLAGS) $(REDIS_LDFLAGS) -g -rdynamic -ggdb
56 FINAL_LIBS= -lm -pthread
57 DEBUG= -g -rdynamic -ggdb
58endif
59
60# Include paths to dependencies
61FINAL_CFLAGS+= -I../deps/hiredis -I../deps/linenoise -I../deps/lua/src
62
63ifeq ($(MALLOC),tcmalloc)
64 FINAL_CFLAGS+= -DUSE_TCMALLOC
65 FINAL_LIBS+= -ltcmalloc
66endif
67
68ifeq ($(MALLOC),tcmalloc_minimal)
69 FINAL_CFLAGS+= -DUSE_TCMALLOC
70 FINAL_LIBS+= -ltcmalloc_minimal
71endif
72
73ifeq ($(MALLOC),jemalloc)
74 DEPENDENCY_TARGETS+= jemalloc
75 FINAL_CFLAGS+= -DUSE_JEMALLOC -I../deps/jemalloc/include
76 FINAL_LIBS+= ../deps/jemalloc/lib/libjemalloc.a -ldl
77endif
78
79REDIS_CC=$(QUIET_CC)$(CC) $(FINAL_CFLAGS)
80REDIS_LD=$(QUIET_LINK)$(CC) $(FINAL_LDFLAGS)
81
82PREFIX= /usr/local
83INSTALL_BIN= $(PREFIX)/bin
84INSTALL= cp -pf
85
86CCCOLOR="\033[34m"
87LINKCOLOR="\033[34;1m"
88SRCCOLOR="\033[33m"
89BINCOLOR="\033[37;1m"
90MAKECOLOR="\033[32;1m"
91ENDCOLOR="\033[0m"
92
93ifndef V
94QUIET_CC = @printf ' %b %b\n' $(CCCOLOR)CC$(ENDCOLOR) $(SRCCOLOR)$@$(ENDCOLOR) 1>&2;
95QUIET_LINK = @printf ' %b %b\n' $(LINKCOLOR)LINK$(ENDCOLOR) $(BINCOLOR)$@$(ENDCOLOR) 1>&2;
96endif
97
98REDIS_SERVER_NAME= redis-server
99REDIS_SERVER_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 pubsub.o multi.o debug.o sort.o intset.o syncio.o cluster.o crc16.o endianconv.o slowlog.o scripting.o bio.o rio.o rand.o memtest.o crc64.o
100REDIS_CLI_NAME= redis-cli
101REDIS_CLI_OBJ= anet.o sds.o adlist.o redis-cli.o zmalloc.o release.o
102REDIS_BENCHMARK_NAME= redis-benchmark
103REDIS_BENCHMARK_OBJ= ae.o anet.o redis-benchmark.o sds.o adlist.o zmalloc.o redis-benchmark.o
104REDIS_CHECK_DUMP_NAME= redis-check-dump
105REDIS_CHECK_DUMP_OBJ= redis-check-dump.o lzf_c.o lzf_d.o crc64.o
106REDIS_CHECK_AOF_NAME= redis-check-aof
107REDIS_CHECK_AOF_OBJ= redis-check-aof.o
108
109all: $(REDIS_SERVER_NAME) $(REDIS_CLI_NAME) $(REDIS_BENCHMARK_NAME) $(REDIS_CHECK_DUMP_NAME) $(REDIS_CHECK_AOF_NAME)
110 @echo ""
111 @echo "Hint: To run 'make test' is a good idea ;)"
112 @echo ""
113
114.PHONY: all
115
116# Deps (use make dep to generate this)
117include Makefile.dep
118
119dep:
120 $(REDIS_CC) -MM *.c > Makefile.dep
121
122.PHONY: dep
123
124persist-settings: distclean
125 echo STD=$(STD) >> .make-settings
126 echo WARN=$(WARN) >> .make-settings
127 echo OPT=$(OPT) >> .make-settings
128 echo MALLOC=$(MALLOC) >> .make-settings
129 echo CFLAGS=$(CFLAGS) >> .make-settings
130 echo LDFLAGS=$(LDFLAGS) >> .make-settings
131 echo REDIS_CFLAGS=$(REDIS_CFLAGS) >> .make-settings
132 echo REDIS_LDFLAGS=$(REDIS_LDFLAGS) >> .make-settings
133 echo PREV_FINAL_CFLAGS=$(FINAL_CFLAGS) >> .make-settings
134 echo PREV_FINAL_LDFLAGS=$(FINAL_LDFLAGS) >> .make-settings
135 -(cd ../deps && $(MAKE) $(DEPENDENCY_TARGETS))
136
137.PHONY: persist-settings
138
139# Prerequisites target
140.make-prerequisites:
141 @touch $@
142
143# Clean everything, persist settings and build dependencies if anything changed
144ifneq ($(strip $(PREV_FINAL_CFLAGS)), $(strip $(FINAL_CFLAGS)))
145.make-prerequisites: persist-settings
146endif
147
148ifneq ($(strip $(PREV_FINAL_LDFLAGS)), $(strip $(FINAL_LDFLAGS)))
149.make-prerequisites: persist-settings
150endif
151
152# redis-server
153$(REDIS_SERVER_NAME): $(REDIS_SERVER_OBJ)
154 $(REDIS_LD) -o $@ $^ ../deps/lua/src/liblua.a $(FINAL_LIBS)
155
156# redis-cli
157$(REDIS_CLI_NAME): $(REDIS_CLI_OBJ)
158 $(REDIS_LD) -o $@ $^ ../deps/hiredis/libhiredis.a ../deps/linenoise/linenoise.o $(FINAL_LIBS)
159
160# redis-benchmark
161$(REDIS_BENCHMARK_NAME): $(REDIS_BENCHMARK_OBJ)
162 $(REDIS_LD) -o $@ $^ ../deps/hiredis/libhiredis.a $(FINAL_LIBS)
163
164# redis-check-dump
165$(REDIS_CHECK_DUMP_NAME): $(REDIS_CHECK_DUMP_OBJ)
166 $(REDIS_LD) -o $@ $^ $(FINAL_LIBS)
167
168# redis-check-aof
169$(REDIS_CHECK_AOF_NAME): $(REDIS_CHECK_AOF_OBJ)
170 $(REDIS_LD) -o $@ $^ $(FINAL_LIBS)
171
172# Because the jemalloc.h header is generated as a part of the jemalloc build,
173# building it should complete before building any other object. Instead of
174# depending on a single artifact, build all dependencies first.
175%.o: %.c .make-prerequisites
176 $(REDIS_CC) -c $<
177
178clean:
179 rm -rf $(REDIS_SERVER_NAME) $(REDIS_CLI_NAME) $(REDIS_BENCHMARK_NAME) $(REDIS_CHECK_DUMP_NAME) $(REDIS_CHECK_AOF_NAME) *.o *.gcda *.gcno *.gcov redis.info lcov-html
180
181.PHONY: clean
182
183distclean: clean
184 -(cd ../deps && $(MAKE) distclean)
185 -(rm -f .make-*)
186
187.PHONY: distclean
188
189test: $(REDIS_SERVER_NAME) $(REDIS_CHECK_AOF_NAME)
190 @(cd ..; ./runtest)
191
192lcov:
193 $(MAKE) gcov
194 @(set -e; cd ..; ./runtest --clients 1)
195 @geninfo -o redis.info .
196 @genhtml --legend -o lcov-html redis.info
197
198.PHONY: lcov
199
200bench: $(REDIS_BENCHMARK_NAME)
201 ./$(REDIS_BENCHMARK_NAME)
202
20332bit:
204 @echo ""
205 @echo "WARNING: if it fails under Linux you probably need to install libc6-dev-i386"
206 @echo ""
207 $(MAKE) CFLAGS="-m32" LDFLAGS="-m32"
208
209gcov:
210 $(MAKE) REDIS_CFLAGS="-fprofile-arcs -ftest-coverage -DCOVERAGE_TEST" REDIS_LDFLAGS="-fprofile-arcs -ftest-coverage"
211
212noopt:
213 $(MAKE) OPT="-O0"
214
215src/help.h:
216 @../utils/generate-command-help.rb > help.h
217
218install: all
219 mkdir -p $(INSTALL_BIN)
220 $(INSTALL) $(REDIS_SERVER_NAME) $(INSTALL_BIN)
221 $(INSTALL) $(REDIS_BENCHMARK_NAME) $(INSTALL_BIN)
222 $(INSTALL) $(REDIS_CLI_NAME) $(INSTALL_BIN)
223 $(INSTALL) $(REDIS_CHECK_DUMP_NAME) $(INSTALL_BIN)
224 $(INSTALL) $(REDIS_CHECK_AOF_NAME) $(INSTALL_BIN)