diff options
author | Tim Rice <tim@multitalents.net> | 2010-11-07 13:00:27 -0800 |
---|---|---|
committer | Tim Rice <tim@multitalents.net> | 2010-11-07 13:00:27 -0800 |
commit | 522262f8b328e6d5951bf2a77f22080bdc123f04 (patch) | |
tree | b1fe243988d13fd9e38c118fb1db879563841022 | |
parent | d1ece6e4a274df0447ad278f729c6f32b8e4a5e5 (diff) |
- (tim) [regress/Makefile] Fixes to allow building/testing outside source
tree.
-rw-r--r-- | ChangeLog | 4 | ||||
-rw-r--r-- | regress/Makefile | 18 |
2 files changed, 13 insertions, 9 deletions
@@ -1,3 +1,7 @@ | |||
1 | 20101108 | ||
2 | - (tim) [regress/Makefile] Fixes to allow building/testing outside source | ||
3 | tree. | ||
4 | |||
1 | 20101107 | 5 | 20101107 |
2 | - (dtucker) [platform.c] includes.h instead of defines.h so that we get | 6 | - (dtucker) [platform.c] includes.h instead of defines.h so that we get |
3 | the correct typedefs. | 7 | 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 | |||
118 | ssh-keygen -lf $(OBJ)/t7.out > /dev/null | 118 | ssh-keygen -lf $(OBJ)/t7.out > /dev/null |
119 | ssh-keygen -Bf $(OBJ)/t7.out > /dev/null | 119 | ssh-keygen -Bf $(OBJ)/t7.out > /dev/null |
120 | 120 | ||
121 | t8.out: | 121 | $(OBJ)/t8.out: |
122 | ssh-keygen -q -t dsa -N '' -f $@ | 122 | ssh-keygen -q -t dsa -N '' -f $@ |
123 | 123 | ||
124 | t8: t8.out | 124 | t8: $(OBJ)/t8.out |
125 | ssh-keygen -lf t8.out > /dev/null | 125 | ssh-keygen -lf $(OBJ)/t8.out > /dev/null |
126 | ssh-keygen -Bf t8.out > /dev/null | 126 | ssh-keygen -Bf $(OBJ)/t8.out > /dev/null |
127 | 127 | ||
128 | t9.out: | 128 | $(OBJ)/t9.out: |
129 | test "${TEST_SSH_ECC}" != yes || \ | 129 | test "${TEST_SSH_ECC}" != yes || \ |
130 | ssh-keygen -q -t ecdsa -N '' -f | 130 | ssh-keygen -q -t ecdsa -N '' -f $@ |
131 | 131 | ||
132 | t9: t9.out | 132 | t9: $(OBJ)/t9.out |
133 | test "${TEST_SSH_ECC}" != yes || \ | 133 | test "${TEST_SSH_ECC}" != yes || \ |
134 | ssh-keygen -lf t9.out > /dev/null | 134 | ssh-keygen -lf $(OBJ)/t9.out > /dev/null |
135 | test "${TEST_SSH_ECC}" != yes || \ | 135 | test "${TEST_SSH_ECC}" != yes || \ |
136 | ssh-keygen -Bf t9.out > /dev/null | 136 | ssh-keygen -Bf $(OBJ)/t9.out > /dev/null |
137 | 137 | ||
138 | t-exec: ${LTESTS:=.sh} | 138 | t-exec: ${LTESTS:=.sh} |
139 | @if [ "x$?" = "x" ]; then exit 0; fi; \ | 139 | @if [ "x$?" = "x" ]; then exit 0; fi; \ |