ViewVC Help
View File | Revision Log | Show Annotations | Revision Graph | Root Listing
root/cebix/BasiliskII/src/Unix/autogen.sh
(Generate patch)

Comparing BasiliskII/src/Unix/autogen.sh (file contents):
Revision 1.2 by cebix, 2000-10-10T18:54:34Z vs.
Revision 1.7 by gbeauche, 2007-06-13T13:27:40Z

# Line 1 | Line 1
1   #! /bin/sh
2 < aclocal
3 < autoheader
4 < autoconf
5 < ./configure $*
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="Basilisk II"
9 >
10 > # Check how echo works in this /bin/sh
11 > case `echo -n` in
12 > -n) _echo_n=   _echo_c='\c';;
13 > *)  _echo_n=-n _echo_c=;;
14 > esac
15 >
16 > (autoconf --version) < /dev/null > /dev/null 2>&1 || {
17 >        echo
18 >        echo "You must have autoconf installed to compile $PROG."
19 >        echo "Download the appropriate package for your distribution,"
20 >        echo "or get the source tarball at ftp://ftp.gnu.org/pub/gnu/"
21 >        DIE=1
22 > }
23 >
24 > (aclocal --version) < /dev/null > /dev/null 2>&1 || {
25 >        echo
26 >        echo "**Error**: Missing aclocal. The version of automake"
27 >        echo "installed doesn't appear recent enough."
28 >        echo "Get ftp://ftp.gnu.org/pub/gnu/automake-1.3.tar.gz"
29 >        echo "(or a newer version if it is available)"
30 >        DIE=1
31 > }
32 >
33 > if test "$DIE" -eq 1; then
34 >        exit 1
35 > fi
36 >
37 > if test -z "$ACLOCAL_FLAGS"; then
38 >    ACLOCAL_FLAGS="-I `aclocal --print-ac-dir` -I `dirname $0`/m4"
39 > fi
40 >
41 > aclocalinclude="$ACLOCAL_FLAGS"; \
42 > (echo $_echo_n " + Running aclocal: $_echo_c"; \
43 >    aclocal $aclocalinclude; \
44 > echo "done.") && \
45 > (echo $_echo_n " + Running autoheader: $_echo_c"; \
46 >    autoheader; \
47 > echo "done.") && \
48 > (echo $_echo_n " + Running autoconf: $_echo_c"; \
49 >    autoconf; \
50 > echo "done.")
51 >
52 > rm -f config.cache
53 >
54 > if [ x"$NO_CONFIGURE" = "x" ]; then
55 >    echo " + Running 'configure $@':"
56 >    if [ -z "$*" ]; then
57 >        echo "   ** If you wish to pass arguments to ./configure, please"
58 >        echo "   ** specify them on the command line."
59 >    fi
60 >    ./configure "$@"
61 > fi

Diff Legend

Removed lines
+ Added lines
< Changed lines
> Changed lines