Ant files typically contain a set of 'target' elements.
Each target represents some collection of tasks that can be executed.
Targets have names and you can default the starting target on the 'project' element:
Example:
<project name="myxslt" default='build-xhtml'> <target name="build-xhtml"> </target> </project>