Clarify overriding of `*_DEPENDENCIES' in LIBOBJS node.
[automake/ericb.git] / tests / depcomp5.test
blob75a5eaafa81102e830eb013a9910bb3dbf5f6dfb
1 #! /bin/sh
2 # Copyright (C) 2003, 2004 Free Software Foundation, Inc.
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 3, or (at your option)
7 # any later version.
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.
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/>.
17 # Check icc's dependency mode.
19 required='icc'
20 . ./defs || Exit 1
22 # Automake supports icc since version 7.0 through a dedicated depcomp mode.
23 # icc 8.0 and greater understand gcc options, so depmode is set to gcc.
24 if icc -V -help 2>&1 | grep 'Version 7'; then
25 expect='depmode=icc'
26 else
27 expect='depmode=gcc'
30 set -e
32 cat >> configure.in << 'END'
33 AC_PROG_CC
34 AM_PROG_CC_C_O
35 AC_OUTPUT
36 END
38 cat > Makefile.am << 'END'
39 AUTOMAKE_OPTIONS = subdir-objects
40 check_PROGRAMS = prg
41 prg_SOURCES = src/sub.c src/foo.h
43 grepdeps:
44 grep 'src/sub.$(OBJEXT).*:' src/$(DEPDIR)/sub.Po
46 END
48 mkdir src
50 touch src/foo.h
52 cat >src/sub.c <<EOF
53 #include "foo.h"
54 int
55 main ()
57 return 0;
59 EOF
61 $ACLOCAL
62 $AUTOCONF
63 $AUTOMAKE -a
65 ./configure
66 grep "$expect" Makefile
67 $MAKE check
68 $MAKE grepdeps