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.3 by cebix, 2001-01-16T14:14:10Z

# 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 > (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 > if test "$DIE" -eq 1; then
19 >        exit 1
20 > fi
21 >
22 > if test -z "$*"; then
23 >        echo "I am going to run ./configure with no arguments - if you wish "
24 >        echo "to pass any to it, please specify them on the $0 command line."
25 > fi
26 >
27 > for dir in .
28 > do
29 >  echo processing $dir
30 >  (cd $dir; \
31 >  aclocalinclude="$ACLOCAL_FLAGS"; \
32 >  aclocal $aclocalinclude; \
33 >  autoheader; autoconf)
34 > done
35 >
36 > ./configure "$@"

Diff Legend

Removed lines
+ Added lines
< Changed lines
> Changed lines