Page MenuHomec4science

build_xhpast.sh
No OneTemporary

File Metadata

Created
Sat, Oct 5, 21:30

build_xhpast.sh

#!/bin/sh
set -e
ROOT=`dirname $0`"/../support/xhpast"
echo
echo "Building XHPAST..."
echo
cd $ROOT
make clean all install
echo
echo "Testing xhpast works"
echo
if ! ./xhpast --version
then
echo
echo >&2 "xhpast is broken :("
echo
exit 2
fi
echo
echo "Build successful!"
echo

Event Timeline