diff options
author | antirez <antirez@gmail.com> | 2010-07-06 19:10:20 +0200 |
---|---|---|
committer | antirez <antirez@gmail.com> | 2010-07-06 19:10:20 +0200 |
commit | 443d1e9efedfcab7d67c10085b69a9b4cb1db6f5 (patch) | |
tree | 8367a64f5a1c1159ffbd7ed701419f15944a4dcb /Makefile | |
parent | acc018549379dc2ac02a0b0484cfdb4d56122488 (diff) | |
download | redis-443d1e9efedfcab7d67c10085b69a9b4cb1db6f5.tar.gz |
Make install fixed using a dummy taget
Diffstat (limited to 'Makefile')
-rw-r--r-- | Makefile | 7 |
1 files changed, 6 insertions, 1 deletions
@@ -1,9 +1,14 @@ # Top level makefile, the real shit is at src/Makefile -TARGETS=32bit noopt test install +TARGETS=32bit noopt test all: cd src && $(MAKE) $@ +install: dummy + cd src && $(MAKE) $@ + $(TARGETS) clean: cd src && $(MAKE) $@ + +dummy: |