summaryrefslogtreecommitdiff
path: root/deps/Makefile
diff options
context:
space:
mode:
authorantirez <antirez@gmail.com>2016-07-06 16:02:38 +0200
committerantirez <antirez@gmail.com>2016-07-06 16:02:38 +0200
commiteaa713e93b6aadf08fda33238670cd3577a7db52 (patch)
treed08c1ab5df92bfc29c93428453ad9f583da2715a /deps/Makefile
parent4a140d320f7a8e1a63f9c3ca588f61f21838f3ac (diff)
downloadredis-eaa713e93b6aadf08fda33238670cd3577a7db52.tar.gz
geohash.c and geohash_helper.c are part of Redis.
They were under /deps since they originate from a different source tree, however at this point they are very modified and we took ownership of both the files making changes, fixing bugs, so there is no upgrade path from the original code tree. Given that, better to move the code under /src with proper dependencies and with a more simpler editing experience.
Diffstat (limited to 'deps/Makefile')
-rw-r--r--deps/Makefile7
1 files changed, 0 insertions, 7 deletions
diff --git a/deps/Makefile b/deps/Makefile
index 1c10bce9e..e148a331c 100644
--- a/deps/Makefile
+++ b/deps/Makefile
@@ -36,7 +36,6 @@ distclean:
-(cd hiredis && $(MAKE) clean) > /dev/null || true
-(cd linenoise && $(MAKE) clean) > /dev/null || true
-(cd lua && $(MAKE) clean) > /dev/null || true
- -(cd geohash-int && $(MAKE) clean) > /dev/null || true
-(cd jemalloc && [ -f Makefile ] && $(MAKE) distclean) > /dev/null || true
-(rm -f .make-*)
@@ -82,9 +81,3 @@ jemalloc: .make-prerequisites
cd jemalloc && $(MAKE) CFLAGS="$(JEMALLOC_CFLAGS)" LDFLAGS="$(JEMALLOC_LDFLAGS)" lib/libjemalloc.a
.PHONY: jemalloc
-
-geohash-int: .make-prerequisites
- @printf '%b %b\n' $(MAKECOLOR)MAKE$(ENDCOLOR) $(BINCOLOR)$@$(ENDCOLOR)
- cd geohash-int && $(MAKE)
-
-.PHONY: geohash-int