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