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