#!/bin/sh

set -e
set -u

export GNUSTEP_MAKEFILES=/usr/share/GNUstep/Makefiles

./configure
make check || (cat tests.log; exit 1)

exit 0
