comparison 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
comparison
equal deleted inserted replaced
41:481f5f8c5634 42:2cd0e3b3e1fd
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 )