#!/bin/bash current=`pwd` export DISTCHECK_CONFIGURE_FLAGS='--with-makedepsf' export FCFLAGS=-O0 -Wall cd src/xbeachlibrary || exit 1 ./makeincs || exit 1 cd $current || exit 1 ./configure || exit 1 make distcheck -j4 || exit 1 echo $0: all done