annotate fft/fftw/fftw-3.3.4/bootstrap.sh @ 40:223f770b5341 kissfft-double tip

Try a double-precision kissfft
author Chris Cannam
date Wed, 07 Sep 2016 10:40:32 +0100
parents 26056e866c29
children
rev   line source
Chris@19 1 #! /bin/sh
Chris@19 2 ############################################################################
Chris@19 3 #
Chris@19 4 # NOTE: If you just want to build FFTW, do not use this file. Just use
Chris@19 5 # the ordinary ./configure && make commmands as described in the installation
Chris@19 6 # section of the manual.
Chris@19 7 #
Chris@19 8 # This file is only for users that want to generate their own codelets,
Chris@19 9 # as described in the "generating your own code" section of the manual.
Chris@19 10 #
Chris@19 11 ############################################################################
Chris@19 12
Chris@19 13 touch ChangeLog
Chris@19 14
Chris@19 15 echo "PLEASE IGNORE WARNINGS AND ERRORS"
Chris@19 16
Chris@19 17 # paranoia: sometimes autoconf doesn't get things right the first time
Chris@19 18 rm -rf autom4te.cache
Chris@19 19 autoreconf --verbose --install --symlink --force
Chris@19 20 autoreconf --verbose --install --symlink --force
Chris@19 21 autoreconf --verbose --install --symlink --force
Chris@19 22
Chris@19 23 rm -f config.cache
Chris@19 24
Chris@19 25 # --enable-maintainer-mode enables build of genfft and automatic
Chris@19 26 # rebuild of codelets whenever genfft changes
Chris@19 27 (
Chris@19 28 ./configure --disable-shared --enable-maintainer-mode --enable-threads $*
Chris@19 29 )