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