X-Git-Url: https://git.saurik.com/redis.git/blobdiff_plain/5413c40da79d06b53b276b5358e04706a2738e9b..16fa22f12b61d7da44145cb8cf48ea7f7c454200:/Makefile?ds=inline diff --git a/Makefile b/Makefile index 995bd8bc..aea43f1d 100644 --- a/Makefile +++ b/Makefile @@ -13,6 +13,8 @@ else endif CCOPT= $(CFLAGS) $(CCLINK) $(ARCH) $(PROF) DEBUG?= -g -rdynamic -ggdb +HOST?= 127.0.0.1 +PORT?= 6379 OBJ = adlist.o ae.o anet.o dict.o redis.o sds.o zmalloc.o lzf_c.o lzf_d.o pqsort.o zipmap.o BENCHOBJ = ae.o anet.o redis-benchmark.o sds.o adlist.o zmalloc.o @@ -79,7 +81,7 @@ staticsymbols: tclsh utils/build-static-symbols.tcl > staticsymbols.h test: - tclsh test-redis.tcl + tclsh test-redis.tcl -p $(PORT) -h $(HOST) bench: ./redis-benchmark