Author :
Tom Tromey
Date :
1999-01-10 18:00:35
Hash :6b14d020 Message : * all.test: Test all *-local targets, not just all-local.
tests/all.test
#! /bin/sh
# Test to make sure all-local and other -local targets work correctly.
. $srcdir/defs || exit 1
for target in all install-exec install-data uninstall; do
echo "Doing $target"
echo "${target}-local:" > Makefile.am
$AUTOMAKE || exit 1
fgrep "${target}-local ${target}-local" Makefile.in && exit 1
done
exit 0