1#                                               -*- Autoconf -*-
2# Process this file with autoconf to produce a configure script.
3
4# Prerequisites.
5AC_PREREQ([2.60])
6AC_INIT([dfftpack],[4.0],[dakota@sandia.gov])
7AM_INIT_AUTOMAKE([1.9.6 foreign])
8AC_LANG([Fortran 77])
9
10# Since we're using libtool, don't build shared libraries!
11AC_DISABLE_SHARED
12
13# Checks for programs.
14AC_LANG_PUSH([C])
15AC_PROG_F77
16AC_PROG_INSTALL
17
18# Tells autoconf that libtool will be used.
19AC_PROG_LIBTOOL
20
21# Check for BLAS using a test from the GNU autoconf macro archive.
22dnl ACX_BLAS
23AC_LANG_POP([C])
24
25# Write the Makefile and exit.
26AC_CONFIG_FILES([Makefile])
27AC_OUTPUT
28