Changeset 2936b425 in rtems for c/src/make


Ignore:
Timestamp:
01/23/98 17:45:05 (26 years ago)
Author:
Joel Sherrill <joel.sherrill@…>
Branches:
4.10, 4.11, 4.8, 4.9, 5, master
Children:
2ece4496
Parents:
48971e5e
Message:

Solaris port updates from Chris Johns

File:
1 edited

Legend:

Unmodified
Added
Removed
  • c/src/make/directory.cfg

    r48971e5e r2936b425  
    3939ifdef RECURSE_TARGETS
    4040$(RECURSE_TARGETS):
    41         set -e; for subd in $(SUB_DIRS); do $(MAKE) -w -C $$subd $@; done
     41        @$(ECHO) ; set -e ; \
     42        if [ "$(SUB_DIRS)" != "" ] ; then \
     43          sdirs="$(SUB_DIRS)" ; \
     44        else \
     45          sdirs="xxx" ; \
     46        fi ; \
     47        if [ "$$sdirs" != "xxx" ] ; then \
     48          for subd in $$sdirs; do $(MAKE) -w -C $$subd $@; done ;\
     49        fi
    4250endif
    4351endif
     52
Note: See TracChangeset for help on using the changeset viewer.