]> git.saurik.com Git - redis.git/blame_incremental - Makefile
Take a pointer to the relevant entry of the command table in the client structure...
[redis.git] / Makefile
... / ...
CommitLineData
1# Top level makefile, the real shit is at src/Makefile
2
3TARGETS=32bit noopt test
4
5all:
6 cd src && $(MAKE) $@
7
8install: dummy
9 cd src && $(MAKE) $@
10
11clean:
12 cd src && $(MAKE) $@
13 cd deps/hiredis && $(MAKE) $@
14 cd deps/linenoise && $(MAKE) $@
15 -(cd deps/jemalloc && $(MAKE) distclean)
16
17$(TARGETS):
18 cd src && $(MAKE) $@
19
20src/help.h:
21 @./utils/generate-command-help.rb > $@
22
23dummy: