-
Notifications
You must be signed in to change notification settings - Fork 1
/
configure.ac
executable file
·44 lines (37 loc) · 1.08 KB
/
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
38
39
40
41
42
43
44
odnl -*- Autoconf -*-
AC_INIT([CBLAPACK - BLAS and LAPACK in C],
[12.02.01],
[cblapack])
#
# Initialize Autoconf. Note that all files in config_aux are created by
# the automatic tools.
#
AC_PREREQ(2.59)
AC_CONFIG_SRCDIR([./README.md]) dnl Unique file where sources are
AC_CONFIG_MACRO_DIR([m4]) dnl Additional macro directories
AC_CONFIG_FILES([Makefile test/Makefile include/Makefile])
AC_CONFIG_AUX_DIR([config_aux])
#
# Initialize Automake, minimal version 1.9, with options to make it less
# pedantic, various distribution targets and placing object files together
# inside source dirs.
#
AM_INIT_AUTOMAKE([1.9 foreign dist-bzip2 dist-zip subdir-objects])
# Programs used to build the library
AC_PROG_CC
AC_LANG([C])
AC_PROG_LIBTOOL
# Doxygen support
DX_HTML_FEATURE(ON)
DX_CHM_FEATURE(OFF)
DX_CHI_FEATURE(OFF)
DX_MAN_FEATURE(OFF)
DX_RTF_FEATURE(OFF)
DX_XML_FEATURE(OFF)
DX_PDF_FEATURE(OFF)
DX_PS_FEATURE(OFF)
DX_INIT_DOXYGEN(tensor, doxygen.cfg, doc)
# libf2c must be available
AC_CHECK_HEADER([f2c.h],[],[AC_MSG_ERROR([Unable to find f2c.h])])
AC_OUTPUT