]> www.ginac.de Git - ginac.git/blob - autogen.sh
* Added some long-pending docu.
[ginac.git] / autogen.sh
1 #! /bin/sh
2 # Run this to generate all the initial makefiles, etc.
3 # This was lifted from the Gimp, and adapted slightly by
4 # Christian Bauer.
5
6 DIE=0
7
8 PROG=GiNaC
9
10 (autoconf --version) < /dev/null > /dev/null 2>&1 || {
11         echo
12         echo "You must have autoconf installed to compile $PROG."
13         echo "Download the appropriate package for your distribution,"
14         echo "or get the source tarball at ftp://ftp.gnu.org/pub/gnu/"
15         DIE=1
16 }
17
18 (automake --version) < /dev/null > /dev/null 2>&1 || {
19         echo
20         echo "You must have automake installed to compile $PROG."
21         echo "Get ftp://ftp.gnu.org/pub/gnu/automake-1.4.tar.gz"
22         echo "(or a newer version if it is available)"
23         DIE=1
24 }
25
26 (libtoolize --version) < /dev/null > /dev/null 2>&1 || {
27         echo
28         echo "You must have libtool installed to compile $PROG."
29         echo "Get ftp://ftp.gnu.org/pub/gnu/libtool-1.4.tar.gz"
30         echo "(or a newer version if it is available)"
31         DIE=1
32 }
33
34 if test "$DIE" -eq 1; then
35         exit 1
36 fi
37
38 if test -z "$*"; then
39         echo "I am going to run ./configure with no arguments - if you wish "
40         echo "to pass any to it, please specify them on the $0 command line."
41 fi
42
43 for dir in .
44 do 
45   echo processing $dir
46   (cd $dir; \
47   aclocalinclude="$ACLOCAL_FLAGS"; \
48   aclocal $aclocalinclude; \
49   autoheader; libtoolize -c; automake -a -c; autoconf)
50 done
51
52 ./configure "$@"