#!/bin/sh

#
# Setup environment and run ant with the given arguments
#

export ISE_EIFFEL=/home/build/bin/Eiffel65
export ISE_PLATFORM=linux-x86-64
export PATH=$PATH:$ISE_EIFFEL/studio/spec/$ISE_PLATFORM/bin:$ISE_EIFFEL/library/gobo/spec/$ISE_PLATFORM/bin
export GOBO=$ISE_EIFFEL/library/gobo/svn

export ARANEA=/home/build/aranea
export LOG4E=$ARANEA/dependencies/log4e
export EPOSIX=$ARANEA/dependencies/eposix
export GOANNA=$ARANEA/dependencies/goanna
export EMS=$ARANEA/dependencies/ems
export THREAD_EXTENSION=$ARANEA/dependencies/thread_extension

ant $@

