]> git.saurik.com Git - redis.git/blob - src/Makefile
Merge remote branch 'pietern/bench-fix'
[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 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 vm.o pubsub.o multi.o debug.o sort.o intset.o syncio.o
29 BENCHOBJ = ae.o anet.o redis-benchmark.o sds.o adlist.o zmalloc.o
30 CLIOBJ = anet.o sds.o adlist.o redis-cli.o zmalloc.o release.o
31 CHECKDUMPOBJ = redis-check-dump.o lzf_c.o lzf_d.o
32 CHECKAOFOBJ = redis-check-aof.o
33
34 PRGNAME = redis-server
35 BENCHPRGNAME = redis-benchmark
36 CLIPRGNAME = redis-cli
37 CHECKDUMPPRGNAME = redis-check-dump
38 CHECKAOFPRGNAME = redis-check-aof
39
40 all: redis-benchmark redis-cli redis-check-dump redis-check-aof redis-server
41 @echo ""
42 @echo "Hint: To run 'make test' is a good idea ;)"
43 @echo ""
44
45 # Deps (use make dep to generate this)
46 adlist.o: adlist.c adlist.h zmalloc.h
47 ae.o: ae.c ae.h zmalloc.h config.h ae_kqueue.c
48 ae_epoll.o: ae_epoll.c
49 ae_kqueue.o: ae_kqueue.c
50 ae_select.o: ae_select.c
51 anet.o: anet.c fmacros.h anet.h
52 aof.o: aof.c redis.h fmacros.h config.h ae.h sds.h dict.h adlist.h \
53 zmalloc.h anet.h zipmap.h ziplist.h intset.h version.h
54 chprgname.o: chprgname.c
55 config.o: config.c redis.h fmacros.h config.h ae.h sds.h dict.h adlist.h \
56 zmalloc.h anet.h zipmap.h ziplist.h intset.h version.h
57 db.o: db.c redis.h fmacros.h config.h ae.h sds.h dict.h adlist.h \
58 zmalloc.h anet.h zipmap.h ziplist.h intset.h version.h
59 debug.o: debug.c redis.h fmacros.h config.h ae.h sds.h dict.h adlist.h \
60 zmalloc.h anet.h zipmap.h ziplist.h intset.h version.h sha1.h
61 dict.o: dict.c fmacros.h dict.h zmalloc.h
62 intset.o: intset.c intset.h zmalloc.h
63 lzf_c.o: lzf_c.c lzfP.h
64 lzf_d.o: lzf_d.c lzfP.h
65 multi.o: multi.c redis.h fmacros.h config.h ae.h sds.h dict.h adlist.h \
66 zmalloc.h anet.h zipmap.h ziplist.h intset.h version.h
67 networking.o: networking.c redis.h fmacros.h config.h ae.h sds.h dict.h \
68 adlist.h zmalloc.h anet.h zipmap.h ziplist.h intset.h version.h
69 object.o: object.c redis.h fmacros.h config.h ae.h sds.h dict.h adlist.h \
70 zmalloc.h anet.h zipmap.h ziplist.h intset.h version.h
71 pqsort.o: pqsort.c
72 pubsub.o: pubsub.c redis.h fmacros.h config.h ae.h sds.h dict.h adlist.h \
73 zmalloc.h anet.h zipmap.h ziplist.h intset.h version.h
74 rdb.o: rdb.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 lzf.h
76 redis-benchmark.o: redis-benchmark.c fmacros.h ae.h anet.h sds.h adlist.h \
77 zmalloc.h
78 redis-check-aof.o: redis-check-aof.c fmacros.h config.h
79 redis-check-dump.o: redis-check-dump.c lzf.h
80 redis-cli.o: redis-cli.c fmacros.h version.h sds.h adlist.h zmalloc.h
81 redis.o: redis.c redis.h fmacros.h config.h ae.h sds.h dict.h adlist.h \
82 zmalloc.h anet.h zipmap.h ziplist.h intset.h version.h
83 release.o: release.c release.h
84 replication.o: replication.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 sds.o: sds.c sds.h zmalloc.h
87 sha1.o: sha1.c sha1.h
88 sort.o: sort.c redis.h fmacros.h config.h ae.h sds.h dict.h adlist.h \
89 zmalloc.h anet.h zipmap.h ziplist.h intset.h version.h pqsort.h
90 syncio.o: syncio.c
91 t_hash.o: t_hash.c redis.h fmacros.h config.h ae.h sds.h dict.h adlist.h \
92 zmalloc.h anet.h zipmap.h ziplist.h intset.h version.h
93 t_list.o: t_list.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 t_set.o: t_set.c redis.h fmacros.h config.h ae.h sds.h dict.h adlist.h \
96 zmalloc.h anet.h zipmap.h ziplist.h intset.h version.h
97 t_string.o: t_string.c redis.h fmacros.h config.h ae.h sds.h dict.h \
98 adlist.h zmalloc.h anet.h zipmap.h ziplist.h intset.h version.h
99 t_zset.o: t_zset.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
101 util.o: util.c redis.h fmacros.h config.h ae.h sds.h dict.h adlist.h \
102 zmalloc.h anet.h zipmap.h ziplist.h intset.h version.h
103 vm.o: vm.c redis.h fmacros.h config.h ae.h sds.h dict.h adlist.h \
104 zmalloc.h anet.h zipmap.h ziplist.h intset.h version.h
105 ziplist.o: ziplist.c zmalloc.h ziplist.h
106 zipmap.o: zipmap.c zmalloc.h
107 zmalloc.o: zmalloc.c config.h
108
109 dependencies:
110 cd ../deps/hiredis && $(MAKE) static ARCH="$(ARCH)"
111 cd ../deps/linenoise && $(MAKE) ARCH="$(ARCH)"
112
113 redis-server: $(OBJ)
114 $(CC) -o $(PRGNAME) $(CCOPT) $(DEBUG) $(OBJ)
115
116 redis-benchmark: dependencies $(BENCHOBJ)
117 cd ../deps/hiredis && $(MAKE) static
118 $(CC) -o $(BENCHPRGNAME) $(CCOPT) $(DEBUG) $(BENCHOBJ) ../deps/hiredis/libhiredis.a
119
120 redis-benchmark.o:
121 $(CC) -c $(CFLAGS) -I../deps/hiredis $(DEBUG) $(COMPILE_TIME) $<
122
123 redis-cli: dependencies $(CLIOBJ)
124 $(CC) -o $(CLIPRGNAME) $(CCOPT) $(DEBUG) $(CLIOBJ) ../deps/hiredis/libhiredis.a ../deps/linenoise/linenoise.o
125
126 redis-cli.o:
127 $(CC) -c $(CFLAGS) -I../deps/hiredis -I../deps/linenoise $(DEBUG) $(COMPILE_TIME) $<
128
129 redis-check-dump: $(CHECKDUMPOBJ)
130 $(CC) -o $(CHECKDUMPPRGNAME) $(CCOPT) $(DEBUG) $(CHECKDUMPOBJ)
131
132 redis-check-aof: $(CHECKAOFOBJ)
133 $(CC) -o $(CHECKAOFPRGNAME) $(CCOPT) $(DEBUG) $(CHECKAOFOBJ)
134
135 .c.o:
136 $(CC) -c $(CFLAGS) $(DEBUG) $(COMPILE_TIME) $<
137
138 clean:
139 rm -rf $(PRGNAME) $(BENCHPRGNAME) $(CLIPRGNAME) $(CHECKDUMPPRGNAME) $(CHECKAOFPRGNAME) *.o *.gcda *.gcno *.gcov
140
141 dep:
142 $(CC) -MM *.c
143
144 test: redis-server
145 (cd ..; tclsh8.5 tests/test_helper.tcl --tags "${TAGS}" --file "${FILE}")
146
147 bench:
148 ./redis-benchmark
149
150 log:
151 git log '--pretty=format:%ad %s (%cn)' --date=short > ../Changelog
152
153 32bit:
154 @echo ""
155 @echo "WARNING: if it fails under Linux you probably need to install libc6-dev-i386"
156 @echo ""
157 $(MAKE) ARCH="-m32"
158
159 gprof:
160 $(MAKE) PROF="-pg"
161
162 gcov:
163 $(MAKE) PROF="-fprofile-arcs -ftest-coverage"
164
165 noopt:
166 $(MAKE) OPTIMIZATION=""
167
168 32bitgprof:
169 $(MAKE) PROF="-pg" ARCH="-arch i386"
170
171 install: all
172 mkdir -p $(INSTALL_BIN)
173 $(INSTALL) $(PRGNAME) $(INSTALL_BIN)
174 $(INSTALL) $(BENCHPRGNAME) $(INSTALL_BIN)
175 $(INSTALL) $(CLIPRGNAME) $(INSTALL_BIN)
176 $(INSTALL) $(CHECKDUMPPRGNAME) $(INSTALL_BIN)
177 $(INSTALL) $(CHECKAOFPRGNAME) $(INSTALL_BIN)