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