summaryrefslogtreecommitdiff
path: root/Makefile
diff options
context:
space:
mode:
authorantirez <antirez@gmail.com>2010-07-06 19:10:20 +0200
committerantirez <antirez@gmail.com>2010-07-06 19:10:20 +0200
commit443d1e9efedfcab7d67c10085b69a9b4cb1db6f5 (patch)
tree8367a64f5a1c1159ffbd7ed701419f15944a4dcb /Makefile
parentacc018549379dc2ac02a0b0484cfdb4d56122488 (diff)
downloadredis-443d1e9efedfcab7d67c10085b69a9b4cb1db6f5.tar.gz
Make install fixed using a dummy taget
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile7
1 files changed, 6 insertions, 1 deletions
diff --git a/Makefile b/Makefile
index 576c0e5e9..f67909456 100644
--- a/Makefile
+++ b/Makefile
@@ -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: