Paradiseo-eo sources added
git-svn-id: svn://scm.gforge.inria.fr/svnroot/paradiseo@40 331e1502-861f-0410-8da2-ba01fb791d7f
This commit is contained in:
parent
bc1f453978
commit
c3aec878e5
3609 changed files with 342772 additions and 0 deletions
39
trunk/paradiseo-eo/autogen.sh
Executable file
39
trunk/paradiseo-eo/autogen.sh
Executable file
|
|
@ -0,0 +1,39 @@
|
|||
#!/bin/sh
|
||||
|
||||
DIE=0
|
||||
PROG=eo
|
||||
|
||||
(autoconf --version) < /dev/null > /dev/null 2>&1 ||
|
||||
{
|
||||
echo
|
||||
echo "You must have autoconf installed to compile $PROG."
|
||||
DIE=1
|
||||
}
|
||||
|
||||
(automake --version) < /dev/null > /dev/null 2>&1 ||
|
||||
{
|
||||
echo
|
||||
echo "You must have automake installed to compile $PROG."
|
||||
DIE=1
|
||||
}
|
||||
|
||||
if test "$DIE" -eq 1; then
|
||||
exit 1
|
||||
fi
|
||||
|
||||
set aclocalinclude="$ACLOCAL_FLAGS"
|
||||
aclocal $aclocalinclude
|
||||
unset $aclocalinclude
|
||||
autoheader
|
||||
automake -a -c
|
||||
autoconf
|
||||
|
||||
# we want doc to be recompiled - and it keeps saying it's up to date!!!
|
||||
# touch doc/eo.cfg
|
||||
|
||||
echo
|
||||
echo "Now run 'configure' and 'make' to build $PROG."
|
||||
echo "You can check the libraries by running 'make check'"
|
||||
echo
|
||||
echo "If you have Doxygen installed, type 'make doc' to generate $PROG documentation."
|
||||
echo
|
||||
Loading…
Add table
Add a link
Reference in a new issue