libtool/tests/demo-make.test

26 lines
530 B
Plaintext
Raw Normal View History

1997-04-02 03:18:28 +08:00
#! /bin/sh
# demo-make.test - try building in the ../demo subdirectory
# Test script header.
need_prefix=no
if test -z "$srcdir"; then
1997-04-02 03:21:43 +08:00
srcdir=`echo "$0" | sed 's%/[^/]*$%%'`
test "$srcdir" = "$0" && srcdir=.
1997-04-02 03:18:28 +08:00
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 1
fi
# Change to our build directory.
cd ../demo || exit 1
# Do the actual build.
echo "Making in ../demo"
1997-04-02 03:53:01 +08:00
$make || exit 1
1997-04-02 03:18:28 +08:00
exit 0