From f640a744f856b78576386db15856bacb1d2f449a Mon Sep 17 00:00:00 2001 From: Trond Norbye Date: Fri, 13 Mar 2009 11:13:13 +0100 Subject: [PATCH] Preserve the make invoked for test, test-extended and valgrind make target --- Makefile.am | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/Makefile.am b/Makefile.am index b864c31d..b342d866 100644 --- a/Makefile.am +++ b/Makefile.am @@ -3,13 +3,13 @@ SUBDIRS = docs libmemcached tests support clients EXTRA_dist = README.FIRST test: all - cd tests; make test; cd .. + @(cd tests; ${MAKE} test) test-extended: all - cd tests; make test-extended; cd .. + @(cd tests; ${MAKE} test-extended) valgrind: - cd tests; make valgrind; cd .. + @(cd tests; ${MAKE} valgrind) rpm: all dist cp libmemcached-$(VERSION).tar.gz /home/brian/rpm/SOURCES/ -- 2.30.2