The 'ant' task might be what you're looking for - it works like antcall, but 
on a separate build file. 
 http://ant.apache.org/manual/CoreTasks/ant.html
 Example:
 <ant antfile="build2.xml" target="test2"/>
  -Andrew
 On 7/30/05, Frank W. Zammetti <[EMAIL PROTECTED]> wrote: 
> 
> Well, I'm not sure how one calls another whole script, perhaps someone
> else reading this does.
> 
> However, if they are all typical build scripts in the sense that there
> is one particular target that is called to get things going, you can
> certainly antcall that target in each of the scripts. That would have
> the desired effect I believe. If you have the luxury of modifying the
> scripts a bit, you can certainly ensure this is the case, and you should
> be good to go. When you antcall from the one "base" script, control
> will return there wheen the other script completes, so no problem doing
> that a bunch of times.
> 
> Frank
>

Reply via email to