blob: f5b23f9b73d211559bd6dd34fb7fe575e893aef3 (
plain)
1
2
3
4
5
6
7
8
9
10
|
# -*- Autoconf -*-
# Process this file with autoconf to produce a configure script.
AC_INIT([axohelp], [1], [jcc8@psu.edu])
AM_INIT_AUTOMAKE([no-define])
AC_CHECK_LIB([m], [sqrt],,
AC_MSG_ERROR([*** Please install libm on your system ***]))
AC_PROG_CC
AC_CONFIG_FILES([Makefile])
AC_OUTPUT
|