Skip to content
Snippets Groups Projects
Select Git revision
  • ff28ba1b29e3f26aa994a302391e37b9d5702d8a
  • 2016-PippingKornhuberRosenauOncken default
  • 2022-Strikeslip-Benchmark
  • 2021-GraeserKornhuberPodlesny
  • Dissertation2021 protected
  • separate-deformation
  • AverageCrosspoints
  • old_solver_new_datastructure
  • last_working
  • 2014-Dissertation-Pipping
  • 2013-PippingSanderKornhuber
11 results

configure.ac

  • Forked from agnumpde / dune-tectonic
    1015 commits behind the upstream repository.
    user avatar
    Elias Pipping authored and Elias Pipping committed
    Fix search path for modules as well
    7c1e6f04
    History
    Code owners
    Assign users and groups as approvers for specific file changes. Learn more.
    configure.ac 937 B
    # -*- 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([src/test-gradient-method.cc])
    AM_CONFIG_HEADER([config.h])
    
    
    # we need no more than the standard DE-stuff
    # this module depends on dune-common dune-fufem dune-tnnmg
    # this implies checking for [dune-common], [dune-grid], [dune-istl], [dune-localfunctions], [dune-fufem], [dune-solvers], [dune-tnnmg]
    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/octave/Makefile
      src/python/Makefile
      doc/Makefile
      doc/doxygen/Makefile
      doc/doxygen/Doxyfile
      dune/Makefile
      dune/tectonic/Makefile
      m4/Makefile
      dune-tectonic.pc
    ])
    AC_OUTPUT
    # finally print the summary information
    DUNE_SUMMARY_ALL