Tag
Hash :
fc0250b3
Author :
Date :
2001-04-09T09:03:11
* depend2.am (@AMDEP@%FPFX%DEPMODE): Define it when GENERIC so that it does not get noticed twice by automake, which now complains for multiple definitions. * tests/vartar.test: s/INSTALL/install/g, automake now complains because we defined INSTALL.
#! /bin/sh
# Targets and macros are two different name spaces.
. $srcdir/defs || exit 1
cat > Makefile.am << 'END'
install = install
install:
$(install) install
END
$AUTOMAKE || exit 1
grep '^install = install$' Makefile.in || exit 1
cat > target.expected <<'EOF'
install:
$(install) install
EOF
sed -n '/^install:/,/^ /p' Makefile.in > target.value
diff target.expected target.value || exit 1
exit 0