* automake.texi (Macros): Document AM_PROG_AS.
[automake.git] / tests / lex4.test
blobb40fc54fcf972cbc49c65d784f01eccb08b1ef4b
1 #! /bin/sh
3 # Test to make sure dependencies work with .ll files.
4 # Test synthesized from PR automake/6.
6 . $srcdir/defs || exit 1
8 cat >> configure.in << 'END'
9 AC_PROG_CC
10 AC_PROG_CXX
11 AM_PROG_LEX
12 END
14 cat > Makefile.am << 'END'
15 bin_PROGRAMS = zoo
16 zoo_SOURCES = joe.ll
17 END
19 : > joe.ll
21 $ACLOCAL || exit 1
22 $AUTOMAKE || exit 1
24 fgrep joe.Po Makefile.in