<?xml version="1.0"?>

<!--
  ######################################################################
  #
  # ISR Mighty Automated Build *STUB* Ant script
  # Originally developed by Eric M. Dashofy, [edashofy@ics.uci.edu]
  #
  # This stub simply retrieves the main build script, called
  # dobuild.xml, and executes it.
  # 
  # The real documentation for properties and all is located in the
  # dobuild.xml script.  To do a build, just use this file.  To
  # retrieve the dobuild.xml file without running it, run this script
  # with target name 'getonly.'
  #
  ######################################################################
-->

<!--
  CHANGELOG:
  
  2002-02-25 Eric M. Dashofy [edashofy@ics.uci.edu]:
    - Changed the GET URL to the new MAST homepage URL.

  2001-12-17 Eric M. Dashofy [edashofy@ics.uci.edu]:
    - Initial development using GET to get the main
      file from a URL.
-->

<project name="mab-ant-stub" default="getandrun" basedir=".">

  <target name="getonly">
    <get src="http://www.isr.uci.edu/projects/mast/dobuild.xml" 
         dest="dobuild.xml"
         verbose="true"/> 
  </target>

  <target name="getandrun">
    <get src="http://www.isr.uci.edu/projects/mast/dobuild.xml" 
         dest="dobuild.xml"
         verbose="true"/> 
    <ant antfile="dobuild.xml"/>
  </target>

</project>


