[complement-svn] SF.net SVN: complement: [1899] trunk/complement/explore/Makefiles
Status: Pre-Alpha
Brought to you by:
complement
From: <com...@us...> - 2008-06-16 13:30:56
|
Revision: 1899 http://complement.svn.sourceforge.net/complement/?rev=1899&view=rev Author: complement Date: 2008-06-16 06:30:53 -0700 (Mon, 16 Jun 2008) Log Message: ----------- function to pass tag for make in subdirs Modified Paths: -------------- trunk/complement/explore/Makefiles/ChangeLog trunk/complement/explore/Makefiles/gmake/subdirs.mak Modified: trunk/complement/explore/Makefiles/ChangeLog =================================================================== --- trunk/complement/explore/Makefiles/ChangeLog 2008-06-16 10:39:08 UTC (rev 1898) +++ trunk/complement/explore/Makefiles/ChangeLog 2008-06-16 13:30:53 UTC (rev 1899) @@ -1,3 +1,8 @@ +2008-06-16 Petr Ovtchenkov <pt...@is...> + + * gmake/subdirs.mak: function to pass tag for make in + subdirs. + 2008-06-07 Petr Ovtchenkov <pt...@is...> * configure: don't duplicate options in config.mak, that Modified: trunk/complement/explore/Makefiles/gmake/subdirs.mak =================================================================== --- trunk/complement/explore/Makefiles/gmake/subdirs.mak 2008-06-16 10:39:08 UTC (rev 1898) +++ trunk/complement/explore/Makefiles/gmake/subdirs.mak 2008-06-16 13:30:53 UTC (rev 1899) @@ -1,12 +1,17 @@ -# Time-stamp: <06/11/01 22:55:23 ptr> +# Time-stamp: <08/06/16 16:31:11 yeti> # -# Copyright (c) 2006, 2007 +# Copyright (c) 2006-2008 # Petr Ovtchenkov # # Licensed under the Academic Free License version 3.0 # -# Do the same target in all catalogs as arg +# Do the same target in all catalogs specified in arg define doinsubdirs $(foreach d,$(1),${MAKE} -C ${d} $@;) endef + +# Do specified target (first arg) in all catalogs specified by second arg +define dotaginsubdirs +$(foreach d,$(2),${MAKE} -C ${d} $(1);) +endef This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |