diff options
author | Pieter Noordhuis <pcnoordhuis@gmail.com> | 2010-11-21 16:44:17 +0100 |
---|---|---|
committer | Pieter Noordhuis <pcnoordhuis@gmail.com> | 2010-11-21 16:44:17 +0100 |
commit | a4e48b417da1c14e5757296742069121882ddfcf (patch) | |
tree | 0cc975f41a2c4ce5cd56389e422ddd61a8867faf /deps | |
parent | bd70a5f5884ec46983ac32a1ae0b48f4d356a9d5 (diff) | |
download | redis-a4e48b417da1c14e5757296742069121882ddfcf.tar.gz |
Don't hardcode make to "make"
Diffstat (limited to 'deps')
-rw-r--r-- | deps/hiredis/Makefile | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/deps/hiredis/Makefile b/deps/hiredis/Makefile index 2ae73d4f2..3c4b6ce28 100644 --- a/deps/hiredis/Makefile +++ b/deps/hiredis/Makefile @@ -90,13 +90,13 @@ install: ${DYLIBNAME} ${STLIBNAME} @echo "" @echo "WARNING: if it fails under Linux you probably need to install libc6-dev-i386" @echo "" - make ARCH="-m32" + $(MAKE) ARCH="-m32" gprof: - make PROF="-pg" + $(MAKE) PROF="-pg" gcov: - make PROF="-fprofile-arcs -ftest-coverage" + $(MAKE) PROF="-fprofile-arcs -ftest-coverage" noopt: - make OPTIMIZATION="" + $(MAKE) OPTIMIZATION="" |