mirror of
https://github.com/OPM/opm-upscaling.git
synced 2025-02-25 18:45:23 -06:00
35 lines
937 B
Plaintext
35 lines
937 B
Plaintext
# -*- 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/upscaling/SinglePhaseUpscaler.hpp])
|
|
AM_CONFIG_HEADER([config.h])
|
|
|
|
|
|
# we need no more than the standard DE-stuff
|
|
# this module depends on dune-common dune-grid dune-istl dune-cornerpoint dune-porsol
|
|
# this implies checking for [dune-common], [dune-grid], [dune-istl], [dune-cornerpoint], [dune-porsol]
|
|
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
|
|
m4/Makefile
|
|
doc/Makefile
|
|
doc/doxygen/Makefile
|
|
doc/doxygen/Doxyfile
|
|
dune/Makefile
|
|
dune/upscaling/Makefile
|
|
dune/upscaling/test/Makefile
|
|
dune-upscaling.pc
|
|
examples/Makefile
|
|
])
|
|
AC_OUTPUT
|
|
# finally print the summary information
|
|
DUNE_SUMMARY_ALL
|