]> git.saurik.com Git - redis.git/blame - Makefile
A minor fix and a few debug messages removed
[redis.git] / 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
325d1eb4 5uname_S := $(shell sh -c 'uname -s 2>/dev/null || echo not')
25fd2cb2 6OPTIMIZATION?=-O2
325d1eb4 7ifeq ($(uname_S),SunOS)
25fd2cb2 8 CFLAGS?= -std=c99 -pedantic $(OPTIMIZATION) -Wall -W -D__EXTENSIONS__ -D_XPG6
a69a0c9c 9 CCLINK?= -ldl -lnsl -lsocket -lm -lpthread
325d1eb4 10else
25fd2cb2 11 CFLAGS?= -std=c99 -pedantic $(OPTIMIZATION) -Wall -W $(ARCH) $(PROF)
a69a0c9c 12 CCLINK?= -lm -pthread
325d1eb4 13endif
d0ccebcf 14CCOPT= $(CFLAGS) $(CCLINK) $(ARCH) $(PROF)
01fe7151 15DEBUG?= -g -rdynamic -ggdb
ed9b544e 16
5234952b 17OBJ = adlist.o ae.o anet.o dict.o redis.o sds.o zmalloc.o lzf_c.o lzf_d.o pqsort.o zipmap.o
970e10bb 18BENCHOBJ = ae.o anet.o redis-benchmark.o sds.o adlist.o zmalloc.o
ed9b544e 19CLIOBJ = anet.o sds.o adlist.o redis-cli.o zmalloc.o
20
21PRGNAME = redis-server
22BENCHPRGNAME = redis-benchmark
23CLIPRGNAME = redis-cli
24
25all: redis-server redis-benchmark redis-cli
26
27# Deps (use make dep to generate this)
9e9c0ce1 28adlist.o: adlist.c adlist.h zmalloc.h
970e10bb 29ae.o: ae.c ae.h zmalloc.h config.h ae_kqueue.c
30ae_epoll.o: ae_epoll.c
31ae_kqueue.o: ae_kqueue.c
266373b2 32ae_select.o: ae_select.c
9e9c0ce1 33anet.o: anet.c fmacros.h anet.h
9e9c0ce1 34dict.o: dict.c fmacros.h dict.h zmalloc.h
35lzf_c.o: lzf_c.c lzfP.h
36lzf_d.o: lzf_d.c lzfP.h
37pqsort.o: pqsort.c
970e10bb 38redis-benchmark.o: redis-benchmark.c fmacros.h ae.h anet.h sds.h adlist.h \
39 zmalloc.h
9e9c0ce1 40redis-cli.o: redis-cli.c fmacros.h anet.h sds.h adlist.h zmalloc.h
266373b2 41redis.o: redis.c fmacros.h config.h redis.h ae.h sds.h anet.h dict.h \
5234952b 42 adlist.h zmalloc.h lzf.h pqsort.h zipmap.h staticsymbols.h
9e9c0ce1 43sds.o: sds.c sds.h zmalloc.h
5234952b 44zipmap.o: zipmap.c zmalloc.h
9e9c0ce1 45zmalloc.o: zmalloc.c config.h
ed9b544e 46
47redis-server: $(OBJ)
a69a0c9c 48 $(CC) -o $(PRGNAME) $(CCOPT) $(DEBUG) $(OBJ)
ed9b544e 49 @echo ""
50 @echo "Hint: To run the test-redis.tcl script is a good idea."
51 @echo "Launch the redis server with ./redis-server, then in another"
52 @echo "terminal window enter this directory and run 'make test'."
53 @echo ""
54
55redis-benchmark: $(BENCHOBJ)
56 $(CC) -o $(BENCHPRGNAME) $(CCOPT) $(DEBUG) $(BENCHOBJ)
57
58redis-cli: $(CLIOBJ)
59 $(CC) -o $(CLIPRGNAME) $(CCOPT) $(DEBUG) $(CLIOBJ)
60
61.c.o:
325d1eb4 62 $(CC) -c $(CFLAGS) $(DEBUG) $(COMPILE_TIME) $<
ed9b544e 63
64clean:
8e688711 65 rm -rf $(PRGNAME) $(BENCHPRGNAME) $(CLIPRGNAME) *.o *.gcda *.gcno *.gcov
ed9b544e 66
67dep:
68 $(CC) -MM *.c
69
bcfc686d 70staticsymbols:
71 tclsh utils/build-static-symbols.tcl > staticsymbols.h
72
ed9b544e 73test:
74 tclsh test-redis.tcl
75
76bench:
77 ./redis-benchmark
378fd421 78
79log:
80 git log '--pretty=format:%ad %s' --date=short > Changelog
fd8ccf44 81
8232bit:
9ebed7cf 83 @echo ""
84 @echo "WARNING: if it fails under Linux you probably need to install libc6-dev-i386"
85 @echo ""
86 make ARCH="-m32"
d0ccebcf 87
88gprof:
89 make PROF="-pg"
90
fc77604c 91gcov:
92 make PROF="-fprofile-arcs -ftest-coverage"
93
25fd2cb2 94noopt:
95 make OPTIMIZATION=""
96
d0ccebcf 9732bitgprof:
98 make PROF="-pg" ARCH="-arch i386"