-
Notifications
You must be signed in to change notification settings - Fork 0
/
configure.ac
36 lines (33 loc) · 1 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
# -*- Autoconf -*-
# Process this file with autoconf to produce a configure script.
AC_PREREQ([2.62])
DUNE_AC_INIT # gets module version from dune.module file
AC_CONFIG_SRCDIR([src/dune-mcesfem.cc])
AC_CONFIG_HEADERS([config.h])
# we need no more than the standard DE-stuff
# this module depends on dune-common dune-geometry dune-localfunctions dune-grid dune-istl dune-alugrid dune-fem
# this implies checking for [dune-common], [dune-geometry], [dune-localfunctions], [dune-grid], [dune-istl], [dune-alugrid], [dune-fem]
DUNE_CHECK_ALL
# implicitly set the Dune-flags everywhere
AC_SUBST(AM_CPPFLAGS, $DUNE_CPPFLAGS)
AC_SUBST(AM_LDFLAGS, $DUNE_LDFLAGS)
LIBS="$DUNE_LIBS"
AC_CONFIG_FILES([
Makefile
src/Makefile
src/data/Makefile
src/output/Makefile
src/source/Makefile
cmake/Makefile
cmake/modules/Makefile
doc/Makefile
doc/doxygen/Makefile
doc/doxygen/Doxyfile
dune/Makefile
dune/mcesfem/Makefile
m4/Makefile
dune-mcesfem.pc
])
AC_OUTPUT
# finally print the summary information
DUNE_SUMMARY_ALL