Skip to content
Snippets Groups Projects
Select Git revision
  • releases/2.8
  • feature/autodiff
  • feature/hyperdual-vector-mode
  • master default protected
  • finite-strain-plasticity
  • patrizio-convexity-test
  • releases/2.6-1
  • releases/2.5-1
  • releases/2.4-1
  • releases/2.3-1
  • releases/2.2-1
  • releases/2.1-1
  • releases/2.0-1
  • subversion->git
14 results

configure.ac

Blame
  • Forked from agnumpde / dune-elasticity
    392 commits behind the upstream repository.
    Jonathan Youett's avatar
    akbib authored and akbib@FU-BERLIN.DE committed
    [[Imported from SVN: r11201]]
    b2be9113
    History
    Code owners
    Assign users and groups as approvers for specific file changes. Learn more.
    configure.ac 950 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([linelast.cc])
    AM_CONFIG_HEADER([config.h])
    
    # we need no more than the standard DUNE-stuff
    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
                     dune/Makefile
                     dune/elasticity/Makefile
                     dune/elasticity/assemblers/Makefile
                     dune/elasticity/common/Makefile
                     dune/elasticity/estimators/Makefile
                     dune/elasticity/materials/Makefile
                     test/Makefile
                     m4/Makefile
                     elasticity.pc])
    AC_OUTPUT
    
    # finally print the summary information
    DUNE_SUMMARY_ALL