><condition property="isDarwin">
>       <equals arg1="Mac OS X" arg2="${os.name}" /> </condition>
>
><target name="darwinTarget" if="isDarwin"> ...
></target>

plus
<target name="all" depends="darwinTarget,fedoraTarget,...."/>


Another technique is
    <antcall target="${os.name}Target"/>
Could be helpful. But it has the drawbacks of <antcall> like new
namespace....


Jan

---------------------------------------------------------------------
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]

Reply via email to