#!/bin/sh # creates tarball export FCFLAGS="-O0" ./bootstrap || exit 1 ./configure || exit 1 # the following is to make sure the flags work as designed export DISTCHECK_CONFIGURE_FLAGS="--with-mpi --with-netcdf --with-makefdepsn" make -j4 distcheck || exit 1 make distclean || exit 1 echo "succesfull end of $0"