Clarify overriding of `*_DEPENDENCIES' in LIBOBJS node.
[automake/ericb.git] / tests / ccnoco2.test
blob325c9895d5860008de2e81f5377ec21ee41d881d
1 #! /bin/sh
2 # Copyright (C) 2006 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 # Make sure Automake requires AM_PROG_CC_C_O when either per-targets
18 # flags or subdir-objects are used.
20 . ./defs || Exit 1
22 set -e
24 cat >>configure.in <<EOF
25 AC_PROG_CC
26 AC_OUTPUT
27 EOF
29 cat >Makefile.am <<EOF
30 bin_PROGRAMS = wish
31 wish_SOURCES = a.c
32 wish_CPPFLAGS = -DWHATEVER
33 EOF
35 touch a.c
37 $ACLOCAL
38 $AUTOCONF
39 AUTOMAKE_fails --copy --add-missing
40 grep 'Makefile.am:2:.*per-target.*AM_PROG_CC_C_O' stderr
43 cat >Makefile.am <<EOF
44 bin_PROGRAMS = wish
45 wish_SOURCES = sub/a.c
46 EOF
48 mkdir sub
49 mv a.c sub
51 $AUTOMAKE --copy --add-missing
53 echo 'AUTOMAKE_OPTIONS = subdir-objects' >> Makefile.am
54 AUTOMAKE_fails --copy --add-missing
55 grep 'Makefile.am:2:.*subdir.*AM_PROG_CC_C_O' stderr