]> git.ipfire.org Git - thirdparty/gcc.git/commitdiff
config-ml.in: After building symlink tree call make distclean if...
authorManfred Hollstein <manfred@gcc.gnu.org>
Tue, 17 Mar 1998 01:38:14 +0000 (01:38 +0000)
committerManfred Hollstein <manfred@gcc.gnu.org>
Tue, 17 Mar 1998 01:38:14 +0000 (01:38 +0000)

* 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

index e9c814fc0cae7bc8e69dca64095193ba004059f6..40af9cccba1bb02d3f93684268b78f6a58774f6a 100644 (file)
@@ -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