ylwrap: preserve subdirectories in "#line" munging
[platform/upstream/automake.git] / t / depend5.sh
1 #! /bin/sh
2 # Copyright (C) 2008-2012 Free Software Foundation, Inc.
3 #
4 # This program is free software; you can redistribute it and/or modify
5 # it under the terms of the GNU General Public License as published by
6 # the Free Software Foundation; either version 2, or (at your option)
7 # any later version.
8 #
9 # This program is distributed in the hope that it will be useful,
10 # but WITHOUT ANY WARRANTY; without even the implied warranty of
11 # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
12 # GNU General Public License for more details.
13 #
14 # You should have received a copy of the GNU General Public License
15 # along with this program.  If not, see <http://www.gnu.org/licenses/>.
16
17 # Check that _AM_OUTPUT_DEPENDENCY_COMMANDS works with eval-style
18 # quoting in $CONFIG_FILES, done by newer Autoconf.
19
20 required=cc
21 . ./defs || Exit 1
22
23 cat >>configure.ac << END
24 AC_PROG_CC
25 AC_OUTPUT
26 END
27
28 cat > Makefile.am << END
29 bin_PROGRAMS = foo
30 foo_SOURCES = foo.c foo.h
31 END
32
33 cat >foo.c << END
34 #include "foo.h"
35 END
36 : >foo.h
37
38 $ACLOCAL
39 $AUTOMAKE
40 $AUTOCONF
41 ./configure --enable-dependency-tracking
42 if test -d .deps; then
43   depdir=.deps
44 elif test -d _deps; then
45   depdir=_deps
46 else
47   depdir=
48 fi
49
50 # For the fun of it, we should also cope with makefile
51 # names that contain weird characters, with Autoconf 2.62
52 # and newer.
53 # Pick the first name that the file system will accept.
54 for name in \
55   'weird  name with $ `#() &! characters"' \
56   'weird  name with $ `#()  characters"' \
57   'weird  name with  characters'
58 do
59   cp Makefile.in "$name.in" && break || :
60 done
61
62 for arg in Makefile \
63   --file=Makefile \
64   "--file=$name"
65 do
66   rm -rf .deps _deps
67   ./config.status "$arg" depfiles >stdout 2>stderr ||
68     { cat stdout; cat stderr >&2; Exit 1; }
69   cat stdout
70   cat stderr >&2
71   grep '[Nn]o such file' stderr && Exit 1
72
73   if test -n "$depdir"; then
74     test -d $depdir || Exit 1
75   fi
76 done
77
78 :