ENH: Updated ensight surface file reading

This commit is contained in:
Andrew Heather
2016-06-29 20:43:20 +01:00
parent a415752eb5
commit fe13ff56fc
7 changed files with 486 additions and 78 deletions

View File

@ -0,0 +1,14 @@
#!/bin/sh
cd ${0%/*} || exit 1 # run from this directory
if [ -f "$FFTW_ARCH_PATH/include/fftw3.h" ] || \
[ "${FFTW_ARCH_PATH##*-}" = system -a -f "/usr/include/fftw3.h" ]
then
wmake
else
echo
echo "Skipping noise utility (no FFTW)"
echo
fi
#------------------------------------------------------------------------------