ViewVC Help
View File | Revision Log | Show Annotations | Revision Graph | Root Listing
root/cebix/BasiliskII/src/Unix/autogen.sh
Revision: 1.6
Committed: 2002-09-16T14:54:19Z (22 years ago) by cebix
Content type: application/x-sh
Branch: MAIN
CVS Tags: nigel-build-19, nigel-build-12, nigel-build-13, nigel-build-16, nigel-build-17, nigel-build-15
Changes since 1.5: +34 -13 lines
Log Message:
updated autogen.sh to AutoGen(TM) 8.0 Professional :-)

File Contents

# Content
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="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 aclocalinclude="$ACLOCAL_FLAGS"; \
38 (echo $_echo_n " + Running aclocal: $_echo_c"; \
39 aclocal $aclocalinclude; \
40 echo "done.") && \
41 (echo $_echo_n " + Running autoheader: $_echo_c"; \
42 autoheader; \
43 echo "done.") && \
44 (echo $_echo_n " + Running autoconf: $_echo_c"; \
45 autoconf; \
46 echo "done.")
47
48 rm -f config.cache
49
50 if [ x"$NO_CONFIGURE" = "x" ]; then
51 echo " + Running 'configure $@':"
52 if [ -z "$*" ]; then
53 echo " ** If you wish to pass arguments to ./configure, please"
54 echo " ** specify them on the command line."
55 fi
56 ./configure "$@"
57 fi