1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17
|
#
# disable building of $1_library (dimension)
#
#
# NOTE: it is a bad idea to remove the unneeded Makefiles from the
# config-files, it breaks "make distclean"
#
AC_DEFUN([ALBERTA_DIMENSION_DISABLE],
[ALBERTA_ENABLE_FLAG([alberta-$1],
[disable building of an ALBERTA library for Finite Elements of dimension $1.], 1)
dnl if test "$ALBERTA_$1$1" -eq 1; then
AC_CONFIG_FILES([alberta/src/alberta_$1d/Makefile])
dnl if test "$DEBUG" -eq 1; then
AC_CONFIG_FILES([alberta/src/alberta_$1d_debug/Makefile])
dnl fi
dnl fi
])
|