- Borland Delphi 14.5
Delphi :
DCCRUN="dcc"
DCCDIR=""
if [ x"${DCCRUN}" = x -o x"${DCCRUN}" = xno ]
then
echo "This language is not supported." >&2
exit 1
fi
if [ x"${DCCDIR}" != x ]
then
PATH="${DCCDIR}:${PATH}"
KYLIXDIR="${DCCDIR}"
export KYLIXDIR
fi
exec "${DCCRUN}" ${EJUDGE_FLAGS} -Q "$1"
|