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