summaryrefslogtreecommitdiffstats
path: root/Makefile.in
diff options
context:
space:
mode:
authorDamien Miller <djm@mindrot.org>2001-07-14 13:07:43 +1000
committerDamien Miller <djm@mindrot.org>2001-07-14 13:07:43 +1000
commit8f6bc30a4b23fb07ca3aca01a745f070a2129760 (patch)
tree037ae4ea0153e5446e2fc844950c5a13f6b6d127 /Makefile.in
parent0ae6e009c8c6c61e16407b906ee80714daf61037 (diff)
- (djm) Reorder Makefile.in so clean targets work a little better when
run directly from Makefile.in
Diffstat (limited to 'Makefile.in')
-rw-r--r--Makefile.in18
1 files changed, 12 insertions, 6 deletions
diff --git a/Makefile.in b/Makefile.in
index b6190e82..b7ea0448 100644
--- a/Makefile.in
+++ b/Makefile.in
@@ -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
+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/\..*$$//'` ; \