| #! /bin/sh | |
| # Test to make sure LIBOBJS actually set in configure.in if seen. | |
| . $srcdir/defs || exit 1 | |
| cat >> configure.in << 'END' | |
| AC_PROG_RANLIB | |
| END | |
| cat > Makefile.am << 'END' | |
| noinst_LIBRARIES = libtu.a | |
| libtu_a_SOURCES = | |
| libtu_a_LIBADD = @LIBOBJS@ | |
| END | |
| $ACLOCAL || exit 1 | |
| $AUTOMAKE && exit 1 | |
| exit 0 |