forked from dune-project/dune-pdelab
-
Notifications
You must be signed in to change notification settings - Fork 0
/
configure.ac
72 lines (68 loc) · 2.32 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
# -*- Autoconf -*-
# Process this file with autoconf to produce a configure script.
AC_PREREQ(2.50)
DUNE_AC_INIT # gets module version from dune.module file
AM_INIT_AUTOMAKE
AC_CONFIG_SRCDIR([dune/pdelab/test/testopbfem.cc])
AC_CONFIG_HEADERS([config.h])
# add configure flags needed to create log files for dune-autobuild
DUNE_AUTOBUILD_FLAGS
#
# we need no more than the standard DE-stuff
# this module depends on dune-common dune-grid dune-localfunctions dune-istl
# this implies checking for [dune-common], [dune-grid], [dune-localfunctions], [dune-istl]
DUNE_CHECK_ALL
# preset variable to path such that #include <dune/...> works
#AC_SUBST([DUNE_PDELAB_ROOT], '$(top_builddir)')
#AC_SUBST([AM_CPPFLAGS], '-I$(top_srcdir)')
#AC_SUBST([LOCAL_LIBS], '$(top_builddir)/lib/libpdelab.la')
# implicitly set the Dune-flags everywhere
AC_SUBST(AM_CPPFLAGS, '$(DUNE_CPPFLAGS) -I$(top_srcdir)')
AC_SUBST(AM_LDFLAGS, $DUNE_LDFLAGS)
AC_SUBST([LDADD], '$(top_builddir)/lib/libdunepdelab.la $(DUNE_LIBS)')
AC_CONFIG_FILES([
cmake/Makefile
cmake/modules/Makefile
doc/doxygen/Doxyfile
doc/doxygen/Makefile
doc/Makefile
dune-pdelab.pc
dune/Makefile
dune/pdelab/adaptivity/Makefile
dune/pdelab/backend/Makefile
dune/pdelab/backend/common/Makefile
dune/pdelab/backend/eigen/Makefile
dune/pdelab/backend/istl/Makefile
dune/pdelab/backend/simple/Makefile
dune/pdelab/boilerplate/Makefile
dune/pdelab/common/Makefile
dune/pdelab/constraints/Makefile
dune/pdelab/constraints/common/Makefile
dune/pdelab/experimental/common/Makefile
dune/pdelab/experimental/Makefile
dune/pdelab/finiteelement/Makefile
dune/pdelab/finiteelementmap/Makefile
dune/pdelab/function/Makefile
dune/pdelab/gridfunctionspace/Makefile
dune/pdelab/gridoperator/Makefile
dune/pdelab/gridoperator/common/Makefile
dune/pdelab/gridoperator/default/Makefile
dune/pdelab/gridoperator/onestep/Makefile
dune/pdelab/gridoperatorspace/Makefile
dune/pdelab/instationary/Makefile
dune/pdelab/linearsolver/Makefile
dune/pdelab/localoperator/Makefile
dune/pdelab/Makefile
dune/pdelab/multistep/Makefile
dune/pdelab/newton/Makefile
dune/pdelab/ordering/Makefile
dune/pdelab/stationary/Makefile
dune/pdelab/test/Makefile
dune/pdelab/test/fem/Makefile
lib/Makefile
m4/Makefile
Makefile
])
AC_OUTPUT
# finally print the summary information
DUNE_SUMMARY_ALL