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