]> git.saurik.com Git - redis.git/blame - src/Makefile
Use hiredis from redis-cli
[redis.git] / src / Makefile
CommitLineData
ed9b544e 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
73287b2b 5release_hdr := $(shell sh -c './mkreleasehdr.sh')
325d1eb4 6uname_S := $(shell sh -c 'uname -s 2>/dev/null || echo not')
25fd2cb2 7OPTIMIZATION?=-O2
325d1eb4 8ifeq ($(uname_S),SunOS)
25fd2cb2 9 CFLAGS?= -std=c99 -pedantic $(OPTIMIZATION) -Wall -W -D__EXTENSIONS__ -D_XPG6
a69a0c9c 10 CCLINK?= -ldl -lnsl -lsocket -lm -lpthread
325d1eb4 11else
25fd2cb2 12 CFLAGS?= -std=c99 -pedantic $(OPTIMIZATION) -Wall -W $(ARCH) $(PROF)
a69a0c9c 13 CCLINK?= -lm -pthread
325d1eb4 14endif
0a802bd7 15
16ifeq ($(USE_TCMALLOC),yes)
17 CCLINK+= -ltcmalloc
1a587ff8 18 CFLAGS+= -DUSE_TCMALLOC
0a802bd7 19endif
d0ccebcf 20CCOPT= $(CFLAGS) $(CCLINK) $(ARCH) $(PROF)
01fe7151 21DEBUG?= -g -rdynamic -ggdb
ed9b544e 22
e1386503 23PREFIX= /usr/local
0997b411 24INSTALL_BIN= $(PREFIX)/bin
acc01854 25INSTALL= cp -p
26
19e61097 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
970e10bb 28BENCHOBJ = ae.o anet.o redis-benchmark.o sds.o adlist.o zmalloc.o
cf87ebf2 29CLIOBJ = anet.o sds.o adlist.o redis-cli.o zmalloc.o linenoise.o
08af4d5c 30CHECKDUMPOBJ = redis-check-dump.o lzf_c.o lzf_d.o
b4bd0524 31CHECKAOFOBJ = redis-check-aof.o
ed9b544e 32
33PRGNAME = redis-server
34BENCHPRGNAME = redis-benchmark
35CLIPRGNAME = redis-cli
08af4d5c 36CHECKDUMPPRGNAME = redis-check-dump
b4bd0524 37CHECKAOFPRGNAME = redis-check-aof
ed9b544e 38
b4bd0524 39all: redis-server redis-benchmark redis-cli redis-check-dump redis-check-aof
ed9b544e 40
41# Deps (use make dep to generate this)
9e9c0ce1 42adlist.o: adlist.c adlist.h zmalloc.h
970e10bb 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
266373b2 46ae_select.o: ae_select.c
9e9c0ce1 47anet.o: anet.c fmacros.h anet.h
8fedd04d 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
19e61097 50chprgname.o: chprgname.c
8fedd04d 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
9e9c0ce1 57dict.o: dict.c fmacros.h dict.h zmalloc.h
8fedd04d 58intset.o: intset.c intset.h zmalloc.h
7a121e60 59linenoise.o: linenoise.c fmacros.h
9e9c0ce1 60lzf_c.o: lzf_c.c lzfP.h
61lzf_d.o: lzf_d.c lzfP.h
8fedd04d 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
9e9c0ce1 68pqsort.o: pqsort.c
8fedd04d 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
970e10bb 73redis-benchmark.o: redis-benchmark.c fmacros.h ae.h anet.h sds.h adlist.h \
74 zmalloc.h
7a121e60 75redis-check-aof.o: redis-check-aof.c fmacros.h config.h
cf87ebf2 76redis-check-dump.o: redis-check-dump.c lzf.h
8fedd04d 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
7c4fc71c 81release.o: release.c release.h
8fedd04d 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
9e9c0ce1 84sds.o: sds.c sds.h zmalloc.h
7c4fc71c 85sha1.o: sha1.c sha1.h
8fedd04d 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
19e61097 88syncio.o: syncio.c
8fedd04d 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
7c4fc71c 103ziplist.o: ziplist.c zmalloc.h ziplist.h
5234952b 104zipmap.o: zipmap.c zmalloc.h
9e9c0ce1 105zmalloc.o: zmalloc.c config.h
ed9b544e 106
73287b2b 107redis-server: $(OBJ)
a69a0c9c 108 $(CC) -o $(PRGNAME) $(CCOPT) $(DEBUG) $(OBJ)
ed9b544e 109 @echo ""
ea2c08e9 110 @echo "Hint: To run 'make test' is a good idea ;)"
ed9b544e 111 @echo ""
112
113redis-benchmark: $(BENCHOBJ)
114 $(CC) -o $(BENCHPRGNAME) $(CCOPT) $(DEBUG) $(BENCHOBJ)
115
116redis-cli: $(CLIOBJ)
7fc4ce13
PN
117 cd ../deps/hiredis && make static
118 $(CC) -o $(CLIPRGNAME) $(CCOPT) $(DEBUG) $(CLIOBJ) ../deps/hiredis/libhiredis.a
119
120redis-cli.o:
121 $(CC) -c $(CFLAGS) -I../deps/hiredis $(DEBUG) $(COMPILE_TIME) $<
ed9b544e 122
08af4d5c
PN
123redis-check-dump: $(CHECKDUMPOBJ)
124 $(CC) -o $(CHECKDUMPPRGNAME) $(CCOPT) $(DEBUG) $(CHECKDUMPOBJ)
125
b4bd0524
PN
126redis-check-aof: $(CHECKAOFOBJ)
127 $(CC) -o $(CHECKAOFPRGNAME) $(CCOPT) $(DEBUG) $(CHECKAOFOBJ)
128
ed9b544e 129.c.o:
325d1eb4 130 $(CC) -c $(CFLAGS) $(DEBUG) $(COMPILE_TIME) $<
ed9b544e 131
132clean:
b4bd0524 133 rm -rf $(PRGNAME) $(BENCHPRGNAME) $(CLIPRGNAME) $(CHECKDUMPPRGNAME) $(CHECKAOFPRGNAME) *.o *.gcda *.gcno *.gcov
ed9b544e 134
135dep:
136 $(CC) -MM *.c
137
ab72b483 138test:
9f1ae9ab 139 (cd ..; tclsh8.5 tests/test_helper.tcl --tags "${TAGS}" --file "${FILE}")
ed9b544e 140
141bench:
142 ./redis-benchmark
378fd421 143
144log:
24110a4d 145 git log '--pretty=format:%ad %s (%cn)' --date=short > ../Changelog
fd8ccf44 146
14732bit:
9ebed7cf 148 @echo ""
149 @echo "WARNING: if it fails under Linux you probably need to install libc6-dev-i386"
150 @echo ""
151 make ARCH="-m32"
d0ccebcf 152
153gprof:
154 make PROF="-pg"
155
fc77604c 156gcov:
157 make PROF="-fprofile-arcs -ftest-coverage"
158
25fd2cb2 159noopt:
160 make OPTIMIZATION=""
161
d0ccebcf 16232bitgprof:
163 make PROF="-pg" ARCH="-arch i386"
acc01854 164
165install: all
e984050f 166 mkdir -p $(INSTALL_BIN)
acc01854 167 $(INSTALL) $(PRGNAME) $(INSTALL_BIN)
168 $(INSTALL) $(BENCHPRGNAME) $(INSTALL_BIN)
169 $(INSTALL) $(CLIPRGNAME) $(INSTALL_BIN)
170 $(INSTALL) $(CHECKDUMPPRGNAME) $(INSTALL_BIN)
171 $(INSTALL) $(CHECKAOFPRGNAME) $(INSTALL_BIN)