Chris@42: #! /bin/sh Chris@42: ############################################################################ Chris@42: # Chris@42: # NOTE: If you just want to build FFTW, do not use this file. Just use Chris@42: # the ordinary ./configure && make commmands as described in the installation Chris@42: # section of the manual. Chris@42: # Chris@42: # This file is only for users that want to generate their own codelets, Chris@42: # as described in the "generating your own code" section of the manual. Chris@42: # Chris@42: ############################################################################ Chris@42: Chris@42: touch ChangeLog Chris@42: Chris@42: echo "PLEASE IGNORE WARNINGS AND ERRORS" Chris@42: Chris@42: # paranoia: sometimes autoconf doesn't get things right the first time Chris@42: rm -rf autom4te.cache Chris@42: autoreconf --verbose --install --symlink --force Chris@42: autoreconf --verbose --install --symlink --force Chris@42: autoreconf --verbose --install --symlink --force Chris@42: Chris@42: rm -f config.cache Chris@42: Chris@42: # --enable-maintainer-mode enables build of genfft and automatic Chris@42: # rebuild of codelets whenever genfft changes Chris@42: ( Chris@42: ./configure --disable-shared --enable-maintainer-mode --enable-threads $* Chris@42: )