[complement-svn] SF.net SVN: complement: [1492] trunk/complement/explore/Makefiles/gmake/ subdirs.m
Status: Pre-Alpha
Brought to you by:
complement
From: <com...@us...> - 2007-01-31 13:08:02
|
Revision: 1492 http://svn.sourceforge.net/complement/?rev=1492&view=rev Author: complement Date: 2007-01-31 05:07:59 -0800 (Wed, 31 Jan 2007) Log Message: ----------- use parameter, not predefined var Modified Paths: -------------- trunk/complement/explore/Makefiles/gmake/subdirs.mak Modified: trunk/complement/explore/Makefiles/gmake/subdirs.mak =================================================================== --- trunk/complement/explore/Makefiles/gmake/subdirs.mak 2007-01-31 13:06:27 UTC (rev 1491) +++ trunk/complement/explore/Makefiles/gmake/subdirs.mak 2007-01-31 13:07:59 UTC (rev 1492) @@ -6,18 +6,9 @@ # Licensed under the Academic Free License version 3.0 # -ifdef SUBDIRS -# Do the same target in all catalogs from SUBDIRS +# Do the same target in all catalogs as arg define doinsubdirs -@for d in ${SUBDIRS}; do \ - ${MAKE} -C $$d $@; \ +@for d in $(1); do \ + ${MAKE} -C $$d $@ || exit 1; \ done endef - -else -# Dummy, do nothing -define doinsubdirs -endef - -endif - This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |