summaryrefslogtreecommitdiff
path: root/fftw/build.sh
blob: 3cad563e7b1893ca86be2e7e199de0288566479d (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14

export modes="--enable-single --enable-long-double"
export FFTW_CONFIGURE="./configure --prefix=$PREFIX --disable-static --enable-shared --enable-threads "

function fftw_build
{
$FFTW_CONFIGURE "$@" || exit 1
make -j$CPU_COUNT || exit 1
make install || exit 1
}

fftw_build

for mode in $modes; do fftw_build $mode; done