#!/bin/sh

#
# setup to use bundled of ant
#

export ANT_HOME=../../apache-ant
export ANT_RUN=$ANT_HOME/bin/ant
export PATH=$ANT_HOME/bin:$PATH

#echo PATH=$PATH


#
# Collect the command line args
#

CMD_LINE_ARGS=$*


$ANT_RUN -f build.xml $CMD_LINE_ARGS
