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