Tue Aug 6 10:58:37 1996 Tom Tromey <tromey@creche.cygnus.com>
+ * automake.in (handle_source_transform): Correctly handle lex
+ source. Test lex.test
+
* aclocal.in (parse_arguments): Mention GNU.
* automake.in (parse_arguments): Mention GNU.
overridable on per-program basis
* what about EXTRA_PROGRAMS stuff?
+** many requests for a way to omit a file from the distribution.
+ Should be done like `!foo' or `~foo' in _SOURCES, etc.
+ Such files should be removed explicitly after the copy step!
+
add support for Makefile.tmpl that is auto-included in every
Makefile.am. That makes it easier to do some non-std thing in every
subdirectory.
next if /^\@.*\@$/;
# Include .c file for lex or yacc source in distribution.
- if (/^(.*)\.[yl]$/)
+ if (/^(.*)\.y$/)
{
# Yacc source.
&push_dist_common ($1 . '.c');
+Tue Aug 6 12:30:41 1996 Tom Tromey <tromey@creche.cygnus.com>
+
+ * lex.test: New file.
+
Mon Aug 5 01:03:03 1996 Tom Tromey <tromey@creche.cygnus.com>
* obsolete.test: New file.
insh2.test outdir.test fpinstall.test fpinst2.test texinfo.test dejagnu.test \
yacc.test mkinstall2.test texinfo2.test ansi.test depacl.test depacl2.test \
error.test colon.test vtexi2.test tags.test comment.test libfiles.test \
-man.test info.test obsolete.test
+man.test info.test obsolete.test lex.test
EXTRA_DIST = defs $(TESTS)
insh2.test outdir.test fpinstall.test fpinst2.test texinfo.test dejagnu.test \
yacc.test mkinstall2.test texinfo2.test ansi.test depacl.test depacl2.test \
error.test colon.test vtexi2.test tags.test comment.test libfiles.test \
-man.test info.test obsolete.test
+man.test info.test obsolete.test lex.test
EXTRA_DIST = defs $(TESTS)
mkinstalldirs = $(top_srcdir)/mkinstalldirs
--- /dev/null
+#! /bin/sh
+
+# Test to make sure that lex source generates correct target.
+
+. $srcdir/defs || exit 1
+
+cat > Makefile.am << 'END'
+bin_PROGRAMS = zot
+zot_SOURCES = joe.l
+END
+
+: > joe.l
+
+$AUTOMAKE || exit 1
+
+grep '\$(LEX)' Makefile.in