From: Manfred Hollstein Date: Tue, 17 Mar 1998 01:38:14 +0000 (+0000) Subject: config-ml.in: After building symlink tree call make distclean if... X-Git-Tag: prereleases/egcs-1.1-prerelease~2072 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=edcd669072bdfccf47020cc6925af2cc620d411c;p=thirdparty%2Fgcc.git 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 --- diff --git a/texinfo/Makefile.in b/texinfo/Makefile.in index e9c814fc0cae..40af9cccba1b 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