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