Clarify overriding of `*_DEPENDENCIES' in LIBOBJS node.
[automake/ericb.git] / tests / substtarg.test
blob1d5c57799a60fdcf4f29a395ad4d14488d1a4c9e
1 #! /bin/sh
2 # Copyright (C) 2001, 2002, 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 # Test that substitutions in variables work.
18 # From Lars J. Aas.
20 . ./defs || Exit 1
22 set -e
24 cat > configure.in << 'END'
25 AC_INIT(fakelib.c)
26 AM_INIT_AUTOMAKE(fakelib,0.0)
27 AC_PROG_CC
28 RANLIB=:
29 AC_SUBST(RANLIB)
30 SUBST=hei
31 AC_SUBST(SUBST)
32 AC_OUTPUT(Makefile)
33 END
35 cat > Makefile.am << 'END'
36 noinst_LIBRARIES = libfake@SUBST@.a
38 libfake@SUBST@_a_SOURCES = abra.c kadabra.c
40 # then we override the target rule:
41 libfake@SUBST@.a: Makefile $(libfake@SUBST@_a_OBJECTS) $(libfake@SUBST@_a_DEPENDENCIES)
42 @echo here we do some custom stuff, instead of invoking the linker
43 END
45 $ACLOCAL
46 AUTOMAKE_fails
47 grep 'overrid.*libfake@SUBST@.a' stderr
48 $AUTOMAKE -Wno-override
49 num=`grep '^libfake@SUBST@.a:' Makefile.in | wc -l`
50 test $num -eq 1