]> git.saurik.com Git - redis.git/blob - Makefile
commercial tools stuff removed from the Redis makefile. cotools are now migrated...
[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
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 staticsymbols.h
43 sds.o: sds.c sds.h zmalloc.h
44 zmalloc.o: zmalloc.c config.h
45
46 redis-server: $(OBJ)
47 $(CC) -o $(PRGNAME) $(CCOPT) $(DEBUG) $(OBJ)
48 @echo ""
49 @echo "Hint: To run the test-redis.tcl script is a good idea."
50 @echo "Launch the redis server with ./redis-server, then in another"
51 @echo "terminal window enter this directory and run 'make test'."
52 @echo ""
53
54 redis-benchmark: $(BENCHOBJ)
55 $(CC) -o $(BENCHPRGNAME) $(CCOPT) $(DEBUG) $(BENCHOBJ)
56
57 redis-cli: $(CLIOBJ)
58 $(CC) -o $(CLIPRGNAME) $(CCOPT) $(DEBUG) $(CLIOBJ)
59
60 .c.o:
61 $(CC) -c $(CFLAGS) $(DEBUG) $(COMPILE_TIME) $<
62
63 clean:
64 rm -rf $(PRGNAME) $(BENCHPRGNAME) $(CLIPRGNAME) *.o *.gcda *.gcno *.gcov
65
66 dep:
67 $(CC) -MM *.c
68
69 staticsymbols:
70 tclsh utils/build-static-symbols.tcl > staticsymbols.h
71
72 test:
73 tclsh test-redis.tcl
74
75 bench:
76 ./redis-benchmark
77
78 log:
79 git log '--pretty=format:%ad %s' --date=short > Changelog
80
81 32bit:
82 make ARCH="-arch i386"
83
84 gprof:
85 make PROF="-pg"
86
87 gcov:
88 make PROF="-fprofile-arcs -ftest-coverage"
89
90 noopt:
91 make OPTIMIZATION=""
92
93 32bitgprof:
94 make PROF="-pg" ARCH="-arch i386"