1#! /bin/sh
2# f77demo-conf.test - try configuring the ../f77demo subdirectory
3
4# Test script header.
5need_prefix=yes
6if test -z "$srcdir"; then
7  srcdir=`echo "$0" | sed 's%/[^/]*$%%'`
8  test "$srcdir" = "$0" && srcdir=.
9  test "${VERBOSE+set}" != "set" && VERBOSE=yes
10fi
11. $srcdir/defs || exit 1
12
13# Maybe we have a VPATH build, in which case, create a new subdir.
14test -d ../f77demo || mkdir ../f77demo
15
16# Change to our build directory.
17cd ../f77demo || exit 1
18
19# Possibly clean up the distribution.
20if test -f Makefile; then
21  echo "= Running $make distclean in ../f77demo"
22  $make distclean
23fi
24rm -f config.cache
25
26# Configure the demonstration.
27echo "= Configuring in ../f77demo (prefix=$prefix)"
28${CONFIG_SHELL-/bin/sh} $srcdir/../f77demo/configure --srcdir=$srcdir/../f77demo --prefix=$prefix || exit 1
29
30if $EGREP '^build_old_libs=yes' libtool > /dev/null &&
31   $EGREP '^build_libtool_libs=yes' libtool > /dev/null; then :
32else rm -f Makefile && exit 77
33fi
34
35exit 0
36