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