mirror of
https://review.haiku-os.org/buildtools
synced 2025-01-19 12:51:22 +01:00
26 lines
549 B
Plaintext
26 lines
549 B
Plaintext
|
#! /bin/sh
|
||
|
# tagdemo-make.test - try building in the ../tagdemo 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 ../tagdemo/Makefile; then :
|
||
|
else
|
||
|
echo "You must run tagdemo-conf.test before running $0" 1>&2
|
||
|
exit 77
|
||
|
fi
|
||
|
|
||
|
# Change to our build directory.
|
||
|
cd ../tagdemo || exit 1
|
||
|
|
||
|
# Do the actual build.
|
||
|
echo "Making in ../tagdemo"
|
||
|
$make || exit 1
|
||
|
exit 0
|