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
* depcomp (ddashmd): Removed case.
[automake.git]
/
tests
/
lex3.test
blob
1fa9671857ae57af225a24f699fed5ab14d2b4b1
1
#! /bin/sh
2
3
# Test to make sure that lex source generates correct clean rule.
4
# From Ralf Corsepius.
5
6
.
$srcdir
/
defs ||
exit
1
7
8
cat
>>
configure.
in
<<
'END'
9
AC_PROG_CC
10
AM_PROG_LEX
11
END
12
13
cat
>
Makefile.am
<<
'END'
14
bin_PROGRAMS
=
zot
15
zot_SOURCES
=
joe.l
16
LDADD
=
@LEXLIB@
17
END
18
19
: >
joe.l
20
21
$AUTOMAKE
||
exit
1
22
23
fgrep joel Makefile.
in
&&
exit
1
24
exit
0