#! /bin/sh
#
#   40install
#

set -u
progname=`basename $0`;
echo "### $progname ###"
buildenv=../buildenv
if [ ! -r $buildenv ]; then
    echo "$progname: $buildenv not found" >&2
    exit 1;
fi
. ../buildenv
APPDIR=${PYTHON}

cd ${APPDIR}
make install
test $? -eq 0 || exit 1;

exit 0;
