mirror of
https://github.com/paboyle/Grid.git
synced 2024-11-10 07:55:35 +00:00
20 lines
508 B
Bash
Executable File
20 lines
508 B
Bash
Executable File
#!/usr/bin/env bash
|
|
|
|
EIGEN_URL='http://bitbucket.org/eigen/eigen/get/3.2.9.tar.bz2'
|
|
FFTW_URL=http://www.fftw.org/fftw-3.3.4.tar.gz
|
|
|
|
echo "-- deploying Eigen source..."
|
|
wget ${EIGEN_URL}
|
|
./scripts/update_eigen.sh `basename ${EIGEN_URL}`
|
|
rm `basename ${EIGEN_URL}`
|
|
|
|
echo "-- copying fftw prototypes..."
|
|
wget ${FFTW_URL}
|
|
./scripts/update_fftw.sh `basename ${FFTW_URL}`
|
|
rm `basename ${FFTW_URL}`
|
|
|
|
echo '-- generating Make.inc files...'
|
|
./scripts/filelist
|
|
echo '-- generating configure script...'
|
|
autoreconf -fvi
|