File: configure.ac

package info (click to toggle)
oakleaf 0.0.1-3
  • links: PTS, VCS
  • area: main
  • in suites: bookworm, bullseye, buster, sid, trixie
  • size: 2,112 kB
  • sloc: sh: 3,958; f90: 337; makefile: 52; awk: 17
file content (35 lines) | stat: -rw-r--r-- 876 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
#                                               -*- Autoconf -*-
# Process this file with autoconf to produce a configure script.

AC_PREREQ([2.69])
AC_INIT([OakLeaf], [0.0.1], [hroch@physics.muni.cz],
         [oakleaf],[http://integral.physics.muni.cz/oakleaf])
AM_INIT_AUTOMAKE
LT_INIT

# Checks for programs.
AC_PROG_FC
AC_PROG_INSTALL
AC_PROG_LN_S
AC_PROG_AWK

# Checks for libraries.
AC_CHECK_LIB([minpack], [lmder_])

# Checks for header files.

# Checks for typedefs, structures, and compiler characteristics.
AC_FC_MODULE_FLAG
AC_FC_MODULE_OUTPUT_FLAG
AC_FC_MODULE_EXTENSION

# Checks for library functions.

# clean precompiled modules of fortran
AC_SUBST(CLEANFILES,[*.$FC_MODEXT])

AC_CONFIG_MACRO_DIRS([m4])

AC_CONFIG_FILES([src/minpack/Makefile src/fmm/Makefile src/simplex/Makefile
                 src/Makefile test/Makefile doc/Makefile Makefile])
AC_OUTPUT