annotate src/fftw-3.3.3/bootstrap.sh @ 169:223a55898ab9 tip default

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