comparison src/fftw-3.3.8/bootstrap.sh @ 82:d0c2a83c1364

Add FFTW 3.3.8 source, and a Linux build
author Chris Cannam
date Tue, 19 Nov 2019 14:52:55 +0000
parents
children
comparison
equal deleted inserted replaced
81:7029a4916348 82:d0c2a83c1364
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 rm -rf autom4te.cache
18 autoreconf --verbose --install --symlink --force
19
20 rm -f config.cache
21
22 # --enable-maintainer-mode enables build of genfft and automatic
23 # rebuild of codelets whenever genfft changes
24 (
25 ./configure --disable-shared --enable-maintainer-mode --enable-threads $*
26 )