Show
Ignore:
Timestamp:
02/21/08 11:40:18 (10 months ago)
Author:
jpgrayson
Message:

More robust make recursion. Thanks Pete Ross.

Files:
1 modified

Legend:

Unmodified
Added
Removed
  • portaudio/branches/v19-devel/Makefile.in

    r1309 r1351  
    204204 
    205205all-recursive: 
    206         for dir in $(SUBDIRS); do make -C $$dir all; done 
     206        if test -n "$(SUBDIRS)" ; then for dir in "$(SUBDIRS)"; do $(MAKE) -C $$dir all; done ; fi 
    207207 
    208208install-recursive: 
    209         for dir in $(SUBDIRS); do make -C $$dir install; done 
     209        if test -n "$(SUBDIRS)" ; then for dir in "$(SUBDIRS)"; do $(MAKE) -C $$dir install; done ; fi 
    210210 
    211211uninstall-recursive: 
    212         for dir in $(SUBDIRS); do make -C $$dir uninstall; done 
     212        if test -n "$(SUBDIRS)" ; then for dir in "$(SUBDIRS)"; do $(MAKE)-C $$dir uninstall; done ; fi