source: vendor/automake/1.4-p6/tests/parse.test

Last change on this file was 3124, checked in by bird, 18 years ago

automake 1.4-p6

File size: 392 bytes
Line 
1#! /bin/sh
2
3# Test to make sure backslash-newline is treated as whitespace.
4
5. $srcdir/defs || exit 1
6
7cat > configure.in << 'END'
8PACKAGE=nonesuch
9VERSION=nonesuch
10AC_PROG_CC
11AC_ARG_PROGRAM
12AC_PROG_INSTALL
13AC_PROG_RANLIB
14AC_OUTPUT(Makefile)
15END
16
17cat > Makefile.am << 'END'
18bin_PROGRAMS = zot
19zot_SOURCES = \
20zar.c\
21doz.c
22END
23
24$AUTOMAKE || exit 1
25
26fgrep zar.cdoz Makefile.in && exit 1
27exit 0
Note: See TracBrowser for help on using the repository browser.