summaryrefslogtreecommitdiff
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 b6190e826..b7ea04486 100644
--- a/Makefile.in
+++ b/Makefile.in
@@ -1,4 +1,4 @@
1# $Id: Makefile.in,v 1.181 2001/07/04 05:40:20 mouring Exp $ 1# $Id: Makefile.in,v 1.182 2001/07/14 03:07:43 djm Exp $
2 2
3prefix=@prefix@ 3prefix=@prefix@
4exec_prefix=@exec_prefix@ 4exec_prefix=@exec_prefix@
@@ -140,19 +140,25 @@ $(CONFIGFILES): $(CONFIGFILES_IN)
140 $(FIXPATHSCMD) $(srcdir)/$${conffile} > $@ 140 $(FIXPATHSCMD) $(srcdir)/$${conffile} > $@
141 141
142clean: 142clean:
143 (cd openbsd-compat; $(MAKE) clean)
144 rm -f *.o *.a $(TARGETS) logintest config.cache config.log 143 rm -f *.o *.a $(TARGETS) logintest config.cache config.log
145 rm -f *.out core 144 rm -f *.out core
145 (cd openbsd-compat; $(MAKE) clean)
146 146
147distclean: clean 147distclean:
148 rm -f *.o *.a $(TARGETS) logintest config.cache config.log
149 rm -f *.out core
150 rm -f Makefile config.h config.status ssh_prng_cmds *~
148 (cd openbsd-compat; $(MAKE) distclean) 151 (cd openbsd-compat; $(MAKE) distclean)
152
153veryclean:
154 rm -f configure config.h.in *.0
155 rm -f *.o *.a $(TARGETS) logintest config.cache config.log
156 rm -f *.out core
149 rm -f Makefile config.h config.status ssh_prng_cmds *~ 157 rm -f Makefile config.h config.status ssh_prng_cmds *~
158 (cd openbsd-compat; $(MAKE) distclean)
150 159
151mrproper: distclean 160mrproper: distclean
152 161
153veryclean: distclean
154 rm -f configure config.h.in *.0
155
156catman-do: 162catman-do:
157 @for f in $(MANPAGES_IN) ; do \ 163 @for f in $(MANPAGES_IN) ; do \
158 base=`echo $$f | sed 's/\..*$$//'` ; \ 164 base=`echo $$f | sed 's/\..*$$//'` ; \