1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92
|
# -*- Autoconf -*-
# $Id: configure.ac 5257 2008-08-01 23:19:24Z mblatt $
# Process this file with autoconf to produce a configure script.
AC_PREREQ(2.50)
DUNE_AC_INIT # gets module version from dune.module file
AC_CONFIG_SRCDIR([dune/localfunctions/common/localbasis.hh])
AC_CONFIG_HEADERS([config.h])
# add configure flags needed to create log files for dune-autobuild
DUNE_AUTOBUILD_FLAGS
# we need no more than the standard DE-stuff
# this module depends on dune-common
# this implies checking for [dune-common]
DUNE_CHECK_ALL
# preset variable to path such that #include <dune/...> works
# implicitly set the Dune-flags everywhere
AC_SUBST([DUNE_LOCALFUNCTIONS_ROOT], '$(top_builddir)')
AC_SUBST([LOCAL_LIBS], '$(top_builddir)/lib/liblocalfunctions.la')
AC_SUBST(AM_CPPFLAGS, '$(DUNE_CPPFLAGS) -I$(top_srcdir)')
AC_SUBST(AM_LDFLAGS, $DUNE_LDFLAGS)
LIBS="$DUNE_LIBS"
AC_CONFIG_FILES([
Makefile
cmake/Makefile
cmake/modules/Makefile
doc/doxygen/Doxyfile
doc/doxygen/Makefile
doc/Makefile
dune-localfunctions.pc
dune/localfunctions/brezzidouglasmarini/Makefile
dune/localfunctions/brezzidouglasmarini/brezzidouglasmarini1cube2d/Makefile
dune/localfunctions/brezzidouglasmarini/brezzidouglasmarini1cube3d/Makefile
dune/localfunctions/brezzidouglasmarini/brezzidouglasmarini2cube2d/Makefile
dune/localfunctions/brezzidouglasmarini/brezzidouglasmarini1simplex2d/Makefile
dune/localfunctions/brezzidouglasmarini/brezzidouglasmarini2simplex2d/Makefile
dune/localfunctions/common/Makefile
dune/localfunctions/dualmortarbasis/Makefile
dune/localfunctions/dualmortarbasis/dualp1/Makefile
dune/localfunctions/dualmortarbasis/dualq1/Makefile
dune/localfunctions/dualmortarbasis/test/Makefile
dune/localfunctions/hierarchical/hierarchicalp2/Makefile
dune/localfunctions/hierarchical/hierarchicalp2withelementbubble/Makefile
dune/localfunctions/hierarchical/hierarchicalprismp2/Makefile
dune/localfunctions/hierarchical/Makefile
dune/localfunctions/lagrange/Makefile
dune/localfunctions/lagrange/p0/Makefile
dune/localfunctions/lagrange/p1/Makefile
dune/localfunctions/lagrange/p23d/Makefile
dune/localfunctions/lagrange/pk1d/Makefile
dune/localfunctions/lagrange/pk2d/Makefile
dune/localfunctions/lagrange/pk3d/Makefile
dune/localfunctions/lagrange/prismp1/Makefile
dune/localfunctions/lagrange/prismp2/Makefile
dune/localfunctions/lagrange/pyramidp1/Makefile
dune/localfunctions/lagrange/pyramidp2/Makefile
dune/localfunctions/lagrange/q1/Makefile
dune/localfunctions/lagrange/q2/Makefile
dune/localfunctions/lagrange/qk/Makefile
dune/localfunctions/Makefile
dune/localfunctions/meta/Makefile
dune/localfunctions/meta/power/Makefile
dune/localfunctions/mimetic/Makefile
dune/localfunctions/monom/Makefile
dune/localfunctions/orthonormal/Makefile
dune/localfunctions/rannacherturek/Makefile
dune/localfunctions/rannacherturek/rannacherturek2d/Makefile
dune/localfunctions/rannacherturek/rannacherturek3d/Makefile
dune/localfunctions/raviartthomas/Makefile
dune/localfunctions/raviartthomas/raviartthomas02d/Makefile
dune/localfunctions/raviartthomas/raviartthomas0cube2d/Makefile
dune/localfunctions/raviartthomas/raviartthomas0cube3d/Makefile
dune/localfunctions/raviartthomas/raviartthomas12d/Makefile
dune/localfunctions/raviartthomas/raviartthomas1cube2d/Makefile
dune/localfunctions/raviartthomas/raviartthomas1cube3d/Makefile
dune/localfunctions/raviartthomas/raviartthomas2cube2d/Makefile
dune/localfunctions/raviartthomas/raviartthomassimplex/Makefile
dune/localfunctions/refined/common/Makefile
dune/localfunctions/refined/Makefile
dune/localfunctions/refined/refinedp0/Makefile
dune/localfunctions/refined/refinedp1/Makefile
dune/localfunctions/test/Makefile
dune/localfunctions/utility/Makefile
dune/localfunctions/whitney/edges0.5/Makefile
dune/localfunctions/whitney/Makefile
dune/Makefile
m4/Makefile
])
AC_OUTPUT
# finally print the summary information
DUNE_SUMMARY_ALL
|