Skip to content
Snippets Groups Projects
Select Git revision
  • 312f209282762e7005ac7741be2bccfac0ac88f7
  • master default
  • releases/2.5-1
3 results

configure.ac

Blame
  • Forked from agnumpde / dune-matrix-vector
    68 commits behind the upstream repository.
    Code owners
    Assign users and groups as approvers for specific file changes. Learn more.
    configure.ac 933 B
    # -*- 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_matrix_vector.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
    # this implies checking for [dune-common], [dune-geometry], [dune-localfunctions], [dune-grid], [dune-istl]
    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
      cmake/Makefile
      cmake/modules/Makefile
      doc/Makefile
      doc/doxygen/Makefile
      doc/doxygen/Doxyfile
      dune/Makefile
      dune/matrix-vector/Makefile
      m4/Makefile
      dune-matrix-vector.pc
    ])
    AC_OUTPUT
    # finally print the summary information
    DUNE_SUMMARY_ALL