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