summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDamien Miller <djm@mindrot.org>2003-05-15 13:23:07 +1000
committerDamien Miller <djm@mindrot.org>2003-05-15 13:23:07 +1000
commita47f526dd7a10aeefb9bba577e91376de01a6a6c (patch)
treea66d654b8c402a99f4c8b4ec0962fc4fbf259aa4
parentd9ec370ac3a27fc9374c4182b7477ec0fc8473f4 (diff)
- (djm) Tidy Makefile clean targets
-rw-r--r--ChangeLog3
-rw-r--r--Makefile.in13
2 files changed, 7 insertions, 9 deletions
diff --git a/ChangeLog b/ChangeLog
index 8df246159..31948be5b 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -22,6 +22,7 @@
22 - (djm) Always parse UsePAM 22 - (djm) Always parse UsePAM
23 - (djm) Configure glue for DNS support (code doesn't work in portable yet) 23 - (djm) Configure glue for DNS support (code doesn't work in portable yet)
24 - (djm) Import getrrsetbyname() function from OpenBSD libc (for DNS support) 24 - (djm) Import getrrsetbyname() function from OpenBSD libc (for DNS support)
25 - (djm) Tidy Makefile clean targets
25 26
2620030514 2720030514
27 - (djm) Bug #117: Don't lie to PAM about username 28 - (djm) Bug #117: Don't lie to PAM about username
@@ -1497,4 +1498,4 @@
1497 save auth method before monitor_reset_key_state(); bugzilla bug #284; 1498 save auth method before monitor_reset_key_state(); bugzilla bug #284;
1498 ok provos@ 1499 ok provos@
1499 1500
1500$Id: ChangeLog,v 1.2707 2003/05/15 02:27:08 djm Exp $ 1501$Id: ChangeLog,v 1.2708 2003/05/15 03:23:07 djm Exp $
diff --git a/Makefile.in b/Makefile.in
index f25fe0ae5..5758d0dbe 100644
--- a/Makefile.in
+++ b/Makefile.in
@@ -1,4 +1,4 @@
1# $Id: Makefile.in,v 1.233 2003/05/15 00:19:46 djm Exp $ 1# $Id: Makefile.in,v 1.234 2003/05/15 03:23:07 djm 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@
@@ -198,15 +198,12 @@ distclean:
198 (cd openbsd-compat && $(MAKE) distclean) 198 (cd openbsd-compat && $(MAKE) distclean)
199 (cd scard && $(MAKE) distclean) 199 (cd scard && $(MAKE) distclean)
200 200
201veryclean: 201veryclean: distclean
202 rm -f configure config.h.in *.0 202 rm -f configure config.h.in *.0
203 rm -f *.o *.a $(TARGETS) logintest config.cache config.log
204 rm -f *.out core
205 rm -f Makefile config.h config.status ssh_prng_cmds *~
206 (cd openbsd-compat && $(MAKE) distclean)
207 (cd scard && $(MAKE) distclean)
208 203
209mrproper: distclean 204mrproper: veryclean
205
206realclean: veryclean
210 207
211catman-do: 208catman-do:
212 @for f in $(MANPAGES_IN) ; do \ 209 @for f in $(MANPAGES_IN) ; do \