typo + new comment
[automake.git] / tests / depend.test
blob70234bbb697cd490db00fab680185cbe5d5d60df
1 #! /bin/sh
3 # This tests for a bug reported by Henrik Frystyk Nielsen <frystyk@w3.org>
4 # In some cases the auto-dependency can get confused and try
5 # to `-include' a directory (if a backslash-newline appears in _SOURCES).
7 . $srcdir/defs || exit 1
9 echo AC_PROG_CC >> configure.in
11 cat > Makefile.am << 'END'
12 bin_PROGRAMS = fred
13 fred_SOURCES = \
14 fred.c
15 END
17 $ACLOCAL || exit 1
18 $AUTOMAKE || exit 1
20 # In this case we no longer expect to find DEP_FILES.
21 grep '^DEP_FILES = *$' Makefile.in && exit 1
22 exit 0