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
* configure.in: Updated to 1.4d and released.
[automake.git]
/
tests
/
parse.test
blob
b861ef9365e41150fc384513f03f1cea70b7640e
1
#! /bin/sh
2
3
# Test to make sure backslash-newline is treated as whitespace.
4
5
.
$srcdir
/
defs ||
exit
1
6
7
cat
>
configure.
in
<<
'END'
8
AM_INIT_AUTOMAKE
(
nonesuch
,
nonesuch
)
9
PACKAGE
=
nonesuch
10
VERSION
=
nonesuch
11
AC_PROG_CC
12
AC_PROG_MAKE_SET
13
AC_ARG_PROGRAM
14
AC_PROG_INSTALL
15
AC_PROG_RANLIB
16
AC_OUTPUT
(
Makefile
)
17
END
18
19
cat
>
Makefile.am
<<
'END'
20
bin_PROGRAMS
=
zot
21
zot_SOURCES
=
\
22
zar.c\
23
doz.c
24
END
25
26
$AUTOMAKE
||
exit
1
27
28
fgrep zar.cdoz Makefile.
in
&&
exit
1
29
exit
0