diff options
-rw-r--r-- | ChangeLog | 3 | ||||
-rw-r--r-- | Makefile.in | 5 |
2 files changed, 5 insertions, 3 deletions
@@ -16,6 +16,7 @@ | |||
16 | [clientloop.c] | 16 | [clientloop.c] |
17 | clear select masks if we return before calling select(). | 17 | clear select masks if we return before calling select(). |
18 | - (djm) "make veryclean" fix from Tom Holroyd <tomh@po.crl.go.jp> | 18 | - (djm) "make veryclean" fix from Tom Holroyd <tomh@po.crl.go.jp> |
19 | - (djm) Clean some autoconf-2.52 junk when doing "make distclean" | ||
19 | 20 | ||
20 | 20011010 | 21 | 20011010 |
21 | - (djm) OpenBSD CVS Sync | 22 | - (djm) OpenBSD CVS Sync |
@@ -6714,4 +6715,4 @@ | |||
6714 | - Wrote replacements for strlcpy and mkdtemp | 6715 | - Wrote replacements for strlcpy and mkdtemp |
6715 | - Released 1.0pre1 | 6716 | - Released 1.0pre1 |
6716 | 6717 | ||
6717 | $Id: ChangeLog,v 1.1604 2001/10/12 02:04:04 djm Exp $ | 6718 | $Id: ChangeLog,v 1.1605 2001/10/12 09:15:27 djm Exp $ |
diff --git a/Makefile.in b/Makefile.in index ee6774785..640fe5abd 100644 --- a/Makefile.in +++ b/Makefile.in | |||
@@ -1,4 +1,4 @@ | |||
1 | # $Id: Makefile.in,v 1.187 2001/10/12 02:04:05 djm Exp $ | 1 | # $Id: Makefile.in,v 1.188 2001/10/12 09:15:28 djm Exp $ |
2 | 2 | ||
3 | prefix=@prefix@ | 3 | prefix=@prefix@ |
4 | exec_prefix=@exec_prefix@ | 4 | exec_prefix=@exec_prefix@ |
@@ -142,13 +142,14 @@ $(CONFIGFILES): $(CONFIGFILES_IN) | |||
142 | 142 | ||
143 | clean: | 143 | clean: |
144 | rm -f *.o *.a $(TARGETS) logintest config.cache config.log | 144 | rm -f *.o *.a $(TARGETS) logintest config.cache config.log |
145 | rm -f *.out core | 145 | rm -f *.out core |
146 | (cd openbsd-compat; $(MAKE) clean) | 146 | (cd openbsd-compat; $(MAKE) clean) |
147 | 147 | ||
148 | distclean: | 148 | distclean: |
149 | rm -f *.o *.a $(TARGETS) logintest config.cache config.log | 149 | rm -f *.o *.a $(TARGETS) logintest config.cache config.log |
150 | rm -f *.out core | 150 | rm -f *.out core |
151 | rm -f Makefile config.h config.status ssh_prng_cmds *~ | 151 | rm -f Makefile config.h config.status ssh_prng_cmds *~ |
152 | rm -rf autom4te.cache | ||
152 | (cd openbsd-compat; $(MAKE) distclean) | 153 | (cd openbsd-compat; $(MAKE) distclean) |
153 | (cd scard; $(MAKE) distclean) | 154 | (cd scard; $(MAKE) distclean) |
154 | 155 | ||