2 # Copyright (C) 2009 Salvatore Sanfilippo <antirez at gmail dot com>
3 # This file is released under the BSD license, see the COPYING file
5 release_hdr := $(shell sh -c './mkreleasehdr.sh')
6 uname_S := $(shell sh -c 'uname -s 2>/dev/null || echo not')
8 ifeq ($(uname_S),SunOS)
9 CFLAGS?= -std=c99 -pedantic $(OPTIMIZATION) -Wall -W -D__EXTENSIONS__ -D_XPG6
10 CCLINK?= -ldl -lnsl -lsocket -lm -lpthread
12 CFLAGS?= -std=c99 -pedantic $(OPTIMIZATION) -Wall -W $(ARCH) $(PROF)
15 CCOPT= $(CFLAGS) $(CCLINK) $(ARCH) $(PROF)
16 DEBUG?= -g -rdynamic -ggdb
18 INSTALL_TOP= /usr/local
19 INSTALL_BIN= $(INSTALL_TOP)/bin
22 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
23 BENCHOBJ = ae.o anet.o redis-benchmark.o sds.o adlist.o zmalloc.o
24 CLIOBJ = anet.o sds.o adlist.o redis-cli.o zmalloc.o linenoise.o
25 CHECKDUMPOBJ = redis-check-dump.o lzf_c.o lzf_d.o
26 CHECKAOFOBJ = redis-check-aof.o
28 PRGNAME = redis-server
29 BENCHPRGNAME = redis-benchmark
30 CLIPRGNAME = redis-cli
31 CHECKDUMPPRGNAME = redis-check-dump
32 CHECKAOFPRGNAME = redis-check-aof
34 all: redis-server redis-benchmark redis-cli redis-check-dump redis-check-aof
37 # Deps (use make dep to generate this)
38 adlist.o: adlist.c adlist.h zmalloc.h
39 ae.o: ae.c ae.h zmalloc.h config.h ae_kqueue.c
40 ae_epoll.o: ae_epoll.c
41 ae_kqueue.o: ae_kqueue.c
42 ae_select.o: ae_select.c
43 anet.o: anet.c fmacros.h anet.h
44 aof.o: aof.c redis.h fmacros.h config.h ae.h sds.h dict.h adlist.h \
45 zmalloc.h anet.h zipmap.h ziplist.h intset.h version.h
46 config.o: config.c redis.h fmacros.h config.h ae.h sds.h dict.h adlist.h \
47 zmalloc.h anet.h zipmap.h ziplist.h intset.h version.h
48 db.o: db.c redis.h fmacros.h config.h ae.h sds.h dict.h adlist.h \
49 zmalloc.h anet.h zipmap.h ziplist.h intset.h version.h
50 debug.o: debug.c redis.h fmacros.h config.h ae.h sds.h dict.h adlist.h \
51 zmalloc.h anet.h zipmap.h ziplist.h intset.h version.h sha1.h
52 dict.o: dict.c fmacros.h dict.h zmalloc.h
53 intset.o: intset.c intset.h zmalloc.h
54 linenoise.o: linenoise.c fmacros.h
55 lzf_c.o: lzf_c.c lzfP.h
56 lzf_d.o: lzf_d.c lzfP.h
57 multi.o: multi.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 networking.o: networking.c redis.h fmacros.h config.h ae.h sds.h dict.h \
60 adlist.h zmalloc.h anet.h zipmap.h ziplist.h intset.h version.h
61 object.o: object.c redis.h fmacros.h config.h ae.h sds.h dict.h adlist.h \
62 zmalloc.h anet.h zipmap.h ziplist.h intset.h version.h
64 pubsub.o: pubsub.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 rdb.o: rdb.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 lzf.h
68 redis-benchmark.o: redis-benchmark.c fmacros.h ae.h anet.h sds.h adlist.h \
70 redis-check-aof.o: redis-check-aof.c fmacros.h config.h
71 redis-check-dump.o: redis-check-dump.c lzf.h
72 redis-cli.o: redis-cli.c fmacros.h version.h anet.h sds.h adlist.h \
74 redis.o: redis.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
76 release.o: release.c release.h
77 replication.o: replication.c redis.h fmacros.h config.h ae.h sds.h dict.h \
78 adlist.h zmalloc.h anet.h zipmap.h ziplist.h intset.h version.h
79 sds.o: sds.c sds.h zmalloc.h
81 sort.o: sort.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 pqsort.h
83 t_hash.o: t_hash.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 t_list.o: t_list.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
87 t_set.o: t_set.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
89 t_string.o: t_string.c redis.h fmacros.h config.h ae.h sds.h dict.h \
90 adlist.h zmalloc.h anet.h zipmap.h ziplist.h intset.h version.h
91 t_zset.o: t_zset.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 util.o: util.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 vm.o: vm.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 ziplist.o: ziplist.c zmalloc.h ziplist.h
98 zipmap.o: zipmap.c zmalloc.h
99 zmalloc.o: zmalloc.c config.h
102 $(CC) -o $(PRGNAME) $(CCOPT) $(DEBUG) $(OBJ)
104 @echo "Hint: To run 'make test' is a good idea ;)"
107 redis-benchmark: $(BENCHOBJ)
108 $(CC) -o $(BENCHPRGNAME) $(CCOPT) $(DEBUG) $(BENCHOBJ)
111 $(CC) -o $(CLIPRGNAME) $(CCOPT) $(DEBUG) $(CLIOBJ)
113 redis-check-dump: $(CHECKDUMPOBJ)
114 $(CC) -o $(CHECKDUMPPRGNAME) $(CCOPT) $(DEBUG) $(CHECKDUMPOBJ)
116 redis-check-aof: $(CHECKAOFOBJ)
117 $(CC) -o $(CHECKAOFPRGNAME) $(CCOPT) $(DEBUG) $(CHECKAOFOBJ)
120 $(CC) -c $(CFLAGS) $(DEBUG) $(COMPILE_TIME) $<
123 rm -rf $(PRGNAME) $(BENCHPRGNAME) $(CLIPRGNAME) $(CHECKDUMPPRGNAME) $(CHECKAOFPRGNAME) *.o *.gcda *.gcno *.gcov
129 (cd ..; tclsh8.5 tests/test_helper.tcl --tags "${TAGS}")
135 git log '--pretty=format:%ad %s (%cn)' --date=short > ../Changelog
139 @echo "WARNING: if it fails under Linux you probably need to install libc6-dev-i386"
147 make PROF="-fprofile-arcs -ftest-coverage"
153 make PROF="-pg" ARCH="-arch i386"
156 $(INSTALL) $(PRGNAME) $(INSTALL_BIN)
157 $(INSTALL) $(BENCHPRGNAME) $(INSTALL_BIN)
158 $(INSTALL) $(CLIPRGNAME) $(INSTALL_BIN)
159 $(INSTALL) $(CHECKDUMPPRGNAME) $(INSTALL_BIN)
160 $(INSTALL) $(CHECKAOFPRGNAME) $(INSTALL_BIN)