<?xml version="1.0"?>
<project name="openwings" default="main" basedir=".">
  <!-- properties  -->
  <target name="main">
    <antcall target="children">
      <param name="target" value="main"/>
    </antcall>
  </target>
  <target name="all" >
    <antcall target="children">
      <param name="target" value="all"/>
    </antcall>
  </target>
  <target name="children">
    <ant dir="com" target="${target}" /> 
  </target>   
</project>

