aboutsummaryrefslogtreecommitdiff
path: root/texinfo
diff options
context:
space:
mode:
authorManfred Hollstein <manfred@gcc.gnu.org>1998-03-17 01:38:14 +0000
committerManfred Hollstein <manfred@gcc.gnu.org>1998-03-17 01:38:14 +0000
commitedcd669072bdfccf47020cc6925af2cc620d411c (patch)
treec9b7544e06506b19c639a352dec8d01a5d468d5a /texinfo
parent7d6af352b913b33434ffd75a7d8fdcbcafaffcb7 (diff)
downloadgcc-edcd669072bdfccf47020cc6925af2cc620d411c.zip
gcc-edcd669072bdfccf47020cc6925af2cc620d411c.tar.gz
gcc-edcd669072bdfccf47020cc6925af2cc620d411c.tar.bz2
config-ml.in: After building symlink tree call make distclean if...
� * config-ml.in: After building symlink tree call make distclean if a Makefile got linked into ${ml_dir}/${ml_libdir}; this happens to be the case for libiberty. * Makefile.in (clean, distclean): Add 'info' explicitly. From-SVN: r18645
Diffstat (limited to 'texinfo')
-rw-r--r--texinfo/Makefile.in4
1 files changed, 2 insertions, 2 deletions
diff --git a/texinfo/Makefile.in b/texinfo/Makefile.in
index e9c814f..40af9cc 100644
--- a/texinfo/Makefile.in
+++ b/texinfo/Makefile.in
@@ -115,14 +115,14 @@ stmp-sub-all:
touch stmp-sub-all
clean mostlyclean:
- for dir in $(SUBDIRS); do \
+ for dir in $(SUBDIRS) info; do \
echo making $@ in $$dir; \
(cd $$dir && $(MAKE) $(MDEFINES) $@ || exit 1); \
done
-rm -f stmp*
distclean: clean texclean
- for dir in $(SUBDIRS); do \
+ for dir in $(SUBDIRS) info; do \
echo making $@ in $$dir; \
(cd $$dir && $(MAKE) $(MDEFINES) $@ || exit 1); \
done