]> git.saurik.com Git - redis.git/blame_incremental - src/Makefile
free memory if the maxmemory parameter is reduced via CONFIG SET
[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
15CCOPT= $(CFLAGS) $(CCLINK) $(ARCH) $(PROF)
16DEBUG?= -g -rdynamic -ggdb
17
18PREFIX= /usr/local
19INSTALL_BIN= $(PREFIX)/bin
20INSTALL= cp -p
21
22OBJ = 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
23BENCHOBJ = ae.o anet.o redis-benchmark.o sds.o adlist.o zmalloc.o
24CLIOBJ = anet.o sds.o adlist.o redis-cli.o zmalloc.o linenoise.o
25CHECKDUMPOBJ = redis-check-dump.o lzf_c.o lzf_d.o
26CHECKAOFOBJ = redis-check-aof.o
27
28PRGNAME = redis-server
29BENCHPRGNAME = redis-benchmark
30CLIPRGNAME = redis-cli
31CHECKDUMPPRGNAME = redis-check-dump
32CHECKAOFPRGNAME = redis-check-aof
33
34all: redis-server redis-benchmark redis-cli redis-check-dump redis-check-aof
35
36
37# Deps (use make dep to generate this)
38adlist.o: adlist.c adlist.h zmalloc.h
39ae.o: ae.c ae.h zmalloc.h config.h ae_kqueue.c
40ae_epoll.o: ae_epoll.c
41ae_kqueue.o: ae_kqueue.c
42ae_select.o: ae_select.c
43anet.o: anet.c fmacros.h anet.h
44aof.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
46config.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
48db.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
50debug.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
52dict.o: dict.c fmacros.h dict.h zmalloc.h
53intset.o: intset.c intset.h zmalloc.h
54linenoise.o: linenoise.c fmacros.h
55lzf_c.o: lzf_c.c lzfP.h
56lzf_d.o: lzf_d.c lzfP.h
57multi.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
59networking.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
61object.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
63pqsort.o: pqsort.c
64pubsub.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
66rdb.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
68redis-benchmark.o: redis-benchmark.c fmacros.h ae.h anet.h sds.h adlist.h \
69 zmalloc.h
70redis-check-aof.o: redis-check-aof.c fmacros.h config.h
71redis-check-dump.o: redis-check-dump.c lzf.h
72redis-cli.o: redis-cli.c fmacros.h version.h anet.h sds.h adlist.h \
73 zmalloc.h linenoise.h
74redis.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
76release.o: release.c release.h
77replication.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
79sds.o: sds.c sds.h zmalloc.h
80sha1.o: sha1.c sha1.h
81sort.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
83t_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
85t_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
87t_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
89t_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
91t_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
93util.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
95vm.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
97ziplist.o: ziplist.c zmalloc.h ziplist.h
98zipmap.o: zipmap.c zmalloc.h
99zmalloc.o: zmalloc.c config.h
100
101redis-server: $(OBJ)
102 $(CC) -o $(PRGNAME) $(CCOPT) $(DEBUG) $(OBJ)
103 @echo ""
104 @echo "Hint: To run 'make test' is a good idea ;)"
105 @echo ""
106
107redis-benchmark: $(BENCHOBJ)
108 $(CC) -o $(BENCHPRGNAME) $(CCOPT) $(DEBUG) $(BENCHOBJ)
109
110redis-cli: $(CLIOBJ)
111 $(CC) -o $(CLIPRGNAME) $(CCOPT) $(DEBUG) $(CLIOBJ)
112
113redis-check-dump: $(CHECKDUMPOBJ)
114 $(CC) -o $(CHECKDUMPPRGNAME) $(CCOPT) $(DEBUG) $(CHECKDUMPOBJ)
115
116redis-check-aof: $(CHECKAOFOBJ)
117 $(CC) -o $(CHECKAOFPRGNAME) $(CCOPT) $(DEBUG) $(CHECKAOFOBJ)
118
119.c.o:
120 $(CC) -c $(CFLAGS) $(DEBUG) $(COMPILE_TIME) $<
121
122clean:
123 rm -rf $(PRGNAME) $(BENCHPRGNAME) $(CLIPRGNAME) $(CHECKDUMPPRGNAME) $(CHECKAOFPRGNAME) *.o *.gcda *.gcno *.gcov
124
125dep:
126 $(CC) -MM *.c
127
128test:
129 (cd ..; tclsh8.5 tests/test_helper.tcl --tags "${TAGS}")
130
131bench:
132 ./redis-benchmark
133
134log:
135 git log '--pretty=format:%ad %s (%cn)' --date=short > ../Changelog
136
13732bit:
138 @echo ""
139 @echo "WARNING: if it fails under Linux you probably need to install libc6-dev-i386"
140 @echo ""
141 make ARCH="-m32"
142
143gprof:
144 make PROF="-pg"
145
146gcov:
147 make PROF="-fprofile-arcs -ftest-coverage"
148
149noopt:
150 make OPTIMIZATION=""
151
15232bitgprof:
153 make PROF="-pg" ARCH="-arch i386"
154
155install: all
156 mkdir -p $(INSTALL_BIN)
157 $(INSTALL) $(PRGNAME) $(INSTALL_BIN)
158 $(INSTALL) $(BENCHPRGNAME) $(INSTALL_BIN)
159 $(INSTALL) $(CLIPRGNAME) $(INSTALL_BIN)
160 $(INSTALL) $(CHECKDUMPPRGNAME) $(INSTALL_BIN)
161 $(INSTALL) $(CHECKAOFPRGNAME) $(INSTALL_BIN)