]> git.saurik.com Git - redis.git/blobdiff - Makefile
Fix overflow in mstime() in redis-cli and benchmark.
[redis.git] / Makefile
index 8f811b7b7736883311785af0b1eda7439c92a30f..e614ede891f2dd183a3ae41ea1ac3b63fe2e7634 100644 (file)
--- a/Makefile
+++ b/Makefile
@@ -1,16 +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) $@
 
-$(TARGETS) clean:
-       cd src && $(MAKE) $@
-       cd deps/hiredis && $(MAKE) $@
-       cd deps/linenoise && $(MAKE) $@
-
-dummy:
+.PHONY: install