aboutsummaryrefslogtreecommitdiff
path: root/src/mtx_spherical_harmonics/configure.ac
blob: 23fc979e5649c2f7ba46f2cd6d1e869b7fcf53dd (plain)
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
#                                               -*- Autoconf -*-
# Process this file with autoconf to produce a configure script.

AC_PREREQ(2.61)
AC_INIT([sh], [0.1], [zotter@iem.at])
AM_INIT_AUTOMAKE([-Wall])
AC_CONFIG_SRCDIR([legendre_a.h])

# Checks for programs.
AC_PROG_CC

AC_PROG_RANLIB

# Checks for libraries.
# FIXME: Replace `main' with a function in `-lm':
AC_CHECK_LIB([m], [cos])

# Checks for header files.
AC_HEADER_STDC
AC_CHECK_HEADERS([stdlib.h])

# Checks for typedefs, structures, and compiler characteristics.

# Checks for library functions.
AC_FUNC_MALLOC
AC_CHECK_FUNCS([pow])

AC_CONFIG_FILES([Makefile cmdline/Makefile])
AC_OUTPUT