From 522262f8b328e6d5951bf2a77f22080bdc123f04 Mon Sep 17 00:00:00 2001 From: Tim Rice Date: Sun, 7 Nov 2010 13:00:27 -0800 Subject: - (tim) [regress/Makefile] Fixes to allow building/testing outside source tree. --- ChangeLog | 4 ++++ regress/Makefile | 18 +++++++++--------- 2 files changed, 13 insertions(+), 9 deletions(-) diff --git a/ChangeLog b/ChangeLog index d02a2dabf..ca87f0902 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,7 @@ +20101108 + - (tim) [regress/Makefile] Fixes to allow building/testing outside source + tree. + 20101107 - (dtucker) [platform.c] includes.h instead of defines.h so that we get the correct typedefs. diff --git a/regress/Makefile b/regress/Makefile index d5668f08f..d80b04ea8 100644 --- a/regress/Makefile +++ b/regress/Makefile @@ -118,22 +118,22 @@ t7: $(OBJ)/t7.out ssh-keygen -lf $(OBJ)/t7.out > /dev/null ssh-keygen -Bf $(OBJ)/t7.out > /dev/null -t8.out: +$(OBJ)/t8.out: ssh-keygen -q -t dsa -N '' -f $@ -t8: t8.out - ssh-keygen -lf t8.out > /dev/null - ssh-keygen -Bf t8.out > /dev/null +t8: $(OBJ)/t8.out + ssh-keygen -lf $(OBJ)/t8.out > /dev/null + ssh-keygen -Bf $(OBJ)/t8.out > /dev/null -t9.out: +$(OBJ)/t9.out: test "${TEST_SSH_ECC}" != yes || \ - ssh-keygen -q -t ecdsa -N '' -f + ssh-keygen -q -t ecdsa -N '' -f $@ -t9: t9.out +t9: $(OBJ)/t9.out test "${TEST_SSH_ECC}" != yes || \ - ssh-keygen -lf t9.out > /dev/null + ssh-keygen -lf $(OBJ)/t9.out > /dev/null test "${TEST_SSH_ECC}" != yes || \ - ssh-keygen -Bf t9.out > /dev/null + ssh-keygen -Bf $(OBJ)/t9.out > /dev/null t-exec: ${LTESTS:=.sh} @if [ "x$?" = "x" ]; then exit 0; fi; \ -- cgit v1.2.3