mirror of
https://review.haiku-os.org/buildtools
synced 2025-01-31 18:44:48 +01:00
26 lines
531 B
Plaintext
26 lines
531 B
Plaintext
|
#! /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
|