Tag
Hash :
b9ccfe5e
Author :
Date :
2002-04-12T15:28:15
* automake.in (scan_autoconf_traces) <AC_SUBST>: Ignore ANSI2KNR and AMDEPBACKSLASH. * tests/distcommon2.test: Use a full configure.in that calls AC_INIT. * tests/ext.test: Enable dependencies for OBJC. * tests/libobj.test, tests/libobj6.test, tests/libobj9.test: Delete. They tests for different flavors of $LIBOBJS assignments that wont be supported anymore. * tests/libobj2.test, tests/libobj10.test: Use AC_LIBOBJ. * tests/obsolete.test: Don't test Automake. * tests/suffix5.test: Require libtool. * tests/Makefile.am (TESTS): Remove libobj.test, libobj6.test and libobj9.test.
#! /bin/sh
required=libtool
# Test to make sure Automake include libtool objects resulting
# from user-defined implicit rules.
# Based on a report from Arkadiusz Miskiewicz <misiek@pld.ORG.PL>.
. $srcdir/defs || exit 1
cat >> configure.in << 'END'
AC_PROG_LIBTOOL
END
cat > Makefile.am << 'END'
.k.lo:
echo $< > $@
noinst_LTLIBRARIES = libfoo.la
libfoo_la_SOURCES = foo.k
END
: > ltmain.sh
: > config.guess
: > config.sub
$ACLOCAL || exit 1
$AUTOMAKE || exit 1
grep '_OBJECTS.*foo.lo' Makefile.in || exit 1
exit 0