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