diff options
author | Yossi Gottlieb <yossigo@gmail.com> | 2013-02-25 21:14:09 +0200 |
---|---|---|
committer | Yossi Gottlieb <yossigo@gmail.com> | 2013-02-25 21:14:09 +0200 |
commit | 1a6f05c5a00a4eef852c09256e2f664bce297e93 (patch) | |
tree | 29df53a44b82d8ebb9fa876c96cdc364e4d87677 /src/Makefile | |
parent | acb73e8a972adadd31450dca9ab8cf74cc82a029 (diff) | |
parent | 948fdb5f7d20ccd795e8750f60d205022fcee410 (diff) | |
download | redis-2.6.10-1.tar.gz |
Merge upstream 2.6.10.2.6.10-1
Diffstat (limited to 'src/Makefile')
-rwxr-xr-x | src/Makefile | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/src/Makefile b/src/Makefile index ebf5786e2..7a553d030 100755 --- a/src/Makefile +++ b/src/Makefile @@ -241,7 +241,10 @@ gcov: $(MAKE) REDIS_CFLAGS="-fprofile-arcs -ftest-coverage -DCOVERAGE_TEST" REDIS_LDFLAGS="-fprofile-arcs -ftest-coverage" noopt: - $(MAKE) OPT="-O0" + $(MAKE) OPTIMIZATION="-O0" + +valgrind: + $(MAKE) OPTIMIZATION="-O0" MALLOC="libc" src/help.h: @$(SRCDIR)/../utils/generate-command-help.rb > help.h |