blob: 8a4a4ba855e9382f5d819983c95cb613d9c15922 [file] [log] [blame]
#! /bin/sh
# demo-make.test - try building in the ../demo subdirectory
# Test script header.
need_prefix=no
if test -z "$srcdir"; then
srcdir=`echo "$0" | sed 's%/[^/]*$%%'`
test "$srcdir" = "$0" && srcdir=.
test "${VERBOSE+set}" != "set" && VERBOSE=yes
fi
. $srcdir/defs || exit 1
if test -f ../demo/Makefile; then :
else
echo "You must run demo-conf.test before running $0" 1>&2
exit 77
fi
# Change to our build directory.
cd ../demo || exit 1
# Do the actual build.
echo "Making in ../demo"
$make || exit 1
exit 0