diff options
-rw-r--r-- | ChangeLog | 6 | ||||
-rw-r--r-- | Makefile.in | 15 |
2 files changed, 15 insertions, 6 deletions
@@ -1,3 +1,7 @@ | |||
1 | 20030923 | ||
2 | - (dtucker) [configure.ac] Bug #644: Fix "make clean" for out-of-tree | ||
3 | builds. Portability corrections from tim@. | ||
4 | |||
1 | 20030919 | 5 | 20030919 |
2 | - (djm) Bug #683: Remove reference to --with-ipv4-default from INSTALL; | 6 | - (djm) Bug #683: Remove reference to --with-ipv4-default from INSTALL; |
3 | djast AT cs.toronto.edu | 7 | djast AT cs.toronto.edu |
@@ -1133,4 +1137,4 @@ | |||
1133 | - Fix sshd BindAddress and -b options for systems using fake-getaddrinfo. | 1137 | - Fix sshd BindAddress and -b options for systems using fake-getaddrinfo. |
1134 | Report from murple@murple.net, diagnosis from dtucker@zip.com.au | 1138 | Report from murple@murple.net, diagnosis from dtucker@zip.com.au |
1135 | 1139 | ||
1136 | $Id: ChangeLog,v 1.3008 2003/09/19 11:25:23 dtucker Exp $ | 1140 | $Id: ChangeLog,v 1.3009 2003/09/22 00:58:55 dtucker Exp $ |
diff --git a/Makefile.in b/Makefile.in index 8a8774461..4368132e5 100644 --- a/Makefile.in +++ b/Makefile.in | |||
@@ -1,4 +1,4 @@ | |||
1 | # $Id: Makefile.in,v 1.249 2003/09/14 01:40:36 dtucker Exp $ | 1 | # $Id: Makefile.in,v 1.250 2003/09/22 00:58:56 dtucker Exp $ |
2 | 2 | ||
3 | # uncomment if you run a non bourne compatable shell. Ie. csh | 3 | # uncomment if you run a non bourne compatable shell. Ie. csh |
4 | #SHELL = @SH@ | 4 | #SHELL = @SH@ |
@@ -192,20 +192,18 @@ ssh_prng_cmds.out: ssh_prng_cmds | |||
192 | moduli: | 192 | moduli: |
193 | echo | 193 | echo |
194 | 194 | ||
195 | clean: | 195 | clean: regressclean |
196 | rm -f *.o *.a $(TARGETS) logintest config.cache config.log | 196 | rm -f *.o *.a $(TARGETS) logintest config.cache config.log |
197 | rm -f *.out core | 197 | rm -f *.out core |
198 | (cd openbsd-compat && $(MAKE) clean) | 198 | (cd openbsd-compat && $(MAKE) clean) |
199 | (cd regress && $(MAKE) clean) | ||
200 | 199 | ||
201 | distclean: | 200 | distclean: regressclean |
202 | rm -f *.o *.a $(TARGETS) logintest config.cache config.log | 201 | rm -f *.o *.a $(TARGETS) logintest config.cache config.log |
203 | rm -f *.out core | 202 | rm -f *.out core |
204 | rm -f Makefile config.h config.status ssh_prng_cmds *~ | 203 | rm -f Makefile config.h config.status ssh_prng_cmds *~ |
205 | rm -rf autom4te.cache | 204 | rm -rf autom4te.cache |
206 | (cd openbsd-compat && $(MAKE) distclean) | 205 | (cd openbsd-compat && $(MAKE) distclean) |
207 | (cd scard && $(MAKE) distclean) | 206 | (cd scard && $(MAKE) distclean) |
208 | (cd regress && $(MAKE) distclean) | ||
209 | 207 | ||
210 | veryclean: distclean | 208 | veryclean: distclean |
211 | rm -f configure config.h.in *.0 | 209 | rm -f configure config.h.in *.0 |
@@ -373,6 +371,8 @@ uninstall: | |||
373 | tests: $(TARGETS) | 371 | tests: $(TARGETS) |
374 | BUILDDIR=`pwd`; \ | 372 | BUILDDIR=`pwd`; \ |
375 | [ -d `pwd`/regress ] || mkdir -p `pwd`/regress; \ | 373 | [ -d `pwd`/regress ] || mkdir -p `pwd`/regress; \ |
374 | [ -f `pwd`/regress/Makefile ] || \ | ||
375 | ln -s $(srcdir)/regress/Makefile `pwd`/regress/Makefile ; \ | ||
376 | TEST_SSH_SSH="$${BUILDDIR}/ssh"; \ | 376 | TEST_SSH_SSH="$${BUILDDIR}/ssh"; \ |
377 | TEST_SSH_SSHD="$${BUILDDIR}/sshd"; \ | 377 | TEST_SSH_SSHD="$${BUILDDIR}/sshd"; \ |
378 | TEST_SSH_SSHAGENT="$${BUILDDIR}/ssh-agent"; \ | 378 | TEST_SSH_SSHAGENT="$${BUILDDIR}/ssh-agent"; \ |
@@ -398,3 +398,8 @@ tests: $(TARGETS) | |||
398 | TEST_SSH_SFTPSERVER="$${TEST_SSH_SFTPSERVER}" \ | 398 | TEST_SSH_SFTPSERVER="$${TEST_SSH_SFTPSERVER}" \ |
399 | EXEEXT="$(EXEEXT)" \ | 399 | EXEEXT="$(EXEEXT)" \ |
400 | $@ | 400 | $@ |
401 | |||
402 | regressclean: | ||
403 | if [ -f regress/Makefile -a -r regress/Makefile ]; then \ | ||
404 | (cd regress && $(MAKE) clean) \ | ||
405 | fi | ||