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
/
sinclude.test
blob
96dd30dcd0416ed1c9277d610d3635d13cbb446f
1
#! /bin/sh
2
3
# Test to see if `sinclude' works.
4
5
.
$srcdir
/
defs ||
exit
1
6
7
cat
>
aclocal.
m4
<<
'END'
8
sinclude
(
sub
/
p.
m4
)
9
END
10
11
mkdir sub
12
cat
>
sub
/
p.
m4
<<
'END'
13
AC_SUBST
(
MAGICALPIG
)
14
END
15
16
: >
Makefile.am
17
18
$AUTOMAKE
--Wno-error
||
exit
1
19
20
grep
MAGICALPIG Makefile.
in