]> git.saurik.com Git - redis.git/blob - Makefile
a few more stuff in INFO about VM. Test #11 changed a bit in order to be less lame
[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 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 ae_select.c ae_epoll.c
30 ae_select.o: ae_select.c
31 anet.o: anet.c fmacros.h anet.h
32 benchmark.o: benchmark.c fmacros.h ae.h anet.h sds.h adlist.h zmalloc.h
33 dict.o: dict.c fmacros.h dict.h zmalloc.h
34 lzf_c.o: lzf_c.c lzfP.h
35 lzf_d.o: lzf_d.c lzfP.h
36 pqsort.o: pqsort.c
37 redis-cli.o: redis-cli.c fmacros.h anet.h sds.h adlist.h zmalloc.h
38 redis.o: redis.c fmacros.h config.h redis.h ae.h sds.h anet.h dict.h \
39 adlist.h zmalloc.h lzf.h pqsort.h staticsymbols.h
40 sds.o: sds.c sds.h zmalloc.h
41 zmalloc.o: zmalloc.c config.h
42
43 redis-server: $(OBJ)
44 $(CC) -o $(PRGNAME) $(CCOPT) $(DEBUG) $(OBJ)
45 @echo ""
46 @echo "Hint: To run the test-redis.tcl script is a good idea."
47 @echo "Launch the redis server with ./redis-server, then in another"
48 @echo "terminal window enter this directory and run 'make test'."
49 @echo ""
50
51 redis-benchmark: $(BENCHOBJ)
52 $(CC) -o $(BENCHPRGNAME) $(CCOPT) $(DEBUG) $(BENCHOBJ)
53
54 redis-cli: $(CLIOBJ)
55 $(CC) -o $(CLIPRGNAME) $(CCOPT) $(DEBUG) $(CLIOBJ)
56
57 .c.o:
58 $(CC) -c $(CFLAGS) $(DEBUG) $(COMPILE_TIME) $<
59
60 clean:
61 rm -rf $(PRGNAME) $(BENCHPRGNAME) $(CLIPRGNAME) *.o *.gcda *.gcno *.gcov
62
63 dep:
64 $(CC) -MM *.c
65
66 staticsymbols:
67 tclsh utils/build-static-symbols.tcl > staticsymbols.h
68
69 test:
70 tclsh test-redis.tcl
71
72 bench:
73 ./redis-benchmark
74
75 log:
76 git log '--pretty=format:%ad %s' --date=short > Changelog
77
78 32bit:
79 make ARCH="-arch i386"
80
81 gprof:
82 make PROF="-pg"
83
84 gcov:
85 make PROF="-fprofile-arcs -ftest-coverage"
86
87 noopt:
88 make OPTIMIZATION=""
89
90 32bitgprof:
91 make PROF="-pg" ARCH="-arch i386"