Add Autoconf setup.

This commit is contained in:
Bård Skaflestad 2010-09-28 12:14:47 +00:00
parent b7b844bd07
commit 25ac296681

23
configure.ac Normal file
View File

@ -0,0 +1,23 @@
# -*- Autoconf -*-
# Process this file with autoconf to produce a configure script.
AC_PREREQ([2.50])
AC_INIT([libmimetic], [0.1], [Bard.Skaflestad@sintef.no])
AM_INIT_AUTOMAKE([foreign])
LT_INIT
AC_PROG_CC
AC_CONFIG_MACRO_DIR([m4])
AC_CONFIG_SRCDIR([mimetic.h])
AM_CONFIG_HEADER([config.h])
AX_LAPACK
AC_CONFIG_FILES([
Makefile
])
AC_OUTPUT