]> git.saurik.com Git - redis.git/blame_incremental - src/Makefile
don't use small shared integer objects when disk store is enabled
[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 dscache.o pubsub.o multi.o debug.o sort.o intset.o syncio.o diskstore.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 release.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-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)
45adlist.o: adlist.c adlist.h zmalloc.h
46ae.o: ae.c ae.h zmalloc.h config.h ae_kqueue.c
47ae_epoll.o: ae_epoll.c
48ae_kqueue.o: ae_kqueue.c
49ae_select.o: ae_select.c
50anet.o: anet.c fmacros.h anet.h
51aof.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
53config.o: config.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
55db.o: db.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
57debug.o: debug.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 sha1.h
59dict.o: dict.c fmacros.h dict.h zmalloc.h
60diskstore.o: diskstore.c redis.h fmacros.h config.h ae.h sds.h dict.h \
61 adlist.h zmalloc.h anet.h zipmap.h ziplist.h intset.h version.h
62dscache.o: dscache.c redis.h fmacros.h config.h ae.h sds.h dict.h \
63 adlist.h zmalloc.h anet.h zipmap.h ziplist.h intset.h version.h
64intset.o: intset.c intset.h zmalloc.h
65lzf_c.o: lzf_c.c lzfP.h
66lzf_d.o: lzf_d.c lzfP.h
67multi.o: multi.c redis.h fmacros.h config.h ae.h sds.h dict.h adlist.h \
68 zmalloc.h anet.h zipmap.h ziplist.h intset.h version.h
69networking.o: networking.c redis.h fmacros.h config.h ae.h sds.h dict.h \
70 adlist.h zmalloc.h anet.h zipmap.h ziplist.h intset.h version.h
71object.o: object.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
73pqsort.o: pqsort.c
74pubsub.o: pubsub.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
76rdb.o: rdb.c redis.h fmacros.h config.h ae.h sds.h dict.h adlist.h \
77 zmalloc.h anet.h zipmap.h ziplist.h intset.h version.h lzf.h
78redis-benchmark.o: redis-benchmark.c fmacros.h ae.h \
79 ../deps/hiredis/hiredis.h sds.h adlist.h zmalloc.h
80redis-check-aof.o: redis-check-aof.c fmacros.h config.h
81redis-check-dump.o: redis-check-dump.c lzf.h
82redis-cli.o: redis-cli.c fmacros.h version.h ../deps/hiredis/hiredis.h \
83 sds.h zmalloc.h ../deps/linenoise/linenoise.h help.h
84redis.o: redis.c redis.h fmacros.h config.h ae.h sds.h dict.h adlist.h \
85 zmalloc.h anet.h zipmap.h ziplist.h intset.h version.h
86release.o: release.c release.h
87replication.o: replication.c redis.h fmacros.h config.h ae.h sds.h dict.h \
88 adlist.h zmalloc.h anet.h zipmap.h ziplist.h intset.h version.h
89sds.o: sds.c sds.h zmalloc.h
90sha1.o: sha1.c sha1.h
91sort.o: sort.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 pqsort.h
93syncio.o: syncio.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_hash.o: t_hash.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
97t_list.o: t_list.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
99t_set.o: t_set.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
101t_string.o: t_string.c redis.h fmacros.h config.h ae.h sds.h dict.h \
102 adlist.h zmalloc.h anet.h zipmap.h ziplist.h intset.h version.h
103t_zset.o: t_zset.c redis.h fmacros.h config.h ae.h sds.h dict.h adlist.h \
104 zmalloc.h anet.h zipmap.h ziplist.h intset.h version.h
105util.o: util.c redis.h fmacros.h config.h ae.h sds.h dict.h adlist.h \
106 zmalloc.h anet.h zipmap.h ziplist.h intset.h version.h
107ziplist.o: ziplist.c zmalloc.h ziplist.h
108zipmap.o: zipmap.c zmalloc.h
109zmalloc.o: zmalloc.c config.h
110
111dependencies:
112 cd ../deps/hiredis && $(MAKE) static ARCH="$(ARCH)"
113 cd ../deps/linenoise && $(MAKE) ARCH="$(ARCH)"
114
115redis-server: $(OBJ)
116 $(CC) -o $(PRGNAME) $(CCOPT) $(DEBUG) $(OBJ)
117
118redis-benchmark: dependencies $(BENCHOBJ)
119 cd ../deps/hiredis && $(MAKE) static
120 $(CC) -o $(BENCHPRGNAME) $(CCOPT) $(DEBUG) $(BENCHOBJ) ../deps/hiredis/libhiredis.a
121
122redis-benchmark.o:
123 $(CC) -c $(CFLAGS) -I../deps/hiredis $(DEBUG) $(COMPILE_TIME) $<
124
125redis-cli: dependencies $(CLIOBJ)
126 $(CC) -o $(CLIPRGNAME) $(CCOPT) $(DEBUG) $(CLIOBJ) ../deps/hiredis/libhiredis.a ../deps/linenoise/linenoise.o
127
128redis-cli.o:
129 $(CC) -c $(CFLAGS) -I../deps/hiredis -I../deps/linenoise $(DEBUG) $(COMPILE_TIME) $<
130
131redis-check-dump: $(CHECKDUMPOBJ)
132 $(CC) -o $(CHECKDUMPPRGNAME) $(CCOPT) $(DEBUG) $(CHECKDUMPOBJ)
133
134redis-check-aof: $(CHECKAOFOBJ)
135 $(CC) -o $(CHECKAOFPRGNAME) $(CCOPT) $(DEBUG) $(CHECKAOFOBJ)
136
137.c.o:
138 $(CC) -c $(CFLAGS) $(DEBUG) $(COMPILE_TIME) $<
139
140clean:
141 rm -rf $(PRGNAME) $(BENCHPRGNAME) $(CLIPRGNAME) $(CHECKDUMPPRGNAME) $(CHECKAOFPRGNAME) *.o *.gcda *.gcno *.gcov
142
143dep:
144 $(CC) -MM *.c -I ../deps/hiredis -I ../deps/linenoise
145
146test: redis-server
147 (cd ..; tclsh8.5 tests/test_helper.tcl --tags "${TAGS}" --file "${FILE}")
148
149bench:
150 ./redis-benchmark
151
152log:
153 git log '--pretty=format:%ad %s (%cn)' --date=short > ../Changelog
154
15532bit:
156 @echo ""
157 @echo "WARNING: if it fails under Linux you probably need to install libc6-dev-i386"
158 @echo ""
159 $(MAKE) ARCH="-m32"
160
161gprof:
162 $(MAKE) PROF="-pg"
163
164gcov:
165 $(MAKE) PROF="-fprofile-arcs -ftest-coverage"
166
167noopt:
168 $(MAKE) OPTIMIZATION=""
169
17032bitgprof:
171 $(MAKE) PROF="-pg" ARCH="-arch i386"
172
173install: all
174 mkdir -p $(INSTALL_BIN)
175 $(INSTALL) $(PRGNAME) $(INSTALL_BIN)
176 $(INSTALL) $(BENCHPRGNAME) $(INSTALL_BIN)
177 $(INSTALL) $(CLIPRGNAME) $(INSTALL_BIN)
178 $(INSTALL) $(CHECKDUMPPRGNAME) $(INSTALL_BIN)
179 $(INSTALL) $(CHECKAOFPRGNAME) $(INSTALL_BIN)