- (djm) Reorder Makefile.in so clean targets work a little better when

run directly from Makefile.in
This commit is contained in:
Damien Miller 2001-07-14 13:07:43 +10:00
parent 0ae6e009c8
commit 8f6bc30a4b
2 changed files with 16 additions and 8 deletions

View File

@ -47,6 +47,8 @@
[auth.c]
no need to call dirname(pw->pw_dir).
note that dirname(3) modifies its argument on some systems.
- (djm) Reorder Makefile.in so clean targets work a little better when
run directly from Makefile.in
20010711
- (djm) dirname(3) may modify its argument on glibc and other systems.
@ -6022,4 +6024,4 @@
- Wrote replacements for strlcpy and mkdtemp
- Released 1.0pre1
$Id: ChangeLog,v 1.1397 2001/07/14 02:21:34 djm Exp $
$Id: ChangeLog,v 1.1398 2001/07/14 03:07:44 djm Exp $

View File

@ -1,4 +1,4 @@
# $Id: Makefile.in,v 1.181 2001/07/04 05:40:20 mouring Exp $
# $Id: Makefile.in,v 1.182 2001/07/14 03:07:43 djm Exp $
prefix=@prefix@
exec_prefix=@exec_prefix@
@ -140,19 +140,25 @@ $(CONFIGFILES): $(CONFIGFILES_IN)
$(FIXPATHSCMD) $(srcdir)/$${conffile} > $@
clean:
(cd openbsd-compat; $(MAKE) clean)
rm -f *.o *.a $(TARGETS) logintest config.cache config.log
rm -f *.out core
(cd openbsd-compat; $(MAKE) clean)
distclean: clean
(cd openbsd-compat; $(MAKE) distclean)
distclean:
rm -f *.o *.a $(TARGETS) logintest config.cache config.log
rm -f *.out core
rm -f Makefile config.h config.status ssh_prng_cmds *~
(cd openbsd-compat; $(MAKE) distclean)
veryclean:
rm -f configure config.h.in *.0
rm -f *.o *.a $(TARGETS) logintest config.cache config.log
rm -f *.out core
rm -f Makefile config.h config.status ssh_prng_cmds *~
(cd openbsd-compat; $(MAKE) distclean)
mrproper: distclean
veryclean: distclean
rm -f configure config.h.in *.0
catman-do:
@for f in $(MANPAGES_IN) ; do \
base=`echo $$f | sed 's/\..*$$//'` ; \