]> git.saurik.com Git - redis.git/blame - Makefile
static symbols update
[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
5f5b9840 17OBJ = adlist.o ae.o anet.o dict.o redis.o sds.o zmalloc.o lzf_c.o lzf_d.o pqsort.o
ed9b544e 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)
9e9c0ce1 28adlist.o: adlist.c adlist.h zmalloc.h
64f36a58 29ae.o: ae.c ae.h zmalloc.h ae_select.c ae_epoll.c
266373b2 30ae_select.o: ae_select.c
9e9c0ce1 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
266373b2 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
9e9c0ce1 40sds.o: sds.c sds.h zmalloc.h
41zmalloc.o: zmalloc.c config.h
ed9b544e 42
43redis-server: $(OBJ)
a69a0c9c 44 $(CC) -o $(PRGNAME) $(CCOPT) $(DEBUG) $(OBJ)
ed9b544e 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:
325d1eb4 58 $(CC) -c $(CFLAGS) $(DEBUG) $(COMPILE_TIME) $<
ed9b544e 59
60clean:
fc77604c 61 rm -rf $(PRGNAME) $(BENCHPRGNAME) $(CLIPRGNAME) *.o *.gcda *.gcno *.gcov
ed9b544e 62
63dep:
64 $(CC) -MM *.c
65
bcfc686d 66staticsymbols:
67 tclsh utils/build-static-symbols.tcl > staticsymbols.h
68
ed9b544e 69test:
70 tclsh test-redis.tcl
71
72bench:
73 ./redis-benchmark
378fd421 74
75log:
76 git log '--pretty=format:%ad %s' --date=short > Changelog
fd8ccf44 77
7832bit:
79 make ARCH="-arch i386"
d0ccebcf 80
81gprof:
82 make PROF="-pg"
83
fc77604c 84gcov:
85 make PROF="-fprofile-arcs -ftest-coverage"
86
25fd2cb2 87noopt:
88 make OPTIMIZATION=""
89
d0ccebcf 9032bitgprof:
91 make PROF="-pg" ARCH="-arch i386"