]> git.saurik.com Git - redis.git/blame_incremental - Makefile
static symbols update
[redis.git] / Makefile
... / ...
CommitLineData
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
5uname_S := $(shell sh -c 'uname -s 2>/dev/null || echo not')
6OPTIMIZATION?=-O2
7ifeq ($(uname_S),SunOS)
8 CFLAGS?= -std=c99 -pedantic $(OPTIMIZATION) -Wall -W -D__EXTENSIONS__ -D_XPG6
9 CCLINK?= -ldl -lnsl -lsocket -lm -lpthread
10else
11 CFLAGS?= -std=c99 -pedantic $(OPTIMIZATION) -Wall -W $(ARCH) $(PROF)
12 CCLINK?= -lm -pthread
13endif
14CCOPT= $(CFLAGS) $(CCLINK) $(ARCH) $(PROF)
15DEBUG?= -g -rdynamic -ggdb
16
17OBJ = adlist.o ae.o anet.o dict.o redis.o sds.o zmalloc.o lzf_c.o lzf_d.o pqsort.o
18BENCHOBJ = ae.o anet.o benchmark.o sds.o adlist.o zmalloc.o
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)
28adlist.o: adlist.c adlist.h zmalloc.h
29ae.o: ae.c ae.h zmalloc.h ae_select.c ae_epoll.c
30ae_select.o: ae_select.c
31anet.o: anet.c fmacros.h anet.h
32benchmark.o: benchmark.c fmacros.h ae.h anet.h sds.h adlist.h zmalloc.h
33dict.o: dict.c fmacros.h dict.h zmalloc.h
34lzf_c.o: lzf_c.c lzfP.h
35lzf_d.o: lzf_d.c lzfP.h
36pqsort.o: pqsort.c
37redis-cli.o: redis-cli.c fmacros.h anet.h sds.h adlist.h zmalloc.h
38redis.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
40sds.o: sds.c sds.h zmalloc.h
41zmalloc.o: zmalloc.c config.h
42
43redis-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
51redis-benchmark: $(BENCHOBJ)
52 $(CC) -o $(BENCHPRGNAME) $(CCOPT) $(DEBUG) $(BENCHOBJ)
53
54redis-cli: $(CLIOBJ)
55 $(CC) -o $(CLIPRGNAME) $(CCOPT) $(DEBUG) $(CLIOBJ)
56
57.c.o:
58 $(CC) -c $(CFLAGS) $(DEBUG) $(COMPILE_TIME) $<
59
60clean:
61 rm -rf $(PRGNAME) $(BENCHPRGNAME) $(CLIPRGNAME) *.o *.gcda *.gcno *.gcov
62
63dep:
64 $(CC) -MM *.c
65
66staticsymbols:
67 tclsh utils/build-static-symbols.tcl > staticsymbols.h
68
69test:
70 tclsh test-redis.tcl
71
72bench:
73 ./redis-benchmark
74
75log:
76 git log '--pretty=format:%ad %s' --date=short > Changelog
77
7832bit:
79 make ARCH="-arch i386"
80
81gprof:
82 make PROF="-pg"
83
84gcov:
85 make PROF="-fprofile-arcs -ftest-coverage"
86
87noopt:
88 make OPTIMIZATION=""
89
9032bitgprof:
91 make PROF="-pg" ARCH="-arch i386"