git-svn-id: svn://scm.gforge.inria.fr/svnroot/paradiseo@130 331e1502-861f-0410-8da2-ba01fb791d7f
This commit is contained in:
parent
0d6dfb5b0e
commit
a6fe42664b
743 changed files with 67629 additions and 0 deletions
93
trunk/paradiseo-peo/configure.in
Executable file
93
trunk/paradiseo-peo/configure.in
Executable file
|
|
@ -0,0 +1,93 @@
|
|||
dnl Process this file with autoconf to produce a configure script.
|
||||
dnl Created by Anjuta - will be overwritten
|
||||
dnl If you don't want it to overwrite it,
|
||||
dnl Please disable it in the Anjuta project configuration
|
||||
|
||||
AC_INIT(configure.in)
|
||||
AM_INIT_AUTOMAKE(paradisEO, 0.3)
|
||||
dnl AM_CONFIG_HEADER(config.h)
|
||||
|
||||
AC_ISC_POSIX
|
||||
CXXFLAGS=""
|
||||
AC_SUBST(CXXFLAGS)
|
||||
AC_PROG_CXX
|
||||
AM_PROG_CC_STDC
|
||||
AC_HEADER_STDC
|
||||
AC_PROG_RANLIB
|
||||
|
||||
|
||||
AC_SUBST(EO_DIR)
|
||||
|
||||
dnl EO
|
||||
AC_ARG_WITH(EOdir,
|
||||
--with-EOdir : Giving the path of the EO tree.,
|
||||
dnl Well done :-)
|
||||
EO_DIR="$withval"
|
||||
if test ! -d $EO_DIR
|
||||
then
|
||||
echo ""
|
||||
echo "# --with-EOdir Invalid directory $withval"
|
||||
exit 1
|
||||
fi,
|
||||
dnl Bouhhhh !!!!
|
||||
echo ""
|
||||
echo "# You forgot to give the path of the EO tree !"
|
||||
echo "# Please write something like ... './configure --with-EOdir=\$HOME/eo'"
|
||||
exit 1
|
||||
)
|
||||
|
||||
|
||||
AC_SUBST(MO_DIR)
|
||||
|
||||
dnl MO
|
||||
AC_ARG_WITH(MOdir,
|
||||
--with-MOdir : Giving the path of the MO tree.,
|
||||
dnl Well done :-)
|
||||
MO_DIR="$withval"
|
||||
if test ! -d $MO_DIR
|
||||
then
|
||||
echo ""
|
||||
echo "# --with-MOdir Invalid directory $withval"
|
||||
exit 1
|
||||
fi,
|
||||
dnl Bouhhhh !!!!
|
||||
echo ""
|
||||
echo "# You forgot to give the path of the MO tree !"
|
||||
echo "# Please write something like ... './configure --with-MOdir=\$HOME/mo'"
|
||||
exit 1
|
||||
)
|
||||
|
||||
|
||||
AC_SUBST(MOEO_DIR)
|
||||
|
||||
dnl MOEO
|
||||
AC_ARG_WITH(MOEOdir,
|
||||
--with-MOEOdir : Giving the path of the MOEO tree.,
|
||||
dnl Well done :-)
|
||||
MOEO_DIR="$withval"
|
||||
if test ! -d $MOEO_DIR
|
||||
then
|
||||
echo ""
|
||||
echo "# --with-MOEOdir Invalid directory $withval"
|
||||
exit 1
|
||||
fi,
|
||||
dnl Bouhhhh !!!!
|
||||
echo ""
|
||||
echo "# You forgot to give the path of the MOEO tree !"
|
||||
echo "# Please write something like ... './configure --with-MOEOdir=\$HOME/moeo'"
|
||||
exit 1
|
||||
)
|
||||
|
||||
|
||||
AC_OUTPUT([
|
||||
Makefile
|
||||
docs/Makefile
|
||||
examples/Makefile
|
||||
examples/shared/Makefile
|
||||
examples/lesson1/Makefile
|
||||
examples/lesson2/Makefile
|
||||
src/Makefile
|
||||
src/rmc/Makefile
|
||||
src/rmc/mpi/Makefile
|
||||
])
|
||||
|
||||
Loading…
Add table
Add a link
Reference in a new issue