blob: cc01641344913cb7db1b28d93af0d9c692a12746 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
|
# -*- Autoconf -*-
# Process this file with autoconf to produce a configure script.
AC_PREREQ([2.69])
AC_INIT([kasym], [1.0.0])
AC_CONFIG_SRCDIR([atlas9/atlas9v.for])
AM_INIT_AUTOMAKE
AC_PROG_F77(ifort)
# Checks for programs.
# Checks for libraries.
# Checks for header files.
# Checks for typedefs, structures, and compiler characteristics.
# Checks for library functions.
AC_OUTPUT(Makefile atlas9/Makefile atlas12/Makefile synthe/Makefile dfsynthe/Makefile kappa9/Makefile width/Makefile)
|