Thu Sep 5 09:06:23 1996 Tom Tromey <tromey@creche.cygnus.com>
* automake.in (usage): Include bug-reporting information.
+ (handle_lib_objects): Error if LIBOBJS seen but never set.
* aclocal.in ($acdir): Use @datadir@/aclocal.
(usage): Include bug-reporting information.
document --build-dir
+document the fact that you can re-run automake (s/ args) to get back
+into a "maintainer" mode (auto-dependencies)
+
================================================================
Libraries:
# means adding entries to dep_files.
if ($lsearch eq '@LIBOBJS@')
{
+ if (! keys %libsources)
+ {
+ &am_line_error ($var, "\@LIBOBJS\@ seen but never set in \`configure.in'");
+ }
+
local ($iter, $rewrite);
foreach $iter (keys %libsources)
{
+Thu Sep 5 22:54:26 1996 Tom Tromey <tromey@creche.cygnus.com>
+
+ * libobj3.test: New file.
+
Tue Sep 3 20:57:38 1996 Tom Tromey <tromey@creche.cygnus.com>
* block.test: New file.
error.test colon.test vtexi2.test tags.test comment.test libfiles.test \
man.test info.test obsolete.test lex.test scripts.test subdir2.test \
exsource.test canon4.test dup.test defun.test cxxlink.test cxxnoc.test \
-order.test libobj2.test interp.test alllib.test block.test
+order.test libobj2.test interp.test alllib.test block.test libobj3.test
EXTRA_DIST = defs $(TESTS)
error.test colon.test vtexi2.test tags.test comment.test libfiles.test \
man.test info.test obsolete.test lex.test scripts.test subdir2.test \
exsource.test canon4.test dup.test defun.test cxxlink.test cxxnoc.test \
-order.test libobj2.test interp.test alllib.test block.test
+order.test libobj2.test interp.test alllib.test block.test libobj3.test
EXTRA_DIST = defs $(TESTS)
mkinstalldirs = $(top_srcdir)/mkinstalldirs
--- /dev/null
+#! /bin/sh
+
+# Test to make sure LIBOBJS actually set in configure.in if seen.
+
+. $srcdir/defs || exit 1
+
+cat > Makefile.am << 'END'
+noinst_LIBRARIES = tu
+tu_SOURCES =
+tu_LIBADD = @LIBOBJS@
+END
+
+$AUTOMAKE && exit 1
+exit 0