> 1. How do I manage dependencies between different build.xml files? For
> example, module A in build1.xml might depend on module B in build2.xml.
Currently, as Peter Donald said, this can only be done on the highest level,
which makes it rather useless, but an additional ant task in the target,
like
<target name="A">
<ant target="B" dir="..\..\dependendlib">
should possibly do it also. No depend, but a forced build.
(note, for the configure task, when rescanning, the target name called
should
not be the same as the current target; otherwise it will be deleted)
Michael van Leeuwen.
See for the configure task: http://www.dsdelft.nl/~lemval/ant/.