]> git.saurik.com Git - redis.git/blame_incremental - Makefile
Fix for HGET against non Hash type, debug messages used to understand a bit better...
[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 zipmap.o
18BENCHOBJ = ae.o anet.o redis-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 config.h ae_kqueue.c
30ae_epoll.o: ae_epoll.c
31ae_kqueue.o: ae_kqueue.c
32ae_select.o: ae_select.c
33anet.o: anet.c fmacros.h anet.h
34dict.o: dict.c fmacros.h dict.h zmalloc.h
35lzf_c.o: lzf_c.c lzfP.h
36lzf_d.o: lzf_d.c lzfP.h
37pqsort.o: pqsort.c
38redis-benchmark.o: redis-benchmark.c fmacros.h ae.h anet.h sds.h adlist.h \
39 zmalloc.h
40redis-cli.o: redis-cli.c fmacros.h anet.h sds.h adlist.h zmalloc.h
41redis.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
43sds.o: sds.c sds.h zmalloc.h
44zipmap.o: zipmap.c zmalloc.h
45zmalloc.o: zmalloc.c config.h
46
47redis-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
55redis-benchmark: $(BENCHOBJ)
56 $(CC) -o $(BENCHPRGNAME) $(CCOPT) $(DEBUG) $(BENCHOBJ)
57
58redis-cli: $(CLIOBJ)
59 $(CC) -o $(CLIPRGNAME) $(CCOPT) $(DEBUG) $(CLIOBJ)
60
61.c.o:
62 $(CC) -c $(CFLAGS) $(DEBUG) $(COMPILE_TIME) $<
63
64clean:
65 rm -rf $(PRGNAME) $(BENCHPRGNAME) $(CLIPRGNAME) *.o *.gcda *.gcno *.gcov
66
67dep:
68 $(CC) -MM *.c
69
70staticsymbols:
71 tclsh utils/build-static-symbols.tcl > staticsymbols.h
72
73test:
74 tclsh test-redis.tcl
75
76bench:
77 ./redis-benchmark
78
79log:
80 git log '--pretty=format:%ad %s' --date=short > Changelog
81
8232bit:
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
88gprof:
89 make PROF="-pg"
90
91gcov:
92 make PROF="-fprofile-arcs -ftest-coverage"
93
94noopt:
95 make OPTIMIZATION=""
96
9732bitgprof:
98 make PROF="-pg" ARCH="-arch i386"