mirror of
git://git.savannah.gnu.org/libtool.git
synced 2024-12-15 06:49:57 +08:00
1c0ec8cf1c
multi-language-branch. * configure.in: Added pdemo and tagdemo to CONF_SUBDIRS and merged references to CXX and GCJ from multi-language-branch. *pdemo: Added test directory from multi-language-branch. *tagdemo: Added test directory from multi-language-branch. *tests/Makefile.am: Merged additional tests from multi-language-branch. *tests/pdemo-*.test: ditto. *tests/tagdemo-*.test: ditto.
26 lines
537 B
Bash
Executable File
26 lines
537 B
Bash
Executable File
#! /bin/sh
|
|
# pdemo-make.test - try building in the ../pdemo 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 ../pdemo/Makefile; then :
|
|
else
|
|
echo "You must run pdemo-conf.test before running $0" 1>&2
|
|
exit 77
|
|
fi
|
|
|
|
# Change to our build directory.
|
|
cd ../pdemo || exit 1
|
|
|
|
# Do the actual build.
|
|
echo "Making in ../pdemo"
|
|
$make || exit 1
|
|
exit 0
|