Skip to content
Snippets Groups Projects
Forked from agnumpde / dune-tectonic
463 commits behind the upstream repository.
Code owners
Assign users and groups as approvers for specific file changes. Learn more.
configure.ac 468 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
AM_SILENT_RULES
AC_CONFIG_SRCDIR([src/one-body-sample.cc])
AC_CONFIG_HEADERS([config.h])

DUNE_CHECK_ALL

AC_CONFIG_FILES([
  Makefile
  src/Makefile
  dune/Makefile
  dune/tectonic/Makefile
  m4/Makefile
  dune-tectonic.pc
])
AC_OUTPUT
# finally print the summary information
DUNE_SUMMARY_ALL