X-Git-Url: https://git.saurik.com/redis.git/blobdiff_plain/ba798261ce70a866d347978e942e35292da1f6a2..dbaa41c618346be2ab58dfbab0a35e3ff1948ed1:/Makefile diff --git a/Makefile b/Makefile index c24e2780..b7dfb1cd 100644 --- a/Makefile +++ b/Makefile @@ -2,6 +2,7 @@ # Copyright (C) 2009 Salvatore Sanfilippo # This file is released under the BSD license, see the COPYING file +release_hdr := $(shell sh -c './mkreleasehdr.sh') uname_S := $(shell sh -c 'uname -s 2>/dev/null || echo not') OPTIMIZATION?=-O2 ifeq ($(uname_S),SunOS) @@ -13,8 +14,6 @@ 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 sha1.o BENCHOBJ = ae.o anet.o redis-benchmark.o sds.o adlist.o zmalloc.o @@ -53,16 +52,13 @@ redis-cli.o: redis-cli.c fmacros.h anet.h sds.h adlist.h zmalloc.h \ redis.o: redis.c fmacros.h config.h redis.h ae.h sds.h anet.h dict.h \ adlist.h zmalloc.h lzf.h pqsort.h zipmap.h staticsymbols.h sha1.h sds.o: sds.c sds.h zmalloc.h -test.o: test.c dict2.h zipmap.o: zipmap.c zmalloc.h zmalloc.o: zmalloc.c config.h redis-server: $(OBJ) $(CC) -o $(PRGNAME) $(CCOPT) $(DEBUG) $(OBJ) @echo "" - @echo "Hint: To run the test-redis.tcl script is a good idea." - @echo "Launch the redis server with ./redis-server, then in another" - @echo "terminal window enter this directory and run 'make test'." + @echo "Hint: To run 'make test' is a good idea ;)" @echo "" redis-benchmark: $(BENCHOBJ) @@ -90,7 +86,7 @@ staticsymbols: tclsh utils/build-static-symbols.tcl > staticsymbols.h test: - tclsh8.5 test-redis.tcl -p $(PORT) -h $(HOST) + tclsh8.5 tests/test_helper.tcl bench: ./redis-benchmark