annotate src/fftw-3.3.3/bootstrap.sh @ 38:1e4f338ae482

Remove Vamp SDK from dependency builds for Windows, as for OSX
author Chris Cannam
date Fri, 18 Mar 2016 14:26:06 +0000
parents 37bf6b4a2645
children
rev   line source
Chris@10 1 #! /bin/sh
Chris@10 2 ############################################################################
Chris@10 3 #
Chris@10 4 # NOTE: If you just want to build FFTW, do not use this file. Just use
Chris@10 5 # the ordinary ./configure && make commmands as described in the installation
Chris@10 6 # section of the manual.
Chris@10 7 #
Chris@10 8 # This file is only for users that want to generate their own codelets,
Chris@10 9 # as described in the "generating your own code" section of the manual.
Chris@10 10 #
Chris@10 11 ############################################################################
Chris@10 12
Chris@10 13 touch ChangeLog
Chris@10 14
Chris@10 15 echo "PLEASE IGNORE WARNINGS AND ERRORS"
Chris@10 16
Chris@10 17 # paranoia: sometimes autoconf doesn't get things right the first time
Chris@10 18 rm -rf autom4te.cache
Chris@10 19 autoreconf --verbose --install --symlink --force
Chris@10 20 autoreconf --verbose --install --symlink --force
Chris@10 21 autoreconf --verbose --install --symlink --force
Chris@10 22
Chris@10 23 rm -f config.cache
Chris@10 24
Chris@10 25 # --enable-maintainer-mode enables build of genfft and automatic
Chris@10 26 # rebuild of codelets whenever genfft changes
Chris@10 27 (
Chris@10 28 ./configure --disable-shared --enable-maintainer-mode --enable-threads $*
Chris@10 29 )