From eaa713e93b6aadf08fda33238670cd3577a7db52 Mon Sep 17 00:00:00 2001 From: antirez Date: Wed, 6 Jul 2016 16:02:38 +0200 Subject: 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. --- deps/Makefile | 7 ------- 1 file changed, 7 deletions(-) (limited to 'deps/Makefile') 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 -- cgit v1.2.1