This repository has been archived by the owner on May 28, 2020. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 72
/
configure.ac
executable file
·89 lines (81 loc) · 2.67 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
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
AC_INIT([RASPA], [2.0])
AC_CONFIG_SRCDIR([src/main.c])
AM_INIT_AUTOMAKE
AC_SEARCH_LIBS(ddot_,blas)
AC_SEARCH_LIBS(dsyevd_,lapack,HAVE_LAPACK="yes")
if test "$HAVE_LAPACK" = yes; then
AC_DEFINE(HAVE_LAPACK, 0, [Define if you have LAPACK library.])
fi
AC_SEARCH_LIBS(fftw_plan_dft_r2c_1d,fftw3,HAVE_FFTW3="yes")
if test "$HAVE_FFTW3" = yes; then
AC_DEFINE(HAVE_FFTW3, 0, [Define if you have FFTW library.])
fi
AC_PROG_CC
AC_PROG_CXX
AC_PROG_F77
dnl Checks for header files.
AC_STDC_HEADERS
AC_CHECK_HEADERS([math.h])
AC_CHECK_HEADERS([string.h])
AC_CHECK_HEADERS([fftw3.h])
LT_INIT
AC_CONFIG_MACRO_DIR([m4])
AC_OUTPUT(Makefile \
src/Makefile \
forcefield/Makefile \
forcefield/GenericMOFs/Makefile \
forcefield/GenericZeolites/Makefile \
forcefield/CrystalGenerator/Makefile \
forcefield/GarciaPerez2006/Makefile \
forcefield/Dubbeldam2007FlexibleIRMOF-1/Makefile \
forcefield/Dubbeldam2007FlexibleIRMOF-10/Makefile \
forcefield/Dubbeldam2007FlexibleIRMOF-16/Makefile \
forcefield/CoreShellCatlow/Makefile \
forcefield/CoreShellSchroderSauer/Makefile \
forcefield/CoreShellSastreGale2005/Makefile \
forcefield/RigidIonKramer1991/Makefile \
forcefield/Pascual2004/Makefile \
forcefield/AmirjalayerSchmid/Makefile \
forcefield/Nicholas/Makefile \
forcefield/Dubbeldam2012MIL-100/Makefile \
forcefield/Dubbeldam2012MIL-101/Makefile \
forcefield/Dzubak2012-IRMOF-1/Makefile \
forcefield/Dzubak2012-MgMOF-74/Makefile \
forcefield/Dzubak2012-MgMOF-74-extended/Makefile \
forcefield/Dzubak2012-ZnMOF-74/Makefile \
forcefield/MgMOF-74-Yazaydin/Makefile \
forcefield/CastilloVlugtCalero2009/Makefile \
forcefield/TraPPE/Makefile \
molecules/Makefile \
molecules/Generic/Makefile \
molecules/TraPPE/Makefile \
molecules/TraPPE-UA/Makefile \
molecules/TraPPE-EH/Makefile \
molecules/EPM2/Makefile \
molecules/CastilloVlugtCalero2009/Makefile \
framework/Makefile \
framework/Dubbeldam2007FlexibleIRMOF-1/Makefile \
framework/Dubbeldam2007FlexibleIRMOF-10/Makefile \
framework/Dubbeldam2007FlexibleIRMOF-16/Makefile \
framework/CoreShellCatlow/Makefile \
framework/CoreShellSchroderSauer/Makefile \
framework/CoreShellSastreGale2005/Makefile \
framework/Demontis/Makefile \
framework/DemontisModified/Makefile \
framework/Nicholas/Makefile \
framework/NicholasModified/Makefile \
framework/AmirjalayerSchmid/Makefile \
structures/Makefile \
structures/zeolites/Makefile \
structures/mofs/Makefile \
structures/minerals/Makefile \
structures/ceramics/Makefile \
structures/zeolites/cif/Makefile \
structures/zeolites/block/Makefile \
structures/zeolites/ions/Makefile \
structures/mofs/cif/Makefile \
structures/mofs/block/Makefile \
structures/mofs/ions/Makefile \
structures/minerals/cif/Makefile \
structures/ceramics/cif/Makefile \
)