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
|
dnl $Id: configure.in 9596 2004-08-31 14:42:03Z wolf $
dnl
dnl configure script for the /contrib subdirectory
dnl
dnl author: Wolfgang Bangerth, 2000
dnl
define([AC_CACHE_LOAD], )dnl
define([AC_CACHE_SAVE], )dnl
AC_REVISION($Revision: 20388 $)
AC_PREREQ(2.61)
AC_INIT(config)
dnl Have the auxiliary tools like config.guess etc in contrib/config
AC_CONFIG_AUX_DIR(config)
AC_PROG_CC
AC_PROG_CXX
AC_MSG_RESULT()
AC_MSG_RESULT(---------------- configuring contrib subdir -----------------)
dnl Set the path to the deal.II/contrib directory
DEAL2_CONTRIB_DIR=`pwd`
dnl -------------------------------------------------------------
dnl Other subdirectories
dnl -------------------------------------------------------------
AC_CONFIG_SUBDIRS(utilities)
dnl -------------------------------------------------------------
dnl Output results
dnl -------------------------------------------------------------
AC_OUTPUT(Makefile)
|