]> git.saurik.com Git - redis.git/blobdiff - Makefile
Fixed RESTORE hash failure (Issue #532)
[redis.git] / Makefile
index 185aab8d2038f404c6f5f8143859ca2e03bed2a2..e614ede891f2dd183a3ae41ea1ac3b63fe2e7634 100644 (file)
--- a/Makefile
+++ b/Makefile
@@ -1,19 +1,11 @@
 # Top level makefile, the real shit is at src/Makefile
 
-TARGETS=32bit noopt test
+default: all
 
-all:
+.DEFAULT:
        cd src && $(MAKE) $@
 
-install: dummy
+install:
        cd src && $(MAKE) $@
 
-clean:
-       cd src && $(MAKE) $@
-       cd deps/hiredis && $(MAKE) $@
-       cd deps/linenoise && $(MAKE) $@
-
-$(TARGETS):
-       cd src && $(MAKE) $@
-
-dummy:
+.PHONY: install