summaryrefslogtreecommitdiff
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
parent0ae6e009c8c6c61e16407b906ee80714daf61037 (diff)
- (djm) Reorder Makefile.in so clean targets work a little better when
run directly from Makefile.in
-rw-r--r--ChangeLog4
-rw-r--r--Makefile.in18
2 files changed, 15 insertions, 7 deletions
diff --git a/ChangeLog b/ChangeLog
index 0f00e72e3..7f6408f9f 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -47,6 +47,8 @@
47 [auth.c] 47 [auth.c]
48 no need to call dirname(pw->pw_dir). 48 no need to call dirname(pw->pw_dir).
49 note that dirname(3) modifies its argument on some systems. 49 note that dirname(3) modifies its argument on some systems.
50 - (djm) Reorder Makefile.in so clean targets work a little better when
51 run directly from Makefile.in
50 52
5120010711 5320010711
52 - (djm) dirname(3) may modify its argument on glibc and other systems. 54 - (djm) dirname(3) may modify its argument on glibc and other systems.
@@ -6022,4 +6024,4 @@
6022 - Wrote replacements for strlcpy and mkdtemp 6024 - Wrote replacements for strlcpy and mkdtemp
6023 - Released 1.0pre1 6025 - Released 1.0pre1
6024 6026
6025$Id: ChangeLog,v 1.1397 2001/07/14 02:21:34 djm Exp $ 6027$Id: ChangeLog,v 1.1398 2001/07/14 03:07:44 djm Exp $
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/\..*$$//'` ; \