From edcd669072bdfccf47020cc6925af2cc620d411c Mon Sep 17 00:00:00 2001 From: Manfred Hollstein Date: Tue, 17 Mar 1998 01:38:14 +0000 Subject: [PATCH] config-ml.in: After building symlink tree call make distclean if... MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit � * 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 --- texinfo/Makefile.in | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/texinfo/Makefile.in b/texinfo/Makefile.in index e9c814fc0ca..40af9cccba1 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