2000-04-21 Michael Sokolov <msokolov@ivan.Harhan.ORG>
* Makefile.in (*-subdir): Revamp slightly to avoid losing on 4.3BSD systems.
This commit is contained in:
parent
b32711aa6a
commit
19be430370
2 changed files with 9 additions and 3 deletions
|
@ -1,3 +1,8 @@
|
|||
2000-04-21 Michael Sokolov <msokolov@ivan.Harhan.ORG>
|
||||
|
||||
* Makefile.in (*-subdir): Revamp slightly to avoid losing on
|
||||
4.3BSD systems.
|
||||
|
||||
2000-04-05 Richard Henderson <rth@cygnus.com>
|
||||
|
||||
* splay-tree.c (splay_tree_remove): New.
|
||||
|
|
|
@ -244,9 +244,10 @@ all-subdir check-subdir installcheck-subdir info-subdir \
|
|||
install-info-subdir clean-info-subdir dvi-subdir install-subdir \
|
||||
etags-subdir mostlyclean-subdir clean-subdir distclean-subdir \
|
||||
maintainer-clean-subdir:
|
||||
@target=`echo $@ | sed -e 's/-subdir//'`; \
|
||||
for dir in . $(SUBDIRS) ; do \
|
||||
test $$dir = . || (cd $$dir && $(MAKE) $$target) || exit 1; \
|
||||
@if test "x$(SUBDIRS)" = x; then exit 0; fi; \
|
||||
target=`echo $@ | sed -e 's/-subdir//'`; \
|
||||
for dir in $(SUBDIRS) ; do \
|
||||
cd $$dir && $(MAKE) $$target; \
|
||||
done
|
||||
|
||||
$(REQUIRED_OFILES) $(EXTRA_OFILES) $(LIBOBJS) $(ALLOCA): stamp-picdir
|
||||
|
|
Loading…
Reference in a new issue