diff options
-rw-r--r-- | ChangeLog | 5 | ||||
-rw-r--r-- | Makefile.in | 5 |
2 files changed, 7 insertions, 3 deletions
@@ -1,3 +1,6 @@ | |||
1 | 20030905 | ||
2 | - (dtucker) [Makefile.in] Add distclean target for regress/, fix clean target. | ||
3 | |||
1 | 20030904 | 4 | 20030904 |
2 | - (dtucker) Portablize regression tests. Parts contributed by Roumen | 5 | - (dtucker) Portablize regression tests. Parts contributed by Roumen |
3 | Petrov, David M. Williams and Corinna Vinschen. | 6 | Petrov, David M. Williams and Corinna Vinschen. |
@@ -1018,4 +1021,4 @@ | |||
1018 | - Fix sshd BindAddress and -b options for systems using fake-getaddrinfo. | 1021 | - Fix sshd BindAddress and -b options for systems using fake-getaddrinfo. |
1019 | Report from murple@murple.net, diagnosis from dtucker@zip.com.au | 1022 | Report from murple@murple.net, diagnosis from dtucker@zip.com.au |
1020 | 1023 | ||
1021 | $Id: ChangeLog,v 1.2960 2003/09/04 12:06:16 dtucker Exp $ | 1024 | $Id: ChangeLog,v 1.2961 2003/09/05 01:35:52 dtucker Exp $ |
diff --git a/Makefile.in b/Makefile.in index 29b878bb1..59ebeea59 100644 --- a/Makefile.in +++ b/Makefile.in | |||
@@ -1,4 +1,4 @@ | |||
1 | # $Id: Makefile.in,v 1.245 2003/09/04 12:06:16 dtucker Exp $ | 1 | # $Id: Makefile.in,v 1.246 2003/09/05 01:35:52 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@ |
@@ -195,7 +195,7 @@ clean: | |||
195 | rm -f *.o *.a $(TARGETS) logintest config.cache config.log | 195 | rm -f *.o *.a $(TARGETS) logintest config.cache config.log |
196 | rm -f *.out core | 196 | rm -f *.out core |
197 | (cd openbsd-compat && $(MAKE) clean) | 197 | (cd openbsd-compat && $(MAKE) clean) |
198 | (cd $(srcdir)/regress && $(MAKE) $@) | 198 | (cd regress && $(MAKE) clean) |
199 | 199 | ||
200 | distclean: | 200 | distclean: |
201 | rm -f *.o *.a $(TARGETS) logintest config.cache config.log | 201 | rm -f *.o *.a $(TARGETS) logintest config.cache config.log |
@@ -204,6 +204,7 @@ distclean: | |||
204 | rm -rf autom4te.cache | 204 | rm -rf autom4te.cache |
205 | (cd openbsd-compat && $(MAKE) distclean) | 205 | (cd openbsd-compat && $(MAKE) distclean) |
206 | (cd scard && $(MAKE) distclean) | 206 | (cd scard && $(MAKE) distclean) |
207 | (cd regress && $(MAKE) distclean) | ||
207 | 208 | ||
208 | veryclean: distclean | 209 | veryclean: distclean |
209 | rm -f configure config.h.in *.0 | 210 | rm -f configure config.h.in *.0 |