Commit 7277f72d by Michael Sokolov Committed by Jeff Law

Makefile.in (*-subdir): Revamp slightly to avoid losing on 4.3BSD systems.

2000-04-21  Michael Sokolov  <msokolov@ivan.Harhan.ORG>

        * Makefile.in (*-subdir): Revamp slightly to avoid losing on
        4.3BSD systems.

From-SVN: r33329
parent 6cd167e1
2000-04-21 Michael Sokolov <msokolov@ivan.Harhan.ORG>
* Makefile.in (*-subdir): Revamp slightly to avoid losing on
4.3BSD systems.
Tue Apr 18 16:23:31 2000 Richard Kenner <kenner@vlsi1.ultra.nyu.edu> Tue Apr 18 16:23:31 2000 Richard Kenner <kenner@vlsi1.ultra.nyu.edu>
* hashtab.c: Various minor cleanups. * hashtab.c: Various minor cleanups.
......
...@@ -244,9 +244,10 @@ all-subdir check-subdir installcheck-subdir info-subdir \ ...@@ -244,9 +244,10 @@ all-subdir check-subdir installcheck-subdir info-subdir \
install-info-subdir clean-info-subdir dvi-subdir install-subdir \ install-info-subdir clean-info-subdir dvi-subdir install-subdir \
etags-subdir mostlyclean-subdir clean-subdir distclean-subdir \ etags-subdir mostlyclean-subdir clean-subdir distclean-subdir \
maintainer-clean-subdir: maintainer-clean-subdir:
@target=`echo $@ | sed -e 's/-subdir//'`; \ @if test "x$(SUBDIRS)" = x; then exit 0; fi; \
for dir in . $(SUBDIRS) ; do \ target=`echo $@ | sed -e 's/-subdir//'`; \
test $$dir = . || (cd $$dir && $(MAKE) $$target) || exit 1; \ for dir in $(SUBDIRS) ; do \
cd $$dir && $(MAKE) $$target; \
done done
$(REQUIRED_OFILES) $(EXTRA_OFILES) $(LIBOBJS) $(ALLOCA): stamp-picdir $(REQUIRED_OFILES) $(EXTRA_OFILES) $(LIBOBJS) $(ALLOCA): stamp-picdir
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment