To check out this repository please hg clone the following URL, or open the URL using EasyMercurial or your preferred Mercurial client.

The primary repository for this project is hosted at https://github.com/sonic-visualiser/sv-dependency-builds .
This repository is a read-only copy which is updated automatically every hour.

Statistics Download as Zip
| Branch: | Tag: | Revision:

root / src / fftw-3.3.8 / bootstrap.sh @ 167:bd3cc4d1df30

History | View | Annotate | Download (835 Bytes)

1
#! /bin/sh
2
############################################################################
3
#
4
# NOTE: If you just want to build FFTW, do not use this file.  Just use
5
# the ordinary ./configure && make commmands as described in the installation
6
# section of the manual.
7
#
8
# This file is only for users that want to generate their own codelets,
9
# as described in the "generating your own code" section of the manual.
10
#
11
############################################################################
12

    
13
touch ChangeLog
14

    
15
echo "PLEASE IGNORE WARNINGS AND ERRORS"
16

    
17
rm -rf autom4te.cache
18
autoreconf --verbose --install --symlink --force
19

    
20
rm -f config.cache
21

    
22
# --enable-maintainer-mode enables build of genfft and automatic
23
# rebuild of codelets whenever genfft changes
24
(
25
    ./configure --disable-shared --enable-maintainer-mode --enable-threads $*
26
)