]> git.saurik.com Git - redis.git/blame - Makefile
gitignore now includes a few more files
[redis.git] / Makefile
CommitLineData
f26dde8c 1# Top level makefile, the real shit is at src/Makefile
2
443d1e9e 3TARGETS=32bit noopt test
f26dde8c 4
5all:
6 cd src && $(MAKE) $@
7
443d1e9e 8install: dummy
9 cd src && $(MAKE) $@
10
abc3ff4d 11clean:
f26dde8c 12 cd src && $(MAKE) $@
8df3dcad 13 cd deps/hiredis && $(MAKE) $@
14 cd deps/linenoise && $(MAKE) $@
443d1e9e 15
abc3ff4d
PN
16$(TARGETS):
17 cd src && $(MAKE) $@
18
443d1e9e 19dummy: