annotate 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
rev   line source
Chris@82 1 #! /bin/sh
Chris@82 2 ############################################################################
Chris@82 3 #
Chris@82 4 # NOTE: If you just want to build FFTW, do not use this file. Just use
Chris@82 5 # the ordinary ./configure && make commmands as described in the installation
Chris@82 6 # section of the manual.
Chris@82 7 #
Chris@82 8 # This file is only for users that want to generate their own codelets,
Chris@82 9 # as described in the "generating your own code" section of the manual.
Chris@82 10 #
Chris@82 11 ############################################################################
Chris@82 12
Chris@82 13 touch ChangeLog
Chris@82 14
Chris@82 15 echo "PLEASE IGNORE WARNINGS AND ERRORS"
Chris@82 16
Chris@82 17 rm -rf autom4te.cache
Chris@82 18 autoreconf --verbose --install --symlink --force
Chris@82 19
Chris@82 20 rm -f config.cache
Chris@82 21
Chris@82 22 # --enable-maintainer-mode enables build of genfft and automatic
Chris@82 23 # rebuild of codelets whenever genfft changes
Chris@82 24 (
Chris@82 25 ./configure --disable-shared --enable-maintainer-mode --enable-threads $*
Chris@82 26 )