Tag
Hash :
6b14d020
Author :
Date :
1999-01-10T18:00:35
* all.test: Test all *-local targets, not just all-local.
#! /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