summaryrefslogtreecommitdiff
path: root/texinfo
diff options
context:
space:
mode:
authormanfred <manfred@138bc75d-0d04-0410-961f-82ee72b054a4>1998-03-17 01:38:14 +0000
committermanfred <manfred@138bc75d-0d04-0410-961f-82ee72b054a4>1998-03-17 01:38:14 +0000
commit441acb29ac897923d3b27b8b73176272abaaf42f (patch)
treec9b7544e06506b19c639a352dec8d01a5d468d5a /texinfo
parenta4cbc8004ef758da4784ef289fd001a875b21965 (diff)
downloadgcc-441acb29ac897923d3b27b8b73176272abaaf42f.tar.gz
* 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. git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@18645 138bc75d-0d04-0410-961f-82ee72b054a4
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 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