repo.or.cz
/
automake.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
* tests/Makefile.am (TESTS): Added yacc5.test.
[automake.git]
/
tests
/
lex4.test
blob
b40fc54fcf972cbc49c65d784f01eccb08b1ef4b
1
#! /bin/sh
2
3
# Test to make sure dependencies work with .ll files.
4
# Test synthesized from PR automake/6.
5
6
.
$srcdir
/
defs ||
exit
1
7
8
cat
>>
configure.
in
<<
'END'
9
AC_PROG_CC
10
AC_PROG_CXX
11
AM_PROG_LEX
12
END
13
14
cat
>
Makefile.am
<<
'END'
15
bin_PROGRAMS
=
zoo
16
zoo_SOURCES
=
joe.ll
17
END
18
19
: >
joe.ll
20
21
$ACLOCAL
||
exit
1
22
$AUTOMAKE
||
exit
1
23
24
fgrep joe.Po Makefile.
in