Merge branch 'msvc' into maint
[platform/upstream/automake.git] / tests / depcomp5.test
1 #! /bin/sh
2 # Copyright (C) 2003, 2004, 2010 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 icc's dependency mode.
18
19 required='icc'
20 . ./defs || Exit 1
21
22 set -e
23
24 # Automake supports icc since version 7.0 through a dedicated depcomp mode.
25 # icc 8.0 and greater understand gcc options, so depmode is set to gcc.
26 if icc -V -help 2>&1 | grep 'Version 7'; then
27   expect='depmode=icc'
28 else
29   expect='depmode=gcc'
30 fi
31
32 cat >> configure.in << 'END'
33 AC_PROG_CC
34 AM_PROG_CC_C_O
35 AC_OUTPUT
36 END
37
38 cat > Makefile.am << 'END'
39 AUTOMAKE_OPTIONS = subdir-objects
40 check_PROGRAMS = prg
41 prg_SOURCES = src/sub.c src/foo.h
42
43 .PHONY: grepdeps
44 grepdeps:
45         grep 'src/sub\.$(OBJEXT).*:' src/$(DEPDIR)/sub.Po
46
47 END
48
49 mkdir src
50
51 touch src/foo.h
52
53 cat >src/sub.c <<EOF
54 #include "foo.h"
55 int
56 main ()
57 {
58    return 0;
59 }
60 EOF
61
62 $ACLOCAL
63 $AUTOCONF
64 $AUTOMAKE -a
65
66 ./configure
67 grep "$expect" Makefile
68 $MAKE check
69 $MAKE grepdeps
70
71 :