Changeset 2936b425 in rtems for c/src/make
- Timestamp:
- 01/23/98 17:45:05 (26 years ago)
- Branches:
- 4.10, 4.11, 4.8, 4.9, 5, master
- Children:
- 2ece4496
- Parents:
- 48971e5e
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
c/src/make/directory.cfg
r48971e5e r2936b425 39 39 ifdef RECURSE_TARGETS 40 40 $(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 42 50 endif 43 51 endif 52
Note: See TracChangeset
for help on using the changeset viewer.