am-ft: make the environment available earlier
[platform/upstream/automake.git] / t / depend5.sh
1 #! /bin/sh
2 # Copyright (C) 2008-2013 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 . test-init.sh
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 names
51 # that contain weird characters and newer.
52 # Pick the first name that the file system will accept.
53 for name in \
54   'weird  name with $ `#() &! characters"' \
55   'weird  name with $ `#()  characters"' \
56   'weird  name with  characters'
57 do
58   cp Makefile.in "$name.in" && break || :
59 done
60
61 for arg in Makefile \
62   --file=Makefile \
63   "--file=$name"
64 do
65   rm -rf .deps _deps
66   ./config.status "$arg" depfiles >stdout 2>stderr ||
67     { cat stdout; cat stderr >&2; exit 1; }
68   cat stdout
69   cat stderr >&2
70   grep '[Nn]o such file' stderr && exit 1
71
72   if test -n "$depdir"; then
73     test -d $depdir || exit 1
74   fi
75 done
76
77 :