<?xml version="1.0"?>

<!--
  ===========================================================================
     File:  build.xml

  Purpose:  Build Central build process template for Build Central components.

  Local Targets     Usage
  ................  .........................................................

  none              Default target which performs no action.

  ===========================================================================
-->
<project name="build" default="none" basedir=".">

  <!--
    =========================================================================
      Properties
    =========================================================================
  -->
  <property environment="bc"/>

  <!--
    =========================================================================
       Target:  distribute

      Purpose:  Override default action to do nothing (for now).
    =========================================================================
  -->
  <target name="distribute"/>

  <!--
    =========================================================================
       Target:  none

      Purpose:  Warn the user this file should only be called with a specific
                target in mind.
    =========================================================================
  -->
  <target name="none">
    <fail message="This script should only be called with a specific target."/>
  </target>
</project>
