[Dist-svn] SF.net SVN: dist:[30] trunk/dist/jmake/files/Jmake.tmpl
Brought to you by:
rmanfredi
From: <rma...@us...> - 2009-10-28 07:45:38
|
Revision: 30 http://dist.svn.sourceforge.net/dist/?rev=30&view=rev Author: rmanfredi Date: 2009-10-28 07:45:28 +0000 (Wed, 28 Oct 2009) Log Message: ----------- Make sure the "all" target is listed first in all the Makefiles we produce. That includes not specifying any "hidden" targets before "all". Modified Paths: -------------- trunk/dist/jmake/files/Jmake.tmpl Modified: trunk/dist/jmake/files/Jmake.tmpl =================================================================== --- trunk/dist/jmake/files/Jmake.tmpl 2008-06-16 18:11:00 UTC (rev 29) +++ trunk/dist/jmake/files/Jmake.tmpl 2009-10-28 07:45:28 UTC (rev 30) @@ -135,11 +135,15 @@ %MKDEP:|skip /* Skip if no depend target */ ;######################################################################## ;# Force 'make depend' to be performed first -- do not edit +/* + * The "all" target must appear first. Some "make" programs will otherwise + * default to the .FORCE_DEPEND target if it was listed first, despite it + * starting with a leading dot. + */ +all:: .FORCE_DEPEND .FORCE_DEPEND:: -all:: .FORCE_DEPEND - -skip /* Depend target */ ;######################################################################## ;# Start of Jmakefile This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |