-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathconfigure.ac
38 lines (29 loc) · 971 Bytes
/
configure.ac
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
36
37
# -*- Autoconf -*-
# Process this file with autoconf to produce a configure script.
# Require autoconf 2.61 or newer.
AC_PREREQ(2.61)
AC_INIT([assess-registration],[0.1],[Matthijs van Eede [email protected]])
AC_CONFIG_SRCDIR([src/create_determinant_file.cpp])
AM_INIT_AUTOMAKE
# The argument is the name of the generated header file.
# It is recommended to leave it as "config.h".
AC_CONFIG_HEADERS([config.h])
# This macro eases building the package; see m4/README.
smr_WITH_BUILD_PATH
# Checks for programs.
AC_PROG_CXX
AC_PROG_CC
AC_PROG_INSTALL
# Checks for libraries. See m4/README.
mni_REQUIRE_BICPL
# Checks for header files.
AC_HEADER_STDC
AC_CHECK_HEADERS([stdlib.h string.h unistd.h])
# Checks for library functions.
AC_FUNC_MALLOC
AC_CHECK_FUNCS([strtol])
# Finish up by writing output files.
AC_CONFIG_FILES([Makefile
scripts/Makefile
src/Makefile])
AC_OUTPUT