]> git.saurik.com Git - redis.git/blame - src/Makefile
Static buffer in client struct has a constant size
[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
d0ccebcf 15CCOPT= $(CFLAGS) $(CCLINK) $(ARCH) $(PROF)
01fe7151 16DEBUG?= -g -rdynamic -ggdb
ed9b544e 17
acc01854 18INSTALL_TOP= /usr/local
19INSTALL_BIN= $(INSTALL_TOP)/bin
20INSTALL= cp -p
21
96ffb2fe 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
970e10bb 23BENCHOBJ = ae.o anet.o redis-benchmark.o sds.o adlist.o zmalloc.o
cf87ebf2 24CLIOBJ = anet.o sds.o adlist.o redis-cli.o zmalloc.o linenoise.o
08af4d5c 25CHECKDUMPOBJ = redis-check-dump.o lzf_c.o lzf_d.o
b4bd0524 26CHECKAOFOBJ = redis-check-aof.o
ed9b544e 27
28PRGNAME = redis-server
29BENCHPRGNAME = redis-benchmark
30CLIPRGNAME = redis-cli
08af4d5c 31CHECKDUMPPRGNAME = redis-check-dump
b4bd0524 32CHECKAOFPRGNAME = redis-check-aof
ed9b544e 33
b4bd0524 34all: redis-server redis-benchmark redis-cli redis-check-dump redis-check-aof
ed9b544e 35
8fedd04d 36
ed9b544e 37# Deps (use make dep to generate this)
9e9c0ce1 38adlist.o: adlist.c adlist.h zmalloc.h
970e10bb 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
266373b2 42ae_select.o: ae_select.c
9e9c0ce1 43anet.o: anet.c fmacros.h anet.h
8fedd04d 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
9e9c0ce1 52dict.o: dict.c fmacros.h dict.h zmalloc.h
8fedd04d 53intset.o: intset.c intset.h zmalloc.h
7a121e60 54linenoise.o: linenoise.c fmacros.h
9e9c0ce1 55lzf_c.o: lzf_c.c lzfP.h
56lzf_d.o: lzf_d.c lzfP.h
8fedd04d 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
9e9c0ce1 63pqsort.o: pqsort.c
8fedd04d 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
970e10bb 68redis-benchmark.o: redis-benchmark.c fmacros.h ae.h anet.h sds.h adlist.h \
69 zmalloc.h
7a121e60 70redis-check-aof.o: redis-check-aof.c fmacros.h config.h
cf87ebf2 71redis-check-dump.o: redis-check-dump.c lzf.h
8fedd04d 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
7c4fc71c 76release.o: release.c release.h
8fedd04d 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
9e9c0ce1 79sds.o: sds.c sds.h zmalloc.h
7c4fc71c 80sha1.o: sha1.c sha1.h
8fedd04d 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
7c4fc71c 97ziplist.o: ziplist.c zmalloc.h ziplist.h
5234952b 98zipmap.o: zipmap.c zmalloc.h
9e9c0ce1 99zmalloc.o: zmalloc.c config.h
ed9b544e 100
73287b2b 101redis-server: $(OBJ)
a69a0c9c 102 $(CC) -o $(PRGNAME) $(CCOPT) $(DEBUG) $(OBJ)
ed9b544e 103 @echo ""
ea2c08e9 104 @echo "Hint: To run 'make test' is a good idea ;)"
ed9b544e 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
08af4d5c
PN
113redis-check-dump: $(CHECKDUMPOBJ)
114 $(CC) -o $(CHECKDUMPPRGNAME) $(CCOPT) $(DEBUG) $(CHECKDUMPOBJ)
115
b4bd0524
PN
116redis-check-aof: $(CHECKAOFOBJ)
117 $(CC) -o $(CHECKAOFPRGNAME) $(CCOPT) $(DEBUG) $(CHECKAOFOBJ)
118
ed9b544e 119.c.o:
325d1eb4 120 $(CC) -c $(CFLAGS) $(DEBUG) $(COMPILE_TIME) $<
ed9b544e 121
122clean:
b4bd0524 123 rm -rf $(PRGNAME) $(BENCHPRGNAME) $(CLIPRGNAME) $(CHECKDUMPPRGNAME) $(CHECKAOFPRGNAME) *.o *.gcda *.gcno *.gcov
ed9b544e 124
125dep:
126 $(CC) -MM *.c
127
ab72b483 128test:
e2641e09 129 (cd ..; tclsh8.5 tests/test_helper.tcl --tags "${TAGS}")
ed9b544e 130
131bench:
132 ./redis-benchmark
378fd421 133
134log:
24110a4d 135 git log '--pretty=format:%ad %s (%cn)' --date=short > ../Changelog
fd8ccf44 136
13732bit:
9ebed7cf 138 @echo ""
139 @echo "WARNING: if it fails under Linux you probably need to install libc6-dev-i386"
140 @echo ""
141 make ARCH="-m32"
d0ccebcf 142
143gprof:
144 make PROF="-pg"
145
fc77604c 146gcov:
147 make PROF="-fprofile-arcs -ftest-coverage"
148
25fd2cb2 149noopt:
150 make OPTIMIZATION=""
151
d0ccebcf 15232bitgprof:
153 make PROF="-pg" ARCH="-arch i386"
acc01854 154
155install: all
156 $(INSTALL) $(PRGNAME) $(INSTALL_BIN)
157 $(INSTALL) $(BENCHPRGNAME) $(INSTALL_BIN)
158 $(INSTALL) $(CLIPRGNAME) $(INSTALL_BIN)
159 $(INSTALL) $(CHECKDUMPPRGNAME) $(INSTALL_BIN)
160 $(INSTALL) $(CHECKAOFPRGNAME) $(INSTALL_BIN)