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
nothing
[automake.git]
/
tests
/
interp.test
blob
08c847a6679468967082ead0daa5f2a2f4b8a8c7
1
#! /bin/sh
2
3
# Test to make sure variable interpolation works.
4
5
.
$srcdir
/
defs ||
exit
1
6
7
cat
>>
configure.
in
<<
'END'
8
AC_PROG_CC
9
END
10
11
cat
>
Makefile.am
<<
'END'
12
bin_PROGRAMS
=
qqq
13
s1
=
z.c
14
qqq_SOURCES
=
$
(
s1
)
15
END
16
17
$AUTOMAKE
||
exit
1
18
19
grep
'z\.o'
Makefile.
in